/* ===================== */
/* // HEADER & HERO
/* ===================== */

header {
  position: relative;
  background-image: url("../img/bg_hero.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

header > * {
  position: relative;
  z-index: 1;
}

main {
  min-height: 200px;
}

.hero__bowl {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding-top: 128px;
  padding-bottom: 125px;
}

@media (max-width: 991px) {
  .hero__bowl {
    flex-direction: column;
    padding-top: 7rem;
    padding-bottom: 3rem;
    gap: 2.5rem;
  }
}

@media (max-width: 767px) {
  .hero__bowl {
    padding-top: 5.5rem;
    padding-bottom: 2.5rem;
    gap: 2rem;
  }
}

@media (max-width: 575px) {
  .hero__bowl {
    padding-top: 5rem;
    padding-bottom: 2rem;
    gap: 1.75rem;
  }
}

/* Hero badge */

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid var(--color-primary-20);
  background: var(--color-primary-10);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

@media (max-width: 575px) {
  .hero__badge {
    font-size: 11px;
    padding: 6px 12px;
    gap: 6px;
  }
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0dde34;
  flex-shrink: 0;
}

.hero__info {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 992px) {
  .hero__info {
    width: 752px;
    flex-shrink: 0;
  }
}

@media (max-width: 767px) {
  .hero__info {
    gap: 18px;
  }
}

@media (max-width: 575px) {
  .hero__info {
    gap: 16px;
  }
}

.hero__bowl h1 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -2px;
}

@media (max-width: 991px) {
  .hero__bowl h1 {
    font-size: 42px;
    letter-spacing: -1.5px;
  }
}

@media (max-width: 767px) {
  .hero__bowl h1 {
    font-size: var(--fs-2);
    letter-spacing: -1.2px;
  }
}

@media (max-width: 575px) {
  .hero__bowl h1 {
    font-size: 32px;
    letter-spacing: -1px;
  }
}

.hero__bowl h1 span {
  color: #6ccaf4;
}

.hero__bowl .hero__info > p {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--fs-5);
  font-weight: 400;
  line-height: 1.5;
  max-width: 520px;
}

@media (max-width: 991px) {
  .hero__bowl .hero__info > p {
    font-size: var(--fs-6);
  }
}

@media (max-width: 575px) {
  .hero__bowl .hero__info > p {
    font-size: 15px;
    line-height: 1.55;
  }
}

/* Hero checks row */

.hero__checks {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 991px) {
  .hero__checks {
    gap: 0.75rem;
  }
}

@media (max-width: 575px) {
  .hero__checks {
    gap: 0.5rem 1rem;
  }
}

.hero__check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

@media (max-width: 575px) {
  .hero__check {
    font-size: 13px;
    gap: 6px;
  }
}

.hero__check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 11px;
  flex-shrink: 0;
}

.hero__check-icon.green {
  background: rgba(16, 185, 129, 0.2);
}

.hero__check-icon.blue {
  background: var(--color-primary-20);
}

.hero__check-icon iconify-icon {
  font-size: 12px;
  color: var(--white);
}

/* Hero call link */

.hero__call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  min-height: 44px;
}

.hero__call:hover {
  color: var(--white);
}

.hero__call iconify-icon {
  font-size: 18px;
}

.hero__reviews {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.hero__trustpilot {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}

.hero__trustpilot:hover {
  color: var(--white);
}

.hero__trustpilot-stars {
  display: flex;
  gap: 2px;
  color: #00b67a;
}

.hero__google-stars {
  color: #fbbf24;
}

.hero__trustpilot img {
  height: 16px;
  opacity: 0.6;
  transition: 0.3s;
}

.hero__trustpilot:hover img {
  opacity: 1;
}

.hero__trustpilot > iconify-icon {
  opacity: 0.6;
  transition: 0.3s;
}

.hero__trustpilot:hover > iconify-icon {
  opacity: 1;
}

/* ===================== */
/* // HERO FORM
/* ===================== */

.hero__form {
  width: 466px;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid #dee3e6;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

@media (max-width: 991px) {
  .hero__form {
    width: 100%;
    max-width: 520px;
  }
}

.hero__form-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 32px 32px 0.75rem;
}

@media (max-width: 575px) {
  .hero__form-header {
    padding: 24px 20px 0;
  }
}

.hero__form-header span {
  color: #adb6bd;
  font-size: 14px;
  font-weight: 400;
}

.hero__form-header h3 {
  color: #202426;
  font-family: var(--font-heading);
  font-size: var(--fs-4);
  font-weight: 700;
  line-height: 27.6px;
}

.hero__form-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  padding-top: 0;
}

@media (max-width: 575px) {
  .hero__form-body {
    padding: 24px 20px;
    padding-top: 0;
    gap: 14px;
  }
}

.hero__form-body .form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero__form-body .form__group label {
  color: #6c767d;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.6px;
}

.hero__form-body .input input {
  background: #f9f9fa;
  border: 1px solid #dee3e6;
  border-radius: 10px;
  color: var(--black);
  padding: 12px 15px;
  font-size: var(--fs-6);
  font-weight: 400;
  transition: 0.3s;
  min-height: 48px;
}

.hero__form-body .input input:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 3px var(--color-primary-20);
}

.hero__form-body .input input::-webkit-input-placeholder {
  color: #adb6bd;
}

.hero__form-body .input input::-moz-placeholder {
  color: #adb6bd;
}

.hero__form-body .input input::placeholder {
  color: #adb6bd;
}

/* Car sizes */

.hero__sizes {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}

@media (max-width: 575px) {
  .hero__sizes {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.375rem;
  }

  .hero__size {
    padding: 10px 6px;
  }

  .hero__size img {
    height: 26px;
  }

  .hero__size span {
    font-size: 12px;
  }
}

@media (max-width: 370px) {
  .hero__sizes {
    gap: 0.25rem;
  }

  .hero__size {
    padding: 8px 4px;
  }

  .hero__size img {
    height: 22px;
  }

  .hero__size span {
    font-size: 11px;
  }
}

.hero__size {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  min-width: 0;
  padding: 12px 8px;
  border: 1px solid #dee3e6;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s;
  background: #f9f9fa;
}

.hero__size:hover {
  border-color: var(--color-primary-50);
}

.hero__size.active {
  border-color: var(--color-primary);
  background: var(--color-primary);
}

.hero__size input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.hero__size img {
  height: 32px;
  width: auto;
  object-fit: contain;
  opacity: 0.55;
  transition: 0.2s;
}

.hero__size.active img {
  opacity: 1;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.hero__size span {
  color: #202426;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  transition: 0.2s;
}

.hero__size.active span {
  color: #f9f9fa;
  font-weight: 500;
}

/* Form note */

.hero__form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #adb6bd;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
}

.hero__form-note iconify-icon {
  font-size: 12px;
  flex-shrink: 0;
}

/* ===================== */
/* // STAT BAR
/* ===================== */

.stat {
  background-color: var(--white);
  border-bottom: 1px solid #e9edf0;
}

.stat__content {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 40px;
}

@media (max-width: 991px) {
  .stat__content {
    display: grid;
    grid-template-columns: repeat(5, auto);
    justify-content: center;
    justify-items: center;
    gap: 1.25rem;
  }
}

@media (max-width: 767px) {
  .stat__content {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 575px) {
  .stat__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat__item:last-child {
    grid-column: 1 / -1;
    justify-self: center;
  }
}

.stat__item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #ebf8ff;
  font-size: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
}

@media (max-width: 575px) {
  .stat__icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
    border-radius: 8px;
  }
}

.stat__info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.stat__info h4 {
  color: #343b40;
  font-size: 16px;
  font-weight: 700;
  line-height: 22.4px;
}

.stat__info p {
  color: #6c767d;
  font-size: 16px;
  font-weight: 500;
  line-height: 22.4px;
}

@media (max-width: 575px) {
  .stat__info h4 {
    font-size: 14px;
    line-height: 1.3;
  }

  .stat__info p {
    font-size: 13px;
    line-height: 1.3;
  }
}

/* ===================== */
/* // BANNER
/* ===================== */

.banner {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background-image: url("../img/bg_banner.jpg");
  background-size: cover;
  background-position: center;
}

.banner > .container {
  position: relative;
  z-index: 2;
}

.banner__content {
  display: flex;
  align-items: center;
  gap: 32px;
}

@media (max-width: 991px) {
  .banner__content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}

@media (max-width: 767px) {
  .banner__content {
    text-align: left;
    align-items: flex-start;
    gap: 1.25rem;
  }
}

@media (max-width: 575px) {
  .banner__content {
    gap: 1rem;
  }
}

.banner__left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.banner__fpg {
  height: 70px;
  width: auto;
}

@media (max-width: 767px) {
  .banner__fpg {
    height: 56px;
  }
}

@media (max-width: 575px) {
  .banner__fpg {
    height: 48px;
  }
}

.banner__center {
  flex: 1;
  min-width: 0;
}

.banner__center h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  line-height: 31.2px;
  letter-spacing: -0.5px;
}

@media (max-width: 767px) {
  .banner__center h4 {
    font-size: 19px;
    line-height: 1.35;
  }
}

@media (max-width: 575px) {
  .banner__center h4 {
    font-size: 17px;
    line-height: 1.35;
  }
}

.banner__center p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 400;
  line-height: 21.7px;
}

@media (max-width: 575px) {
  .banner__center p {
    font-size: 13px;
    line-height: 1.5;
  }
}

@media (max-width: 767px) {
  .banner .btn {
    width: 100%;
    text-align: center;
  }
}

/* ===================== */
/* // LIGHT BG OVERRIDES
/* ===================== */

.bg-white .section__title h2,
.bg-light .section__title h2,
.bg-blue-light .section__title h2 {
  color: #343b40;
}

.bg-white .section__title p,
.bg-light .section__title p,
.bg-blue-light .section__title p {
  color: #6c767d;
}

/* ===================== */
/* // STEPS (HOW IT WORKS)
/* ===================== */

.steps__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

@media (max-width: 991px) {
  .steps__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .steps__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .steps__grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.steps__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid #dee3e6;
  overflow: hidden;
}

@media (max-width: 575px) {
  .steps__card {
    padding: 20px;
    gap: 12px;
  }
}

.steps__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.steps__icon iconify-icon {
  font-size: 48px;
  color: #333;
}

.steps__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 22px;
  background: #202426;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: var(--fs-5);
  font-weight: 700;
}

.steps__card h4 {
  color: #343b40;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 18.4px;
}

.steps__card p {
  color: #6c767d;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}

/* ===================== */
.steps__timeline {
  text-align: center;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid #e9edf0;
}

.steps__timeline p {
  font-size: 14px;
  line-height: 22px;
  color: #6c767d;
  margin: 0;
}

.steps__timeline strong {
  color: #343b40;
}

@media (max-width: 575px) {
  .steps__timeline {
    padding: 0.625rem 1rem;
  }

  .steps__timeline p {
    font-size: 12px;
    line-height: 18px;
  }
}

/* // DIFFER (WHY WE'RE DIFFERENT)
/* ===================== */

.differ__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 991px) {
  .differ__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 575px) {
  .differ__grid {
    gap: 2rem;
  }
}

.differ__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.differ__info h3,
.differ__info .section__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-size: var(--fs-7);
  font-weight: 600;
  letter-spacing: 1px;
}

.differ__info h2 {
  color: #343b40;
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -1.2px;
}

@media (max-width: 991px) {
  .differ__info h2 {
    font-size: var(--fs-3);
  }
}

@media (max-width: 575px) {
  .differ__info h2 {
    font-size: var(--fs-4);
  }

  .differ__info {
    gap: 24px;
  }
}

.differ__info > p {
  color: #4a5568;
  font-size: var(--fs-6);
  font-weight: 400;
  line-height: 1.6;
}

@media (max-width: 575px) {
  .differ__info > p {
    font-size: 15px;
  }

  .differ__info .btn {
    width: 100%;
    text-align: center;
  }
}

.differ__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.differ__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #495157;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

@media (max-width: 575px) {
  .differ__list li {
    font-size: 15px;
    line-height: 22px;
    gap: 10px;
  }
}

.differ__check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 11px;
  background: rgba(16, 185, 129, 0.2);
  flex-shrink: 0;
  margin-top: 1px;
}

.differ__check-icon iconify-icon {
  font-size: 12px;
  color: var(--white);
}

.differ__list li strong {
  font-weight: 700;
}

/* Comparison table — desktop */

.differ__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 20px;
}

.differ__table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #dee3e6;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 8px 24px rgba(0, 0, 0, 0.06);
}

.differ__table thead th {
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  white-space: nowrap;
  height: 60px;
}

.differ__table thead th:first-child {
  text-align: left;
  color: #6c767d;
  background: #f9f9fa;
}

.differ__th-brokers {
  background: #fef2f2;
  color: #ef4444;
}

.differ__th-smr {
  background: var(--color-primary-10);
  color: var(--color-primary);
}

.differ__table tbody td {
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #6c767d;
  border-top: 1px solid #e9edf0;
}

.differ__table tbody tr:last-child td {
  border-bottom: none;
}

/* Comparison table — mobile card transformation */

@media (max-width: 767px) {
  .differ__table {
    border: none;
    box-shadow: none;
    border-radius: 0;
    background: transparent;
  }

  .differ__table-wrap {
    overflow: visible;
    border-radius: 0;
  }

  .differ__table thead {
    display: none;
  }

  .differ__table tbody {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .differ__table tbody tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
    padding: 1.25rem;
    border: 1px solid #dee3e6;
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  }

  .differ__table tbody td {
    padding: 0;
    border-top: none;
    font-size: 14px;
    line-height: 1.5;
  }

  .differ__table tbody td:first-child {
    grid-column: 1 / -1;
    font-weight: 700;
    font-size: 15px;
    color: #1a1a1a;
    padding-bottom: 0.5rem;
    margin-bottom: 0.25rem;
    border-bottom: 1px solid #f0f2f5;
  }

  .differ__table tbody td:nth-child(2) {
    text-align: left;
  }

  .differ__table tbody td:nth-child(2)::before {
    content: "Brokers: ";
    color: #ef4444;
    font-weight: 400;
    font-size: 12px;
    display: block;
    margin-bottom: 2px;
  }

  .differ__table tbody td:nth-child(3) {
    text-align: right;
  }

  .differ__table tbody td:nth-child(3)::before {
    content: "SendMyRide: ";
    color: #059669;
    font-weight: 400;
    font-size: 12px;
    display: block;
    margin-bottom: 2px;
  }
}

.color-danger {
  color: #ef4444;
  font-weight: 600;
}

.color-success {
  color: #059669;
  font-weight: 700;
}

/* ===================== */
/* // TRANSPARENCY (PRICE)
/* ===================== */

.transparency__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 767px) {
  .transparency__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.transparency__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 32px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid #dee3e6;
}

@media (max-width: 767px) {
  .transparency__card {
    padding: 20px;
    gap: 12px;
  }

  .transparency__icon {
    width: 56px;
    height: 56px;
  }

  .transparency__icon iconify-icon {
    font-size: 26px;
  }
}

.transparency__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 10px;
  background: #ebf8ff;
}

.transparency__icon iconify-icon {
  font-size: 32px;
  color: #333;
}

.transparency__icon--primary {
  background: #ebf8ff;
}

.transparency__icon--primary iconify-icon {
  color: #333;
}

.transparency__card h4 {
  color: #343b40;
  font-family: var(--font-heading);
  font-size: var(--fs-5);
  font-weight: 700;
  line-height: 23px;
}

.transparency__card p {
  color: #6c767d;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}

.transparency__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 2rem;
}

@media (max-width: 575px) {
  .transparency__buttons {
    flex-direction: column;
  }

  .transparency__buttons .btn {
    width: 100%;
  }
}

/* ===================== */
/* // B2B (BUSINESS SOLUTIONS)
/* ===================== */

.b2b {
  position: relative;
  overflow: hidden;
  background-image: url("../img/bg_b2b.jpg");
  background-size: cover;
  background-position: center;
}

.b2b > .container {
  position: relative;
  z-index: 1;
}

.b2b .section__title h2 {
  color: var(--white);
}

.b2b .section__title p {
  color: rgba(255, 255, 255, 0.5);
}

.b2b__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 991px) {
  .b2b__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .b2b__grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.b2b__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 32px;
  background: #2a2e31;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 575px) {
  .b2b__card {
    padding: 20px;
    gap: 12px;
  }

  .b2b__icon {
    width: 48px;
    height: 48px;
  }

  .b2b__icon iconify-icon {
    font-size: 24px;
  }
}

.b2b__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 10px;
  background: var(--color-primary);
}

.b2b__icon iconify-icon {
  font-size: 32px;
  color: var(--white);
}

.b2b__card h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: var(--fs-5);
  font-weight: 700;
  line-height: 23px;
  letter-spacing: -0.3px;
}

.b2b__card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 400;
  line-height: 22.4px;
}

.b2b__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 575px) {
  .b2b__buttons {
    flex-direction: column;
  }

  .b2b__buttons .btn {
    width: 100%;
  }
}

/* ===================== */
/* // REVIEWS
/* ===================== */

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 991px) {
  .reviews__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.reviews__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 25px 25px 33px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid #dee3e6;
}

@media (max-width: 575px) {
  .reviews__card {
    padding: 20px;
    gap: 12px;
  }
}

.reviews__stars {
  font-size: 24px;
  color: #fbbf24;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 25.6px;
}

@media (max-width: 575px) {
  .reviews__stars {
    font-size: 20px;
  }
}

.reviews__text {
  color: #495157;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  flex: 1;
}

@media (max-width: 575px) {
  .reviews__text {
    font-size: 15px;
    line-height: 24px;
  }
}

.reviews__author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 2px;
}

.reviews__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 18px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.reviews__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.reviews__meta strong {
  color: #343b40;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.1;
}

.reviews__meta span {
  color: #adb6bd;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}

/* ===================== */
/* // BLOG
/* ===================== */

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .blog__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .blog__grid .blog__card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .blog__grid {
    grid-template-columns: 1fr;
  }

  .blog__grid .blog__card:last-child {
    grid-column: auto;
  }
}

@media (max-width: 575px) {
  .blog__grid {
    gap: 0.75rem;
  }
}

.blog__card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #dee3e6;
  transition: 0.3s;
}

.blog__card:hover {
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

@media (max-width: 575px) {
  .blog__card {
    flex-direction: row;
    border-radius: 12px;
  }

  .blog__card:hover {
    -webkit-transform: none;
    transform: none;
  }
}

.blog__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-surface);
}

@media (max-width: 575px) {
  .blog__image {
    width: 120px;
    min-width: 120px;
    aspect-ratio: auto;
    height: auto;
  }
}

.blog__image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.blog__image-placeholder iconify-icon {
  font-size: 48px;
  color: var(--text-secondary-3);
}

.blog__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
}

@media (max-width: 575px) {
  .blog__body {
    padding: 1rem;
    gap: 0.25rem;
  }
}

.blog__description {
  display: block;
  color: #6c767d;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}

.blog__tag {
  color: #6c767d;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 575px) {
  .blog__tag {
    font-size: 11px;
    letter-spacing: 0.5px;
  }
}

.blog__card h4 {
  color: #202426;
  font-family: var(--font-heading);
  font-size: var(--fs-5);
  font-weight: 700;
  line-height: 26px;
}

@media (max-width: 575px) {
  .blog__card h4 {
    font-size: var(--fs-6);
    line-height: 1.3;
  }

  .blog__card p {
    display: none;
  }
}

.blog__card p {
  color: #6c767d;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}

.blog__read {
  color: #6c767d;
  font-size: 14px;
  font-weight: 400;
  margin-top: 0.25rem;
}

@media (max-width: 575px) {
  .blog__read {
    font-size: 12px;
  }
}

/* ===================== */
/* // FAQ
/* ===================== */

.faq__content {
  /* max-width: 760px; */
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid #dee3e6;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
  padding: 1rem 0;
  cursor: pointer;
  color: #343b40;
  font-family: var(--font-heading);
  font-size: var(--fs-5);
  font-weight: 600;
  line-height: 1.3;
  transition: 0.3s;
}

@media (max-width: 575px) {
  .faq__question {
    min-height: 60px;
    font-size: var(--fs-6);
    gap: 0.75rem;
  }
}

.faq__question:hover {
  color: var(--color-primary);
}

.faq__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 18px;
  background: #e9edf0;
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: var(--fs-5);
  font-weight: 600;
  color: #6c767d;
  line-height: 1;
  transition: 0.3s;
}

.faq__item.active .faq__toggle {
  background: #ebf8ff;
  color: var(--color-primary);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}

.faq__item.active .faq__answer {
  max-height: 300px;
  padding-bottom: 22px;
}

.faq__answer p {
  color: #6c767d;
  font-size: 16px;
  font-weight: 400;
  line-height: 27.2px;
}

@media (max-width: 575px) {
  .faq__answer p {
    font-size: 14px;
    line-height: 22px;
  }
}

/* ===================== */
/* // CTA (FINAL)
/* ===================== */

.cta {
  position: relative;
  overflow: hidden;
  background-image: url("../img/bg_cta.jpg");
  background-size: cover;
  background-position: center;
}

.cta > .container {
  position: relative;
  z-index: 1;
}

.cta .section__title h2 {
  color: var(--white);
}

.cta .section__title p {
  color: rgba(255, 255, 255, 0.5);
}

.cta__form {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #dee3e6;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cta__form-header {
  padding: 32px 32px 0;
}

.cta__form-header span {
  color: #adb6bd;
  font-size: 14px;
  font-weight: 400;
}

.cta__form-header h3 {
  color: #202426;
  font-family: var(--font-heading);
  font-size: var(--fs-4);
  font-weight: 700;
  line-height: 27.6px;
}

.cta__form-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  padding-top: 0;
}

@media (max-width: 575px) {
  .cta__form-header {
    padding: 24px 20px 0;
  }

  .cta__form-body {
    padding: 24px 20px;
    padding-top: 0;
    gap: 14px;
  }
}

.cta__form-body .form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cta__form-body .form__group label {
  color: #6c767d;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.cta__form-body .input input {
  background: #f9f9fa;
  border: 1px solid #dee3e6;
  border-radius: 10px;
  color: var(--black);
  padding: 12px 15px;
  font-size: var(--fs-6);
  font-weight: 400;
  transition: 0.3s;
  min-height: 48px;
}

.cta__form-body .input input:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 3px var(--color-primary-20);
}

.cta__form-body .input input::-webkit-input-placeholder {
  color: #adb6bd;
}

.cta__form-body .input input::-moz-placeholder {
  color: #adb6bd;
}

.cta__form-body .input input::placeholder {
  color: #adb6bd;
}

.cta__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 575px) {
  .cta__form-row {
    grid-template-columns: 1fr;
  }
}

.cta__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

@media (max-width: 767px) {
  .cta__trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .cta__trust {
    gap: 0.5rem 0.75rem;
  }
}

.cta__trust span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 575px) {
  .cta__trust span {
    font-size: 13px;
  }
}

/* ===================== */
/* // BG MODIFIER
/* ===================== */

.bg-dark {
  background-color: var(--bg-primary-inv);
}

.bg-gray {
  background-color: var(--bg-secondary);
}

.bg-surface {
  background-color: var(--bg-surface);
}

.bg-light {
  background-color: #f5f7f8;
}

.bg-blue-light {
  background-color: #e8f4fa;
}

.btn-outline {
  color: #1a1a1a;
  background: var(--white);
  border-color: #dee3e6;
}

.btn-outline:hover,
.btn-outline.active {
  color: #1a1a1a;
  background: #f5f7f8;
  border-color: #ced5da;
}

/* Ghost button (transparent with white border, for dark backgrounds) */

.btn-ghost {
  color: var(--white);
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover,
.btn-ghost.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ===================== */
/* // GLOBAL MOBILE CRO
/* ===================== */

@media (max-width: 767px) {
  .btn--xl {
    font-size: var(--fs-6);
    padding: 1rem 1.5rem;
    min-height: 52px;
  }

  .btn--md {
    min-height: 48px;
    padding: 0.875rem 1.5rem;
  }
}

/* ===================== */
/* // BG WHITE (for light-text body pages)
/* ===================== */

.bg-white {
  background-color: var(--white);
}

/* ===================== */
/* // PAGE HERO (inner pages)
/* ===================== */

.pagehero {
  position: relative;
  background-color: var(--bg-primary-inv);
  background-image: url("../img/bg_hero.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  overflow: hidden;
  flex-shrink: 0;
}

.pagehero > .container {
  position: relative;
  z-index: 1;
}

.pagehero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-top: 48px;
  padding-bottom: 64px;
  max-width: 620px;
}

@media (max-width: 991px) {
  .pagehero__content {
    padding-top: 32px;
    padding-bottom: 3rem;
    gap: 16px;
  }
}

@media (max-width: 575px) {
  .pagehero__content {
    padding-top: 24px;
    padding-bottom: 2.5rem;
    gap: 14px;
  }
}

.pagehero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 1rem;
}

.pagehero__breadcrumb a {
  color: rgba(255, 255, 255, 0.4);
  transition: 0.3s;
}

.pagehero__breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.pagehero__breadcrumb-sep {
  color: rgba(255, 255, 255, 0.2);
}

.pagehero__breadcrumb-current {
  color: rgba(255, 255, 255, 0.7);
}

.pagehero__content h1 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1.5px;
}

@media (max-width: 991px) {
  .pagehero__content h1 {
    font-size: var(--fs-3);
    letter-spacing: -1px;
  }
}

@media (max-width: 575px) {
  .pagehero__content h1 {
    font-size: 28px;
    letter-spacing: -0.8px;
  }
}

.pagehero__content h1 sup {
  color: #6ccaf4;
  font-size: var(--fs-5);
  vertical-align: super;
  font-weight: 700;
}

.pagehero__desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--fs-5);
  font-weight: 400;
  line-height: 1.6;
  max-width: 560px;
}

@media (max-width: 575px) {
  .pagehero__desc {
    font-size: 15px;
    line-height: 1.55;
  }
}

.pagehero__buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 12px;
}

@media (max-width: 575px) {
  .pagehero__buttons {
    flex-direction: column;
    width: 100%;
    padding-top: 8px;
  }

  .pagehero__buttons .btn {
    width: 100%;
    text-align: center;
  }
}

/* ===================== */
/* // FPG INTRO
/* ===================== */

.fpgintro {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

@media (max-width: 575px) {
  .fpgintro {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.fpgintro__badge-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.fpgintro__badge {
  height: 72px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(29, 55, 39, 0.12));
}

@media (max-width: 575px) {
  .fpgintro__badge {
    height: 56px;
  }
}

/* ===================== */
/* // TRIPLE LOCK
/* ===================== */

.triplelock {
  background-color: var(--bg-primary-inv);
  background-image: url("../img/bg_b2b.jpg");
  background-size: cover;
  background-position: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (max-width: 575px) {
  .triplelock {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.triplelock > .container {
  position: relative;
  z-index: 1;
}

.triplelock .section__title h2 {
  color: var(--white);
}

.triplelock__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .triplelock__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.triplelock__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 36px 32px;
  background: #2a2e31;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s;
}

.triplelock__card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {
  .triplelock__card {
    padding: 24px 20px;
  }

  .triplelock__card:hover {
    -webkit-transform: none;
    transform: none;
    box-shadow: none;
  }
}

.triplelock__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 22px;
  background: var(--color-primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: var(--fs-6);
  font-weight: 700;
  margin-bottom: 8px;
}

.triplelock__label {
  color: #6ccaf4;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.triplelock__card h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: var(--fs-5);
  font-weight: 700;
  line-height: 23px;
  letter-spacing: -0.3px;
}

.triplelock__card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 400;
  line-height: 22.4px;
}

/* ===================== */
/* // ARTICLE (text content sections)
/* ===================== */

.article {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (max-width: 575px) {
  .article {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.article__content {
  max-width: 720px;
  margin: 0 auto;
}

.article__content h2 {
  color: #343b40;
  font-family: var(--font-heading);
  font-size: var(--fs-3);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

@media (max-width: 575px) {
  .article__content h2 {
    font-size: var(--fs-4);
    margin-bottom: 12px;
  }
}

.article__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.article__content p {
  color: #6c767d;
  font-size: var(--fs-6);
  font-weight: 400;
  line-height: 1.6;
}

@media (max-width: 575px) {
  .article__content p {
    font-size: 15px;
  }
}

.article__content a {
  color: var(--color-primary);
  font-weight: 600;
  transition: 0.3s;
}

.article__content a:hover {
  color: var(--color-secondary);
}

/* ===================== */
/* // MID-PAGE CTA
/* ===================== */

.midcta {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-top: 1px solid #e9edf0;
  border-bottom: 1px solid #e9edf0;
}

@media (max-width: 575px) {
  .midcta {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

/* ===================== */
/* // CTA BAND (dark strip)
/* ===================== */

.ctaband {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-primary-inv);
  background-image: url("../img/bg_cta.jpg");
  background-size: cover;
  background-position: center;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

@media (max-width: 575px) {
  .ctaband {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.ctaband > .container {
  position: relative;
  z-index: 1;
}

.ctaband .section__title h2 {
  color: var(--white);
}

.ctaband .section__title p {
  color: rgba(255, 255, 255, 0.45);
}

.ctaband__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2.5rem;
}

@media (max-width: 575px) {
  .ctaband__buttons {
    flex-direction: column;
    margin-top: 1.5rem;
  }

  .ctaband__buttons .btn {
    width: 100%;
  }
}

/* ===================== */
/* // STATIC PAGE
/* ===================== */

.static {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (max-width: 575px) {
  .static {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.static__content {
  max-width: 840px;
  margin: 0 auto;
}

.static__updated {
  color: #adb6bd;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 2rem;
}

.static__content h2 {
  color: #343b40;
  font-family: var(--font-heading);
  font-size: var(--fs-4);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.3px;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.static__content h2:first-child {
  margin-top: 0;
}

.static__content h3 {
  color: #343b40;
  font-family: var(--font-heading);
  font-size: var(--fs-5);
  font-weight: 700;
  line-height: 1.3;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

@media (max-width: 575px) {
  .static__content h2 {
    font-size: var(--fs-5);
    margin-top: 2rem;
  }

  .static__content h3 {
    font-size: var(--fs-6);
    margin-top: 1.5rem;
  }
}

.static__content p {
  color: #6c767d;
  font-size: var(--fs-6);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 1rem;
}

@media (max-width: 575px) {
  .static__content p {
    font-size: 15px;
    line-height: 1.65;
  }
}

.static__content a {
  color: var(--color-primary);
  font-weight: 600;
  transition: 0.3s;
}

.static__content a:hover {
  color: var(--color-secondary);
}

.static__content ul,
.static__content ol {
  color: #6c767d;
  font-size: var(--fs-6);
  line-height: 1.7;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.static__content ul {
  list-style: disc;
}

.static__content ol {
  list-style: decimal;
}

.static__content li {
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
}

.static__content li strong {
  color: #343b40;
}

.static__content blockquote {
  border-left: 3px solid var(--color-primary);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: #f5f7f8;
  border-radius: 0 8px 8px 0;
}

.static__content blockquote p {
  color: #495157;
  font-size: var(--fs-6);
  font-style: italic;
  margin-bottom: 0;
}

/* Static note callout */

.static__note {
  display: flex;
  gap: 14px;
  padding: 20px 24px;
  background: #e8f4fa;
  border: 1px solid #b8ddf0;
  border-radius: 12px;
  margin: 1.5rem 0;
}

.static__note iconify-icon {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.static__note strong {
  display: block;
  color: #343b40;
  font-size: var(--fs-7);
  font-weight: 700;
  margin-bottom: 4px;
}

.static__note p {
  color: #495157;
  font-size: var(--fs-7);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Static warning callout */

.static__warning {
  display: flex;
  gap: 14px;
  padding: 20px 24px;
  background: #fef7ed;
  border: 1px solid #f5d9a8;
  border-radius: 12px;
  margin: 1.5rem 0;
}

.static__warning iconify-icon {
  color: #d97706;
  flex-shrink: 0;
  margin-top: 2px;
}

.static__warning strong {
  display: block;
  color: #343b40;
  font-size: var(--fs-7);
  font-weight: 700;
  margin-bottom: 4px;
}

.static__warning p {
  color: #6c767d;
  font-size: var(--fs-7);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .static__note,
  .static__warning {
    padding: 16px 18px;
    gap: 12px;
  }
}

/* Static table */

.static__table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: 12px;
  border: 1px solid #dee3e6;
}

.static__table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-7);
}

.static__table-wrap thead {
  background: #f5f7f8;
}

.static__table-wrap th {
  color: #343b40;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid #dee3e6;
}

.static__table-wrap td {
  color: #6c767d;
  padding: 14px 20px;
  border-bottom: 1px solid #f0f2f4;
}

.static__table-wrap tr:last-child td {
  border-bottom: none;
}

@media (max-width: 575px) {
  .static__table-wrap th,
  .static__table-wrap td {
    padding: 12px 14px;
    font-size: 13px;
  }
}

/* ===================== */
/* // INFO PAGE
/* ===================== */

.info-page {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.info-page__card {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.info-page__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #e8f4fa;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.info-page__title {
  color: #343b40;
  font-family: var(--font-heading);
  font-size: var(--fs-3);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.info-page__message {
  color: #6c767d;
  font-size: var(--fs-6);
  line-height: 1.7;
}

.info-page__message a {
  color: var(--color-primary);
  font-weight: 600;
  transition: 0.3s;
}

.info-page__message a:hover {
  color: var(--color-secondary);
}

.info-page__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 0.75rem;
}

@media (max-width: 575px) {
  .info-page {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .info-page__icon {
    width: 60px;
    height: 60px;
  }

  .info-page__icon iconify-icon {
    width: 26px;
    height: 26px;
  }

  .info-page__title {
    font-size: var(--fs-4);
  }

  .info-page__message {
    font-size: 15px;
  }

  .info-page__actions {
    flex-direction: column;
    width: 100%;
  }

  .info-page__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===================== */
/* // PAGEHERO EXTRAS (article meta + category)
/* ===================== */

.pagehero__category {
  display: inline-block;
  color: #6ccaf4;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.pagehero__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.pagehero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
}

.pagehero__meta-item iconify-icon {
  opacity: 0.6;
}

@media (max-width: 575px) {
  .pagehero__meta {
    gap: 12px 16px;
  }

  .pagehero__meta-item {
    font-size: 12px;
  }
}

/* ===================== */
/* // FULL STORY (article page)
/* ===================== */

.fullstory {
  padding-top: 4rem;
  padding-bottom: 2rem;
}

@media (max-width: 575px) {
  .fullstory {
    padding-top: 2.5rem;
    padding-bottom: 1.5rem;
  }
}

.fullstory__content {
  max-width: 840px;
  margin: 0 auto;
}

/* Featured image */

.fullstory__image {
  margin-bottom: 2.5rem;
  border-radius: 16px;
  overflow: hidden;
}

.fullstory__image img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

@media (max-width: 575px) {
  .fullstory__image {
    margin-bottom: 1.75rem;
    border-radius: 12px;
  }
}

/* Article body typography */

.fullstory__body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fullstory__body h2 {
  color: #343b40;
  font-family: var(--font-heading);
  font-size: var(--fs-4);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.3px;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.fullstory__body h2:first-child {
  margin-top: 0;
}

.fullstory__body h3 {
  color: #343b40;
  font-family: var(--font-heading);
  font-size: var(--fs-5);
  font-weight: 700;
  line-height: 1.3;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

@media (max-width: 575px) {
  .fullstory__body h2 {
    font-size: var(--fs-5);
    margin-top: 2rem;
  }

  .fullstory__body h3 {
    font-size: var(--fs-6);
    margin-top: 1.5rem;
  }
}

.fullstory__body p {
  color: #6c767d;
  font-size: var(--fs-6);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 1rem;
}

@media (max-width: 575px) {
  .fullstory__body p {
    font-size: 15px;
    line-height: 1.65;
  }
}

.fullstory__body a:not(.btn) {
  color: var(--color-primary);
  font-weight: 600;
  transition: 0.3s;
}

.fullstory__body a:not(.btn):hover {
  color: var(--color-secondary);
}

.fullstory__body ul,
.fullstory__body ol {
  color: #6c767d;
  font-size: var(--fs-6);
  line-height: 1.7;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.fullstory__body ul {
  list-style: disc;
}

.fullstory__body ol {
  list-style: decimal;
}

.fullstory__body li {
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
}

.fullstory__body li strong {
  color: #343b40;
}

.fullstory__body blockquote {
  border-left: 3px solid var(--color-primary);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: #f5f7f8;
  border-radius: 0 8px 8px 0;
}

.fullstory__body blockquote p {
  color: #495157;
  font-size: var(--fs-6);
  font-style: italic;
  margin-bottom: 0;
}

.fullstory__description {
  display: block;
}

.fullstory__description img {
  padding: 0.5rem;
  border-radius: 0.5rem;
}

/* Fullstory inline CTA */

.fullstory__inline-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  margin: 2rem 0;
  background: #e8f4fa;
  border: 1px solid #b8ddf0;
  border-radius: 16px;
}

.fullstory__inline-cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-primary);
  color: var(--white);
  flex-shrink: 0;
}

.fullstory__inline-cta-body {
  flex: 1;
  min-width: 0;
}

.fullstory__inline-cta-body h4 {
  color: #343b40;
  font-family: var(--font-heading);
  font-size: var(--fs-6);
  font-weight: 700;
  margin-bottom: 4px;
}

.fullstory__inline-cta-body p {
  color: #6c767d;
  font-size: var(--fs-7);
  line-height: 1.5;
  margin-bottom: 0;
}

.fullstory__inline-cta .btn {
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .fullstory__inline-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 22px;
  }

  .fullstory__inline-cta .btn {
    width: 100%;
    text-align: center;
  }
}

/* Fullstory table */

.fullstory__table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: 12px;
  border: 1px solid #dee3e6;
}

.fullstory__table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-7);
}

.fullstory__table-wrap thead {
  background: #f5f7f8;
}

.fullstory__table-wrap th {
  color: #343b40;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid #dee3e6;
}

.fullstory__table-wrap td {
  color: #6c767d;
  padding: 14px 20px;
  border-bottom: 1px solid #f0f2f4;
}

.fullstory__table-wrap tr:last-child td {
  border-bottom: none;
}

@media (max-width: 575px) {
  .fullstory__table-wrap th,
  .fullstory__table-wrap td {
    padding: 12px 14px;
    font-size: 13px;
  }
}

/* Fullstory tags */

.fullstory__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .25rem;
  padding-top: 1.25rem;
  margin-top: 1rem;
  border-top: 1px solid #e9edf0;
  font-size: 0;
  color: transparent;
}

.fullstory__tags iconify-icon {
  color: #adb6bd;
}

.fullstory__tags a {
  display: inline-block;
  padding: 6px 14px;
  background: #f5f7f8;
  border: 1px solid #e9edf0;
  border-radius: 100px;
  color: #6c767d;
  font-size: 13px;
  font-weight: 500;
  transition: 0.3s;
}

.fullstory__tags a:hover {
  background: #e9edf0;
  color: #343b40;
}

/* Fullstory share */

.fullstory__share {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 1.25rem;
  margin-top: 1.25rem;
  border-top: 1px solid #e9edf0;
}

.fullstory__share span {
  color: #adb6bd;
  font-size: 13px;
  font-weight: 500;
}

.fullstory__share-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fullstory__share-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f5f7f8;
  border: 1px solid #e9edf0;
  color: #6c767d;
  transition: 0.3s;
}

.fullstory__share-links a:hover {
  background: #e9edf0;
  color: #343b40;
}

/* Prev / Next navigation */

.fullstory__nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid #e9edf0;
}

.fullstory__nav .btn {
  max-width: 48%;
}

.fullstory__nav .btn span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left;
}

.fullstory__nav .btn:last-child span {
  text-align: right;
}

@media (max-width: 575px) {
  .fullstory__nav {
    flex-direction: column;
    gap: 10px;
  }

  .fullstory__nav .btn {
    max-width: 100%;
    width: 100%;
  }
}

/* End-of-article CTA */

.fullstory__endcta {
  max-width: 840px;
  margin: 0 auto;
  padding: 36px 40px;
  background: #f5f7f8;
  border: 1px solid #e9edf0;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.fullstory__endcta-info h3 {
  color: #343b40;
  font-family: var(--font-heading);
  font-size: var(--fs-4);
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

.fullstory__endcta-info p {
  color: #6c767d;
  font-size: var(--fs-6);
  line-height: 1.5;
}

.fullstory__endcta-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.fullstory__endcta-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.fullstory__endcta-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #adb6bd;
  font-size: 13px;
  font-weight: 500;
}

.fullstory__endcta-trust iconify-icon {
  color: var(--color-primary);
}

@media (max-width: 575px) {
  .fullstory__endcta {
    padding: 28px 24px;
    gap: 16px;
  }

  .fullstory__endcta-info h3 {
    font-size: var(--fs-5);
  }

  .fullstory__endcta-info p {
    font-size: 15px;
  }

  .fullstory__endcta-actions {
    flex-direction: column;
    width: 100%;
  }

  .fullstory__endcta-actions .btn {
    width: 100%;
  }

  .fullstory__endcta-trust {
    gap: 12px 16px;
  }
}

/* Related articles (reuses .blog__grid from main page) */

.related {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* Comments section */

.comments__content {
  max-width: 840px;
  margin: 0 auto;
}

.comments__content .section__title h2 {
  color: #343b40;
  font-size: var(--fs-4);
}

/* ===================== */
/* // BLOG PAGE (blogpage)
/* ===================== */

.blogpage-filters__row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.blogpage-filters__tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 100px;
  background: #f5f7f8;
  border: 1px solid #e9edf0;
  color: #6c767d;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.blogpage-filters__tag:hover {
  background: #e9edf0;
  color: #343b40;
}

.blogpage-filters__tag.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--white);
}

.blogpage-filters__tag--all {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--white);
}

.blogpage-filters__row:has(.blogpage-filters__tag.active) .blogpage-filters__tag--all {
  background: #f5f7f8;
  border-color: #e9edf0;
  color: #6c767d;
}

.blogpage-filters__row:has(.blogpage-filters__tag.active) .blogpage-filters__tag--all:hover {
  background: #e9edf0;
  color: #343b40;
}

@media (max-width: 575px) {
  .blogpage-filters__row {
    gap: 6px;
  }

  .blogpage-filters__tag {
    padding: 6px 14px;
    font-size: 13px;
  }
}

/* Featured article card */

.blogpage-featured__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #dee3e6;
  transition: 0.3s;
}

.blogpage-featured__card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767px) {
  .blogpage-featured__card {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }
}

.blogpage-featured__image {
  position: relative;
  overflow: hidden;
  background: var(--bg-surface);
}

.blogpage-featured__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 767px) {
  .blogpage-featured__image {
    aspect-ratio: 16 / 10;
  }
}

.blogpage-featured__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 40px;
}

@media (max-width: 991px) {
  .blogpage-featured__body {
    padding: 28px;
  }
}

@media (max-width: 575px) {
  .blogpage-featured__body {
    padding: 20px;
    gap: 8px;
  }
}

.blogpage-featured__body h2 {
  color: #202426;
  font-family: var(--font-heading);
  font-size: var(--fs-3);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

@media (max-width: 991px) {
  .blogpage-featured__body h2 {
    font-size: var(--fs-4);
  }
}

@media (max-width: 575px) {
  .blogpage-featured__body h2 {
    font-size: var(--fs-5);
    letter-spacing: -0.3px;
  }
}

.blogpage-featured__body p {
  color: #6c767d;
  font-size: var(--fs-6);
  line-height: 1.6;
}

@media (max-width: 575px) {
  .blogpage-featured__body p {
    font-size: 14px;
    line-height: 1.5;
  }
}

.blogpage-featured__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.blogpage-featured__meta span {
  color: #adb6bd;
  font-size: 14px;
  font-weight: 400;
}

/* Mid-page CTA buttons */

.midcta__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2rem;
}

@media (max-width: 575px) {
  .midcta__buttons {
    flex-direction: column;
  }

  .midcta__buttons .btn {
    width: 100%;
  }
}

/* ===================== */
/* // FAQ PAGE (faqpage)
/* ===================== */

/* FAQ category navigation */

.faqpage-nav__row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.faqpage-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 100px;
  background: #f5f7f8;
  border: 1px solid #e9edf0;
  color: #6c767d;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.faqpage-nav__link:hover {
  background: #e9edf0;
  color: #343b40;
}

.faqpage-nav__link iconify-icon {
  flex-shrink: 0;
}

@media (max-width: 575px) {
  .faqpage-nav__row {
    gap: 6px;
  }

  .faqpage-nav__link {
    padding: 8px 14px;
    font-size: 13px;
    gap: 4px;
  }
}

/* FAQ grouped sections */

.faqpage__group {
  max-width: 840px;
  margin: 0 auto;
}

.faqpage__group-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 2rem;
}

.faqpage__group-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #e8f4fa;
  color: var(--color-primary);
  flex-shrink: 0;
}

.faqpage__group-header h2 {
  color: #343b40;
  font-family: var(--font-heading);
  font-size: var(--fs-4);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}

.faqpage__group-header p {
  color: #6c767d;
  font-size: var(--fs-6);
  line-height: 1.5;
}

@media (max-width: 575px) {
  .faqpage__group-header {
    gap: 12px;
    margin-bottom: 1.5rem;
  }

  .faqpage__group-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .faqpage__group-icon iconify-icon {
    font-size: 20px;
  }

  .faqpage__group-header h2 {
    font-size: var(--fs-5);
  }

  .faqpage__group-header p {
    font-size: 14px;
  }
}

/* ===================== */
/* // REVIEWS PAGE (reviewpage)
/* ===================== */

/* Ratings summary bar */

.reviewpage-summary__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid #e9edf0;
}

@media (max-width: 991px) {
  .reviewpage-summary__row {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .reviewpage-summary__highlights {
    grid-column: 1 / -1;
  }
}

@media (max-width: 575px) {
  .reviewpage-summary__row {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 0;
    text-align: center;
  }
}

.reviewpage-summary__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.reviewpage-summary__number {
  color: #343b40;
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2px;
}

.reviewpage-summary__stars {
  font-size: 22px;
  color: #fbbf24;
  letter-spacing: 2px;
}

.reviewpage-summary__count {
  color: #adb6bd;
  font-size: 13px;
  font-weight: 500;
  margin-top: 4px;
}

/* Rating bars */

.reviewpage-summary__bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 320px;
  width: 100%;
}

@media (max-width: 575px) {
  .reviewpage-summary__bars {
    max-width: 100%;
    margin: 0 auto;
  }
}

.reviewpage-summary__bar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviewpage-summary__bar-label {
  color: #6c767d;
  font-size: 13px;
  font-weight: 500;
  width: 42px;
  flex-shrink: 0;
}

.reviewpage-summary__bar-track {
  flex: 1;
  height: 8px;
  background: #e9edf0;
  border-radius: 4px;
  overflow: hidden;
}

.reviewpage-summary__bar-fill {
  height: 100%;
  background: #fbbf24;
  border-radius: 4px;
  min-width: 2px;
}

.reviewpage-summary__bar-pct {
  color: #adb6bd;
  font-size: 13px;
  font-weight: 500;
  width: 32px;
  text-align: right;
  flex-shrink: 0;
}

/* Highlights */

.reviewpage-summary__highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reviewpage-summary__highlight {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviewpage-summary__highlight iconify-icon {
  color: #0dde34;
  flex-shrink: 0;
}

.reviewpage-summary__highlight span {
  color: #495157;
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 575px) {
  .reviewpage-summary__highlights {
    align-items: center;
  }

  .reviewpage-summary__highlight span {
    font-size: 13px;
  }
}

/* External review buttons */

.reviewpage__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2.5rem;
}

@media (max-width: 575px) {
  .reviewpage__buttons {
    flex-direction: column;
    margin-top: 2rem;
  }

  .reviewpage__buttons .btn {
    width: 100%;
  }
}

/* Trust section */

.reviewpage-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .reviewpage-trust__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 575px) {
  .reviewpage-trust__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.reviewpage-trust__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  background: #f5f7f8;
  border: 1px solid #e9edf0;
  border-radius: 16px;
}

@media (max-width: 575px) {
  .reviewpage-trust__card {
    padding: 20px;
    gap: 10px;
  }
}

.reviewpage-trust__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #e8f4fa;
  color: var(--color-primary);
}

@media (max-width: 575px) {
  .reviewpage-trust__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
}

.reviewpage-trust__card h3 {
  color: #343b40;
  font-family: var(--font-heading);
  font-size: var(--fs-5);
  font-weight: 700;
  line-height: 1.3;
}

@media (max-width: 575px) {
  .reviewpage-trust__card h3 {
    font-size: var(--fs-6);
  }
}

.reviewpage-trust__card p {
  color: #6c767d;
  font-size: 14px;
  line-height: 1.6;
}

/* ===================== */
/* // CONTACT PAGE (contactpage)
/* ===================== */

/* Contact method cards */

.contactpage-methods__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 991px) {
  .contactpage-methods__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 575px) {
  .contactpage-methods__grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

/* Desktop/tablet: vertical centered cards */

.contactpage-methods__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid #dee3e6;
  border-radius: 16px;
  transition: 0.3s;
}

.contactpage-methods__card:hover {
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--color-primary);
}

@media (max-width: 991px) {
  .contactpage-methods__card {
    padding: 24px 20px;
  }
}

/* Mobile: compact 2x2 mini-cards, icon + text stacked */

@media (max-width: 575px) {
  .contactpage-methods__card {
    align-items: flex-start;
    text-align: left;
    padding: 16px;
    gap: 10px;
    border-radius: 12px;
  }

  .contactpage-methods__card:hover {
    -webkit-transform: none;
    transform: none;
  }
}

.contactpage-methods__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #e8f4fa;
  color: var(--color-primary);
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .contactpage-methods__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }
}

@media (max-width: 575px) {
  .contactpage-methods__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .contactpage-methods__icon iconify-icon {
    width: 20px;
    height: 20px;
  }
}

.contactpage-methods__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.contactpage-methods__card h3 {
  color: #343b40;
  font-family: var(--font-heading);
  font-size: var(--fs-5);
  font-weight: 700;
  line-height: 1.3;
}

@media (max-width: 991px) {
  .contactpage-methods__card h3 {
    font-size: var(--fs-6);
  }
}

@media (max-width: 575px) {
  .contactpage-methods__card h3 {
    font-size: 15px;
    line-height: 1.25;
  }
}

.contactpage-methods__card p {
  color: #6c767d;
  font-size: 14px;
  line-height: 1.4;
}

@media (max-width: 575px) {
  .contactpage-methods__card p {
    font-size: 13px;
    line-height: 1.3;
    overflow-wrap: break-word;
    word-break: break-word;
  }
}

.contactpage-methods__action {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  margin-top: auto;
}

@media (max-width: 575px) {
  .contactpage-methods__action {
    font-size: 12px;
    margin-top: 2px;
  }
}

/* Contact main: info + form grid */

.contactpage-main__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 991px) {
  .contactpage-main__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Left info column */

.contactpage-main__info .section__title {
  align-items: flex-start;
}

.contactpage-main__info .section__title h2 {
  color: #343b40;
}

.contactpage-main__info .section__title p {
  color: #6c767d;
}

.contactpage-main__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 2rem;
}

.contactpage-main__detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contactpage-main__detail > iconify-icon {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contactpage-main__detail strong {
  display: block;
  color: #343b40;
  font-family: var(--font-heading);
  font-size: var(--fs-7);
  font-weight: 700;
  margin-bottom: 2px;
}

.contactpage-main__detail span {
  display: block;
  color: #6c767d;
  font-size: 14px;
  line-height: 1.5;
}

.contactpage-main__detail a {
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.contactpage-main__detail a:hover {
  color: var(--color-secondary);
}

.contactpage-main__license {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e9edf0;
}

.contactpage-main__license a {
  color: #adb6bd;
  font-size: 13px;
  font-weight: 500;
  transition: 0.3s;
}

.contactpage-main__license a:hover {
  color: var(--color-primary);
}

.contactpage-main__license span {
  color: #ced5da;
  font-size: 13px;
}

/* Contact form card */

.contactpage-form {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #dee3e6;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.contactpage-form__header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 32px 32px 0.75rem;
}

@media (max-width: 575px) {
  .contactpage-form__header {
    padding: 24px 20px 0;
  }
}

.contactpage-form__header span {
  color: #adb6bd;
  font-size: 14px;
  font-weight: 400;
}

.contactpage-form__header h3 {
  color: #202426;
  font-family: var(--font-heading);
  font-size: var(--fs-4);
  font-weight: 700;
  line-height: 1.2;
}

.contactpage-form__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  padding-top: 0;
}

@media (max-width: 575px) {
  .contactpage-form__body {
    padding: 24px 20px;
    padding-top: 0;
    gap: 14px;
  }
}

.contactpage-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 575px) {
  .contactpage-form__row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.contactpage-form__body .form__group label {
  color: #6c767d;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.6px;
}

.contactpage-form__body .form__group label span {
  color: #adb6bd;
  font-weight: 500;
}

.contactpage-form__body .input input,
.contactpage-form__body .input textarea {
  background: #f9f9fa;
  border: 1px solid #dee3e6;
  border-radius: 10px;
  color: #202426;
  padding: 12px 15px;
  font-size: var(--fs-6);
  font-weight: 400;
  transition: 0.2s;
  min-height: 48px;
}

.contactpage-form__body .input input:focus,
.contactpage-form__body .input textarea:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 3px var(--color-primary-20);
}

.contactpage-form__body .input input::-webkit-input-placeholder,
.contactpage-form__body .input textarea::-webkit-input-placeholder {
  color: #adb6bd;
}

.contactpage-form__body .input input::-moz-placeholder,
.contactpage-form__body .input textarea::-moz-placeholder {
  color: #adb6bd;
}

.contactpage-form__body .input input::placeholder,
.contactpage-form__body .input textarea::placeholder {
  color: #adb6bd;
}

.contactpage-form__body .input textarea {
  resize: vertical;
  min-height: 80px;
}

.contactpage-form__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #adb6bd;
  font-size: 13px;
  font-weight: 400;
}

.contactpage-form__note iconify-icon {
  flex-shrink: 0;
}

/* Error state */
.contactpage-form__body .form__group.has-error .input input {
  border-color: #ef4444;
}

.contactpage-form__body .form__group.has-error .input input:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.contactpage-form__body .form__group > .error {
  min-height: 0;
}

.contactpage-form__body .form__group > .error:empty {
  display: none;
}

/* Checkbox row */
.contactpage-form__checkbox-row {
  display: flex;
  align-items: center;
}

.contactpage-form__checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6c767d;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}

.contactpage-form__checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
  cursor: pointer;
  flex-shrink: 0;
}

/* Submit states */
.contactpage-form__submit-text,
.contactpage-form__submit-loading {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.contactpage-form__submit-loading .calc__spinner {
  width: 18px;
  height: 18px;
  border-width: 2px;
  border-color: rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
}

/* General error */
.contactpage-form__error {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #fef2f2;
  border-radius: 10px;
  color: #ef4444;
  font-size: 13px;
  text-align: center;
  margin-top: 1rem;
}

.contactpage-form__error.hidden {
  display: none;
}

.contactpage-form .hidden {
  display: none !important;
}

/* Success state */
.contactpage-form__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 1rem;
}

.contactpage-form__success.hidden {
  display: none;
}

.contactpage-form__success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0dde34;
  color: #fff;
  margin-bottom: 1rem;
}

.contactpage-form__success h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #202426;
  margin: 0 0 0.5rem;
}

.contactpage-form__success p {
  font-size: 14px;
  color: #6c767d;
  line-height: 1.5;
  max-width: 300px;
  margin: 0;
}

/* Trust strip */

.contactpage-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .contactpage-trust__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 575px) {
  .contactpage-trust__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.contactpage-trust__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px;
  background: #f5f7f8;
  border: 1px solid #e9edf0;
  border-radius: 14px;
}

@media (max-width: 575px) {
  .contactpage-trust__item {
    padding: 18px;
    gap: 12px;
  }
}

.contactpage-trust__item > iconify-icon {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contactpage-trust__item strong {
  display: block;
  color: #343b40;
  font-family: var(--font-heading);
  font-size: var(--fs-7);
  font-weight: 700;
  margin-bottom: 2px;
}

.contactpage-trust__item span {
  color: #6c767d;
  font-size: 13px;
  line-height: 1.5;
}

/* FAQ teaser */

.contactpage-faq__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 40px;
  background: var(--white);
  border: 1px solid #dee3e6;
  border-radius: 16px;
}

@media (max-width: 767px) {
  .contactpage-faq__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 24px;
  }

  .contactpage-faq__content .btn {
    width: 100%;
    text-align: center;
  }
}

.contactpage-faq__info h2 {
  color: #343b40;
  font-family: var(--font-heading);
  font-size: var(--fs-4);
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}

.contactpage-faq__info p {
  color: #6c767d;
  font-size: var(--fs-6);
  line-height: 1.5;
  max-width: 520px;
}

@media (max-width: 575px) {
  .contactpage-faq__info h2 {
    font-size: var(--fs-5);
  }

  .contactpage-faq__info p {
    font-size: 14px;
  }
}

/* Google Map */

.contactpage-map__wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #dee3e6;
}

.contactpage-map__wrap iframe {
  display: block;
  width: 100%;
  height: 450px;
}

@media (max-width: 767px) {
  .contactpage-map__wrap iframe {
    height: 320px;
  }
}

@media (max-width: 575px) {
  .contactpage-map__wrap iframe {
    height: 260px;
  }

  .contactpage-map__wrap {
    border-radius: 12px;
  }
}

/* ===================== */
/* // STATIC LANDING — FEATURES GRID
/* ===================== */

.slanding-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .slanding-features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 575px) {
  .slanding-features__grid {
    grid-template-columns: 1fr;
  }
}

.slanding-features__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 32px 24px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid #dee3e6;
  transition: 0.3s;
}

.slanding-features__card:hover {
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

@media (max-width: 575px) {
  .slanding-features__card {
    padding: 24px 20px;
  }

  .slanding-features__card:hover {
    -webkit-transform: none;
    transform: none;
    box-shadow: none;
  }
}

.slanding-features__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #e8f4fa;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.slanding-features__card h4 {
  color: #343b40;
  font-family: var(--font-heading);
  font-size: var(--fs-6);
  font-weight: 700;
  line-height: 1.3;
}

.slanding-features__card p {
  color: #6c767d;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

/* ===================== */
/* // STATIC LANDING — COMPARISON TABLE
/* ===================== */

.slanding-compare__wrap {
  max-width: 840px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #dee3e6;
}

.slanding-compare__table {
  width: 100%;
  border-collapse: collapse;
}

.slanding-compare__table thead {
  background: #f5f7f8;
}

.slanding-compare__table th {
  color: #343b40;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid #dee3e6;
}

.slanding-compare__them-col {
  background: #fef2f2;
  color: #dc2626;
}

.slanding-compare__us-col {
  background: #ecfdf5;
  color: #059669;
}

.slanding-compare__table td {
  color: #6c767d;
  font-size: var(--fs-7);
  padding: 16px 24px;
  border-bottom: 1px solid #f0f2f4;
}

.slanding-compare__table tbody tr:last-child td {
  border-bottom: none;
}

.slanding-compare__table td:first-child {
  color: #343b40;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
}

.slanding-compare__bad {
  color: #dc2626;
  font-weight: 500;
}

.slanding-compare__good {
  color: #059669;
  font-weight: 600;
}

@media (max-width: 767px) {
  .slanding-compare__table thead {
    display: none;
  }

  .slanding-compare__table,
  .slanding-compare__table tbody,
  .slanding-compare__table tr {
    display: block;
  }

  .slanding-compare__table tr {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f2f4;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .slanding-compare__table tbody tr:last-child {
    border-bottom: none;
  }

  .slanding-compare__table td {
    padding: 0;
    border-bottom: none;
  }

  .slanding-compare__table td:first-child {
    grid-column: 1 / -1;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #adb6bd;
    margin-bottom: 4px;
  }

  .slanding-compare__table td:nth-child(2)::before,
  .slanding-compare__table td:nth-child(3)::before {
    display: block;
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
  }

  .slanding-compare__table td:nth-child(2)::before {
    content: "Typical Brokers";
    color: #dc2626;
  }

  .slanding-compare__table td:nth-child(3)::before {
    content: "SendMyRide";
    color: #059669;
  }
}

@media (max-width: 575px) {
  .slanding-compare__table th,
  .slanding-compare__table td {
    padding: 14px 18px;
    font-size: 14px;
  }

  .slanding-compare__table tr {
    padding: 14px 16px;
  }
}

/* ===================== */
/* // ABOUT PAGE
/* ===================== */

/* About Story */

.about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 991px) {
  .about-story__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.about-story__info h3,
.about-story__info .section__label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: var(--fs-6);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #6c767d;
  margin-bottom: 16px;
}

.about-story__info h2 {
  color: #343b40;
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1.2px;
  margin-bottom: 24px;
}

@media (max-width: 991px) {
  .about-story__info h2 {
    font-size: var(--fs-3);
    letter-spacing: -1px;
  }
}

@media (max-width: 575px) {
  .about-story__info h2 {
    font-size: var(--fs-4);
    letter-spacing: -0.5px;
    margin-bottom: 20px;
  }
}

.about-story__info p {
  color: #6c767d;
  font-size: var(--fs-6);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 16px;
}

@media (max-width: 575px) {
  .about-story__info p {
    font-size: 15px;
    line-height: 1.65;
  }
}

.about-story__info p:last-child {
  margin-bottom: 0;
}

.about-story__highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-story__highlight {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: #f5f7f8;
  border-radius: 12px;
  border: 1px solid #e9edf0;
  transition: 0.3s;
}

.about-story__highlight:hover {
  border-color: var(--color-primary-20);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

@media (max-width: 575px) {
  .about-story__highlight {
    padding: 16px 18px;
    gap: 14px;
  }

  .about-story__highlight:hover {
    -webkit-transform: none;
    transform: none;
    box-shadow: none;
  }
}

.about-story__highlight iconify-icon {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-story__highlight strong {
  display: block;
  color: #343b40;
  font-family: var(--font-heading);
  font-size: var(--fs-6);
  font-weight: 700;
  margin-bottom: 4px;
}

.about-story__highlight span {
  color: #6c767d;
  font-size: 14px;
  line-height: 1.5;
}

/* About Diff — feature grid */

.about-diff__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .about-diff__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 575px) {
  .about-diff__grid {
    grid-template-columns: 1fr;
  }
}

.about-diff__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #dee3e6;
  transition: 0.3s;
}

.about-diff__card:hover {
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

@media (max-width: 575px) {
  .about-diff__card {
    padding: 24px 20px;
  }

  .about-diff__card:hover {
    -webkit-transform: none;
    transform: none;
    box-shadow: none;
  }
}

.about-diff__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #ebf8ff;
  color: var(--color-primary);
  font-size: 26px;
  flex-shrink: 0;
  margin-bottom: 4px;
}

.about-diff__card h4 {
  color: #343b40;
  font-family: var(--font-heading);
  font-size: var(--fs-6);
  font-weight: 700;
  line-height: 1.3;
}

.about-diff__card p {
  color: #6c767d;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

/* About Process — how we work steps */

.about-process__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .about-process__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 767px) {
  .about-process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .about-process__grid {
    grid-template-columns: 1fr;
  }
}

.about-process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 28px 20px;
  background: #f5f7f8;
  border-radius: 16px;
  border: 1px solid #e9edf0;
  transition: 0.3s;
}

.about-process__step:hover {
  border-color: var(--color-primary-20);
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

@media (max-width: 575px) {
  .about-process__step {
    padding: 24px 20px;
  }

  .about-process__step:hover {
    -webkit-transform: none;
    transform: none;
    box-shadow: none;
  }
}

.about-process__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
}

.about-process__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #ebf8ff;
  color: var(--color-primary);
  font-size: 24px;
}

.about-process__step h4 {
  color: #343b40;
  font-family: var(--font-heading);
  font-size: var(--fs-6);
  font-weight: 700;
}

.about-process__step p {
  color: #6c767d;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

/* About Trust */

.about-trust {
  background-color: var(--bg-primary-inv);
  background-image: url("../img/bg_b2b.jpg");
  background-size: cover;
  background-position: center;
}

.about-trust > .container {
  position: relative;
  z-index: 1;
}

.about-trust .section__title h2 {
  color: var(--white);
}

.about-trust__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

@media (max-width: 991px) {
  .about-trust__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 767px) {
  .about-trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .about-trust__grid {
    grid-template-columns: 1fr;
  }
}

.about-trust__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 32px 20px;
  background: #2a2e31;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s;
}

.about-trust__card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {
  .about-trust__card {
    padding: 24px 20px;
  }

  .about-trust__card:hover {
    -webkit-transform: none;
    transform: none;
    box-shadow: none;
  }
}

.about-trust__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--white);
  margin-bottom: 4px;
}

.about-trust__card h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: var(--fs-6);
  font-weight: 700;
}

.about-trust__card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

/* About Experience */

.about-exp__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 991px) {
  .about-exp__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.about-exp__info h3,
.about-exp__info .section__label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: var(--fs-6);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #6c767d;
  margin-bottom: 16px;
}

.about-exp__info h2 {
  color: #343b40;
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1.2px;
  margin-bottom: 24px;
}

@media (max-width: 991px) {
  .about-exp__info h2 {
    font-size: var(--fs-3);
    letter-spacing: -1px;
  }
}

@media (max-width: 575px) {
  .about-exp__info h2 {
    font-size: var(--fs-4);
    letter-spacing: -0.5px;
    margin-bottom: 20px;
  }
}

.about-exp__info p {
  color: #6c767d;
  font-size: var(--fs-6);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 16px;
}

@media (max-width: 575px) {
  .about-exp__info p {
    font-size: 15px;
    line-height: 1.65;
  }
}

.about-exp__info p:last-child {
  margin-bottom: 0;
}

.about-exp__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-exp__feature {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #dee3e6;
  transition: 0.3s;
}

.about-exp__feature:hover {
  border-color: var(--color-primary-20);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

@media (max-width: 575px) {
  .about-exp__feature {
    padding: 16px 18px;
    gap: 14px;
  }

  .about-exp__feature:hover {
    -webkit-transform: none;
    transform: none;
    box-shadow: none;
  }
}

.about-exp__feature iconify-icon {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-exp__feature strong {
  display: block;
  color: #343b40;
  font-family: var(--font-heading);
  font-size: var(--fs-6);
  font-weight: 700;
  margin-bottom: 4px;
}

.about-exp__feature span {
  color: #6c767d;
  font-size: 14px;
  line-height: 1.5;
}

/* About Links — internal navigation */

.about-links__content {
  max-width: 840px;
  margin: 0 auto;
}

.about-links__title {
  color: #343b40;
  font-family: var(--font-heading);
  font-size: var(--fs-5);
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.about-links__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 767px) {
  .about-links__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .about-links__grid {
    grid-template-columns: 1fr;
  }
}

.about-links__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #dee3e6;
  color: #343b40;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  transition: 0.2s;
}

.about-links__item:hover {
  border-color: var(--color-primary);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.about-links__item iconify-icon:first-child {
  color: var(--color-primary);
  flex-shrink: 0;
}

.about-links__item span {
  flex: 1;
}

.about-links__arrow {
  color: #adb6bd;
  flex-shrink: 0;
  transition: 0.2s;
}

.about-links__item:hover .about-links__arrow {
  color: var(--color-primary);
  -webkit-transform: translateX(2px);
  transform: translateX(2px);
}

/* ===================== */
/* // STATIC SIMPLE — MINIMAL CTA
/* ===================== */

.static-simplecta__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 840px;
  margin: 0 auto;
}

.static-simplecta__info p {
  color: #6c767d;
  font-size: var(--fs-6);
  line-height: 1.5;
  margin: 0;
}

.static-simplecta__info strong {
  color: #343b40;
}

@media (max-width: 575px) {
  .static-simplecta__content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .static-simplecta__content .btn {
    width: 100%;
  }
}

/* ===================== */
/* // STATE LANDING — ROUTES GRID
/* ===================== */

.state-routes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 991px) {
  .state-routes__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 575px) {
  .state-routes__grid {
    grid-template-columns: 1fr;
  }
}

.state-routes__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid #dee3e6;
  transition: 0.3s;
}

.state-routes__card:hover {
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

@media (max-width: 575px) {
  .state-routes__card {
    padding: 20px;
  }

  .state-routes__card:hover {
    -webkit-transform: none;
    transform: none;
    box-shadow: none;
  }
}

.state-routes__card-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.state-routes__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #e8f4fa;
  color: var(--color-primary);
  flex-shrink: 0;
}

.state-routes__card h4 {
  color: #343b40;
  font-family: var(--font-heading);
  font-size: var(--fs-6);
  font-weight: 700;
  line-height: 1.3;
}

.state-routes__card p {
  color: #6c767d;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

/* ===================== */
/* // STATE LANDING — PRICING FACTORS
/* ===================== */

.state-factors__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .state-factors__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 575px) {
  .state-factors__grid {
    grid-template-columns: 1fr;
  }
}

.state-factors__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid #dee3e6;
}

@media (max-width: 575px) {
  .state-factors__item {
    padding: 20px;
  }
}

.state-factors__item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #e8f4fa;
  color: var(--color-primary);
  flex-shrink: 0;
}

.state-factors__item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.state-factors__item h4 {
  color: #343b40;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.state-factors__item p {
  color: #6c767d;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

/* ===================== */
/* // STATE LANDING — SERVICE AREAS
/* ===================== */

.state-areas__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.state-areas__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid #dee3e6;
  border-radius: 100px;
  color: #343b40;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.state-areas__tag:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.state-areas__tag iconify-icon {
  color: var(--color-primary);
  font-size: 16px;
}

@media (max-width: 575px) {
  .state-areas__tags {
    gap: 8px;
  }

  .state-areas__tag {
    padding: 8px 16px;
    font-size: 13px;
  }
}

/* ===================== */
/* // STATE LANDING — TRANSPORT COMPARISON
/* ===================== */

.state-transport__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 840px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .state-transport__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.state-transport__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid #dee3e6;
  transition: 0.3s;
}

.state-transport__card:hover {
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

@media (max-width: 575px) {
  .state-transport__card {
    padding: 24px 20px;
  }

  .state-transport__card:hover {
    -webkit-transform: none;
    transform: none;
    box-shadow: none;
  }
}

.state-transport__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #e8f4fa;
  color: var(--color-primary);
}

.state-transport__card h4 {
  color: #343b40;
  font-family: var(--font-heading);
  font-size: var(--fs-5);
  font-weight: 700;
  line-height: 1.3;
}

.state-transport__card p {
  color: #6c767d;
  font-size: var(--fs-6);
  font-weight: 400;
  line-height: 1.6;
}

@media (max-width: 575px) {
  .state-transport__card h4 {
    font-size: var(--fs-6);
  }

  .state-transport__card p {
    font-size: 15px;
  }
}

.state-transport__card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.state-transport__card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #6c767d;
  font-size: 14px;
  line-height: 1.5;
}

.state-transport__card ul li iconify-icon {
  color: var(--color-primary);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===================== */
/* // STATE LANDING — HERO WITH FORM (state pages)
/* ===================== */

.statehero {
  position: relative;
  background-color: var(--bg-primary-inv);
  background-image: url("../img/bg_hero.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  overflow: hidden;
  flex-shrink: 0;
}

.statehero > .container {
  position: relative;
  z-index: 1;
}

.statehero__content {
  display: flex;
  align-items: center;
  gap: 64px;
  padding-top: 48px;
  padding-bottom: 64px;
}

@media (max-width: 991px) {
  .statehero__content {
    flex-direction: column;
    padding-top: 32px;
    padding-bottom: 3rem;
    gap: 2.5rem;
  }
}

@media (max-width: 575px) {
  .statehero__content {
    padding-top: 24px;
    padding-bottom: 2.5rem;
    gap: 2rem;
  }
}

.statehero__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
  min-width: 0;
}

.statehero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
}

.statehero__breadcrumb a {
  color: rgba(255, 255, 255, 0.4);
  transition: 0.3s;
}

.statehero__breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.statehero__breadcrumb-sep {
  color: rgba(255, 255, 255, 0.2);
}

.statehero__breadcrumb-current {
  color: rgba(255, 255, 255, 0.7);
}

.statehero__info h1 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1.5px;
}

@media (max-width: 991px) {
  .statehero__info h1 {
    font-size: var(--fs-3);
    letter-spacing: -1px;
  }
}

@media (max-width: 575px) {
  .statehero__info h1 {
    font-size: 28px;
    letter-spacing: -0.8px;
  }
}

.statehero__info h1 span {
  color: #6ccaf4;
}

.statehero__desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--fs-6);
  font-weight: 400;
  line-height: 1.6;
  max-width: 520px;
}

@media (max-width: 575px) {
  .statehero__desc {
    font-size: 15px;
    line-height: 1.55;
  }
}

.statehero__trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 575px) {
  .statehero__trust {
    gap: 0.5rem 1rem;
  }
}

.statehero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.statehero__trust-item iconify-icon {
  color: #0dde34;
  font-size: 14px;
}

@media (max-width: 575px) {
  .statehero__trust-item {
    font-size: 13px;
    gap: 6px;
  }
}

.statehero__buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 4px;
}

@media (max-width: 575px) {
  .statehero__buttons {
    flex-direction: column;
    width: 100%;
  }

  .statehero__buttons .btn {
    width: 100%;
    text-align: center;
  }
}

.statehero__form {
  width: 420px;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid #dee3e6;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

@media (max-width: 991px) {
  .statehero__form {
    width: 100%;
    max-width: 520px;
  }
}

/* ===================== */
/* // STATE LANDING — OTHER STATES GRID
/* ===================== */

.state-links__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

@media (max-width: 991px) {
  .state-links__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .state-links__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575px) {
  .state-links__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

.state-links__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid #dee3e6;
  border-radius: 10px;
  color: #343b40;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  min-height: 44px;
}

.state-links__item:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.state-links__item iconify-icon {
  color: var(--color-primary);
  font-size: 16px;
  flex-shrink: 0;
}

@media (max-width: 575px) {
  .state-links__item {
    padding: 10px 12px;
    font-size: 13px;
    gap: 6px;
  }

  .state-links__item:hover {
    -webkit-transform: none;
    transform: none;
    box-shadow: none;
  }
}

/* ===================== */
/* // B2B PAGE — Partners
/* ===================== */

.b2bpage-partners__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

@media (max-width: 575px) {
  .b2bpage-partners__grid {
    gap: 24px;
  }
}

.b2bpage-partners__logo {
  max-height: 44px;
  width: auto;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  opacity: 0.5;
  transition: 0.3s;
}

.b2bpage-partners__logo:hover {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  opacity: 1;
}

@media (max-width: 575px) {
  .b2bpage-partners__logo {
    max-height: 32px;
    max-width: 80px;
  }
}

.b2bpage-partners__note {
  text-align: center;
  color: #6c767d;
  font-size: var(--fs-7);
  font-weight: 400;
  margin-top: 2rem;
}

@media (max-width: 575px) {
  .b2bpage-partners__note {
    margin-top: 1.5rem;
    font-size: 13px;
  }
}

/* ===================== */
/* // B2B PAGE — Case Studies
/* ===================== */

.b2bpage-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 991px) {
  .b2bpage-cases__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.b2bpage-cases__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid #dee3e6;
}

@media (max-width: 575px) {
  .b2bpage-cases__card {
    padding: 24px 20px;
    gap: 16px;
  }
}

.b2bpage-cases__header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.b2bpage-cases__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #e8f4fa;
  color: var(--color-primary);
  flex-shrink: 0;
}

.b2bpage-cases__header h4 {
  color: #343b40;
  font-family: var(--font-heading);
  font-size: var(--fs-6);
  font-weight: 700;
  line-height: 1.3;
}

.b2bpage-cases__role {
  color: #6c767d;
  font-size: var(--fs-7);
  font-weight: 400;
}

.b2bpage-cases__metrics {
  display: flex;
  gap: 24px;
}

@media (max-width: 575px) {
  .b2bpage-cases__metrics {
    gap: 16px;
  }
}

.b2bpage-cases__metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.b2bpage-cases__metric strong {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: var(--fs-4);
  font-weight: 700;
  line-height: 1;
}

.b2bpage-cases__metric span {
  color: #6c767d;
  font-size: 13px;
  font-weight: 400;
}

.b2bpage-cases__quote {
  color: #495157;
  font-size: var(--fs-7);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  border: 0;
}

/* ===================== */
/* // B2B PAGE — Comparison Table
/* ===================== */

.b2bpage-compare__wrap {
  max-width: 920px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.b2bpage-compare__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #dee3e6;
  background: var(--white);
}

.b2bpage-compare__table thead {
  background: #f5f7f8;
}

.b2bpage-compare__table th {
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-size: var(--fs-7);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
  border-bottom: 1px solid #dee3e6;
}

.b2bpage-compare__th-feature {
  color: #343b40;
  width: 30%;
}

.b2bpage-compare__th-them {
  color: #6c767d;
  width: 35%;
}

.b2bpage-compare__th-us {
  color: var(--color-primary);
  width: 35%;
}

.b2bpage-compare__table td {
  padding: 14px 20px;
  font-size: var(--fs-7);
  font-weight: 500;
  color: #343b40;
  border-bottom: 1px solid #f0f2f4;
  vertical-align: middle;
}

.b2bpage-compare__table tr:last-child td {
  border-bottom: 0;
}

.b2bpage-compare__cell-them {
  color: #6c767d;
  font-weight: 400;
}

.b2bpage-compare__cell-them iconify-icon {
  color: #ef4444;
  margin-right: 6px;
  vertical-align: -2px;
}

.b2bpage-compare__cell-us {
  color: #343b40;
  font-weight: 600;
}

.b2bpage-compare__cell-us iconify-icon {
  color: #10b981;
  margin-right: 6px;
  vertical-align: -2px;
}

@media (max-width: 575px) {
  .b2bpage-compare__table th,
  .b2bpage-compare__table td {
    padding: 12px 14px;
    font-size: 13px;
  }

  .b2bpage-compare__th-feature {
    width: 28%;
  }
}

/* ===================== */
/* // REVIEWS — Aggregate Rating Header
/* ===================== */

.reviews__aggregate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 2rem;
  padding: 20px 32px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid #dee3e6;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.reviews__aggregate-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.reviews__aggregate-number {
  font-family: var(--font-heading);
  font-size: var(--fs-2);
  font-weight: 700;
  color: #343b40;
  line-height: 1;
}

.reviews__aggregate-stars {
  color: #fbbf24;
  font-size: 20px;
  letter-spacing: 2px;
}

.reviews__aggregate-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reviews__aggregate-info > span {
  color: #6c767d;
  font-size: var(--fs-7);
}

.reviews__aggregate-badges {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviews__aggregate-badges a {
  display: flex;
  align-items: center;
  opacity: 0.5;
  transition: 0.3s;
}

.reviews__aggregate-badges a:hover {
  opacity: 1;
}

@media (max-width: 575px) {
  .reviews__aggregate {
    padding: 16px 20px;
    gap: 16px;
  }

  .reviews__aggregate-number {
    font-size: var(--fs-3);
  }
}

/* ===================== */
/* // B2B PAGE — Onboarding Timeline
/* ===================== */

.b2bpage-onboard__timeline {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.b2bpage-onboard__timeline::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 16.6%;
  right: 16.6%;
  height: 2px;
  background: #dee3e6;
}

.b2bpage-onboard__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

.b2bpage-onboard__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.b2bpage-onboard__day {
  font-family: var(--font-heading);
  font-size: var(--fs-7);
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.b2bpage-onboard__dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--color-primary);
}

.b2bpage-onboard__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 240px;
}

.b2bpage-onboard__body h4 {
  color: #343b40;
  font-family: var(--font-heading);
  font-size: var(--fs-6);
  font-weight: 700;
}

.b2bpage-onboard__body p {
  color: #6c767d;
  font-size: var(--fs-7);
  line-height: 1.5;
}

.b2bpage-onboard__note {
  text-align: center;
  color: #6c767d;
  font-size: var(--fs-7);
  margin-top: 2rem;
}

@media (max-width: 767px) {
  .b2bpage-onboard__timeline {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding-left: 40px;
  }

  .b2bpage-onboard__timeline::before {
    top: 0;
    bottom: 0;
    left: 8px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .b2bpage-onboard__step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
  }

  .b2bpage-onboard__marker {
    flex-direction: row;
    position: absolute;
    left: -40px;
    top: 0;
    margin-bottom: 0;
    gap: 0;
  }

  .b2bpage-onboard__day {
    display: none;
  }

  .b2bpage-onboard__dot {
    width: 16px;
    height: 16px;
    border-width: 3px;
  }

  .b2bpage-onboard__body {
    max-width: none;
  }

  .b2bpage-onboard__body h4::before {
    content: attr(data-day);
    color: var(--color-primary);
    font-size: var(--fs-7);
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
}

/* ===================== */
/* // B2B PAGE — Platform & Technology
/* ===================== */

.b2bpage-platform__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 991px) {
  .b2bpage-platform__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.b2bpage-platform__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.b2bpage-platform__info .section__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: var(--fs-7);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.b2bpage-platform__info .section__label .divider {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
}

.b2bpage-platform__info h2 {
  color: #343b40;
  font-family: var(--font-heading);
  font-size: var(--fs-3);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
}

@media (max-width: 575px) {
  .b2bpage-platform__info h2 {
    font-size: var(--fs-4);
  }
}

.b2bpage-platform__info > p {
  color: #6c767d;
  font-size: var(--fs-6);
  line-height: 1.6;
}

.b2bpage-platform__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.b2bpage-platform__feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.b2bpage-platform__feature iconify-icon {
  color: var(--color-primary);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.b2bpage-platform__feature strong {
  display: block;
  color: #343b40;
  font-family: var(--font-heading);
  font-size: var(--fs-7);
  font-weight: 700;
  margin-bottom: 2px;
}

.b2bpage-platform__feature span {
  color: #6c767d;
  font-size: 13px;
  line-height: 1.4;
}

/* Platform mockup */

.b2bpage-platform__mockup {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid #dee3e6;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.b2bpage-platform__mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: #343b40;
}

.b2bpage-platform__mockup-dots {
  display: flex;
  gap: 6px;
}

.b2bpage-platform__mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.b2bpage-platform__mockup-dots span:first-child {
  background: #ef4444;
}

.b2bpage-platform__mockup-dots span:nth-child(2) {
  background: #fbbf24;
}

.b2bpage-platform__mockup-dots span:nth-child(3) {
  background: #10b981;
}

.b2bpage-platform__mockup-title {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 500;
}

.b2bpage-platform__mockup-body {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.b2bpage-platform__mockup-row {
  display: flex;
  gap: 16px;
}

.b2bpage-platform__mockup-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 12px;
  background: #f5f7f8;
  border-radius: 10px;
}

.b2bpage-platform__mockup-stat-value {
  font-family: var(--font-heading);
  font-size: var(--fs-4);
  font-weight: 700;
  color: var(--color-primary);
}

.b2bpage-platform__mockup-stat-label {
  font-size: 12px;
  color: #6c767d;
  font-weight: 500;
}

.b2bpage-platform__mockup-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.b2bpage-platform__mockup-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #f9f9fa;
  border-radius: 8px;
  font-size: 13px;
  color: #343b40;
}

.b2bpage-platform__mockup-item iconify-icon {
  color: #6c767d;
  flex-shrink: 0;
}

.b2bpage-platform__mockup-item span:first-of-type {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.b2bpage-platform__mockup-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}

.b2bpage-platform__mockup-badge.green {
  background: #ecfdf5;
  color: #059669;
}

.b2bpage-platform__mockup-badge.blue {
  background: #e8f4fa;
  color: var(--color-primary);
}

@media (max-width: 575px) {
  .b2bpage-platform__mockup-body {
    padding: 16px 14px;
    gap: 14px;
  }

  .b2bpage-platform__mockup-stat {
    padding: 12px 8px;
  }

  .b2bpage-platform__mockup-stat-value {
    font-size: var(--fs-5);
  }

  .b2bpage-platform__mockup-item span:first-of-type {
    font-size: 12px;
  }
}

/* ===================== */
/* // B2B PAGE — Coverage Map
/* ===================== */

.b2bpage-coverage__map {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.b2bpage-coverage__visual {
  position: relative;
}

.b2bpage-coverage__visual img {
  width: 100%;
  height: auto;
  display: block;
}

.b2bpage-coverage__corridors {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.b2bpage-coverage__corridor {
  position: absolute;
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--color-primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(11, 121, 181, 0.3);
}

@media (max-width: 575px) {
  .b2bpage-coverage__corridor {
    font-size: 9px;
    padding: 3px 7px;
  }
}

.b2bpage-coverage__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 2rem;
}

@media (max-width: 575px) {
  .b2bpage-coverage__badges {
    gap: 16px;
    flex-direction: column;
    align-items: center;
  }
}

.b2bpage-coverage__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #343b40;
  font-size: var(--fs-7);
}

.b2bpage-coverage__badge iconify-icon {
  color: var(--color-primary);
  flex-shrink: 0;
}

.b2bpage-coverage__badge strong {
  font-weight: 700;
}

/* ===================== */
/* // B2B PAGE — Route Hub
/* ===================== */

.b2bpage-routes__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 991px) {
  .b2bpage-routes__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575px) {
  .b2bpage-routes__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

.b2bpage-routes__card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid #dee3e6;
  border-radius: 12px;
  transition: 0.3s;
}

.b2bpage-routes__card:hover {
  border-color: var(--color-primary);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

@media (max-width: 575px) {
  .b2bpage-routes__card {
    padding: 12px 14px;
  }

  .b2bpage-routes__card:hover {
    -webkit-transform: none;
    transform: none;
    box-shadow: none;
  }
}

.b2bpage-routes__card-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.b2bpage-routes__card-header iconify-icon {
  color: var(--color-primary);
  flex-shrink: 0;
}

.b2bpage-routes__card h4 {
  color: #343b40;
  font-family: var(--font-heading);
  font-size: var(--fs-7);
  font-weight: 700;
}

.b2bpage-routes__card:hover h4 {
  color: var(--color-primary);
}

.b2bpage-routes__card > span {
  color: #6c767d;
  font-size: 13px;
  padding-left: 24px;
}

/* ===================== */
/* // B2B PAGE — Compliance & Risk
/* ===================== */

.b2bpage-compliance__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

@media (max-width: 991px) {
  .b2bpage-compliance__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.b2bpage-compliance__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.b2bpage-compliance__info .section__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: var(--fs-7);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.b2bpage-compliance__info .section__label .divider {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
}

.b2bpage-compliance__info h2 {
  color: #343b40;
  font-family: var(--font-heading);
  font-size: var(--fs-3);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
}

@media (max-width: 575px) {
  .b2bpage-compliance__info h2 {
    font-size: var(--fs-4);
  }
}

.b2bpage-compliance__info > p {
  color: #6c767d;
  font-size: var(--fs-6);
  line-height: 1.6;
}

.b2bpage-compliance__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.b2bpage-compliance__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: #f5f7f8;
  border-radius: 12px;
}

@media (max-width: 575px) {
  .b2bpage-compliance__item {
    padding: 16px;
  }
}

.b2bpage-compliance__item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #e8f4fa;
  color: var(--color-primary);
  flex-shrink: 0;
}

.b2bpage-compliance__item strong {
  display: block;
  color: #343b40;
  font-family: var(--font-heading);
  font-size: var(--fs-7);
  font-weight: 700;
  margin-bottom: 4px;
}

.b2bpage-compliance__item span {
  color: #6c767d;
  font-size: 13px;
  line-height: 1.5;
}

/* ===================== */
/* // VIDEO SHOWCASE
/* ===================== */

.showcase__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 991px) {
  .showcase__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.showcase__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.showcase__info .section__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: var(--fs-7);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.showcase__info .section__label .divider {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
}

.showcase__info h2 {
  color: #343b40;
  font-family: var(--font-heading);
  font-size: var(--fs-3);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
}

@media (max-width: 575px) {
  .showcase__info h2 {
    font-size: var(--fs-4);
    letter-spacing: -0.5px;
  }
}

.showcase__info > p {
  color: #6c767d;
  font-size: var(--fs-6);
  line-height: 1.6;
}

.showcase__highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.showcase__highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #343b40;
  font-size: var(--fs-7);
  font-weight: 500;
}

.showcase__highlight iconify-icon {
  color: var(--color-primary);
  font-size: 18px;
  flex-shrink: 0;
}

.showcase__video {
  position: relative;
}

.showcase__video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  background: #202426;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.showcase__video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 575px) {
  .showcase__video-wrap {
    border-radius: 12px;
  }
}

/* ===================== */
/* // B2B PAGE — Why
/* ===================== */

.b2bpage-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 991px) {
  .b2bpage-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .b2bpage-why__grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.b2bpage-why__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 32px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid #dee3e6;
}

@media (max-width: 575px) {
  .b2bpage-why__card {
    padding: 20px;
    gap: 12px;
  }
}

.b2bpage-why__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #e8f4fa;
  flex-shrink: 0;
}

.b2bpage-why__icon iconify-icon {
  font-size: 26px;
  color: var(--color-primary);
}

@media (max-width: 575px) {
  .b2bpage-why__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .b2bpage-why__icon iconify-icon {
    font-size: 22px;
  }
}

.b2bpage-why__card h4 {
  color: #343b40;
  font-family: var(--font-heading);
  font-size: var(--fs-65);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.b2bpage-why__card p {
  color: #6c767d;
  font-size: var(--fs-7);
  font-weight: 400;
  line-height: 1.6;
}

/* ===================== */
/* // B2B PAGE — Serve
/* ===================== */

.b2bpage-serve {
  position: relative;
  overflow: hidden;
  background-image: url("../img/bg_b2b.jpg");
  background-size: cover;
  background-position: center;
}

.b2bpage-serve > .container {
  position: relative;
  z-index: 1;
}

.b2bpage-serve .section__title h2 {
  color: var(--white);
}

.b2bpage-serve .section__title p {
  color: rgba(255, 255, 255, 0.5);
}

.b2bpage-serve__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 991px) {
  .b2bpage-serve__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .b2bpage-serve__grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.b2bpage-serve__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 32px;
  background: #2a2e31;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 575px) {
  .b2bpage-serve__card {
    padding: 20px;
    gap: 12px;
  }
}

.b2bpage-serve__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 10px;
  background: var(--color-primary);
}

.b2bpage-serve__icon iconify-icon {
  font-size: 32px;
  color: var(--white);
}

@media (max-width: 575px) {
  .b2bpage-serve__icon {
    width: 48px;
    height: 48px;
  }

  .b2bpage-serve__icon iconify-icon {
    font-size: 24px;
  }
}

.b2bpage-serve__card h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: var(--fs-5);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.b2bpage-serve__card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--fs-7);
  font-weight: 400;
  line-height: 1.6;
}

/* ===================== */
/* // B2B PAGE — Process
/* ===================== */

.b2bpage-process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 991px) {
  .b2bpage-process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .b2bpage-process__grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.b2bpage-process__step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 32px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid #dee3e6;
}

@media (max-width: 575px) {
  .b2bpage-process__step {
    padding: 20px;
    gap: 10px;
  }
}

.b2bpage-process__number {
  font-family: var(--font-heading);
  font-size: var(--fs-2);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -1px;
}

@media (max-width: 575px) {
  .b2bpage-process__number {
    font-size: var(--fs-3);
  }
}

.b2bpage-process__step h4 {
  color: #343b40;
  font-family: var(--font-heading);
  font-size: var(--fs-65);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.b2bpage-process__step p {
  color: #6c767d;
  font-size: var(--fs-7);
  font-weight: 400;
  line-height: 1.6;
}

/* ===================== */
/* // B2B PAGE — Stats
/* ===================== */

.b2bpage-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 991px) {
  .b2bpage-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .b2bpage-stats__grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.b2bpage-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 32px 16px;
}

.b2bpage-stats__value {
  color: #343b40;
  font-family: var(--font-heading);
  font-size: var(--fs-3);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1;
}

@media (max-width: 575px) {
  .b2bpage-stats__value {
    font-size: var(--fs-4);
  }
}

.b2bpage-stats__label {
  color: #6c767d;
  font-size: var(--fs-7);
  font-weight: 400;
}

/* ===================== */
/* // B2B PAGE — CTA
/* ===================== */

.b2bpage-cta {
  position: relative;
  overflow: hidden;
  background-image: url("../img/bg_b2b.jpg");
  background-size: cover;
  background-position: center;
}

.b2bpage-cta > .container {
  position: relative;
  z-index: 1;
}

.b2bpage-cta .section__title h2 {
  color: var(--white);
}

.b2bpage-cta .section__title p {
  color: rgba(255, 255, 255, 0.5);
}

.b2bpage-cta .contactpage-form {
  max-width: 480px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ===================== */
/* // B2B PAGE — FAQ
/* ===================== */

.b2bpage-faq .faq__content {
  max-width: 800px;
  margin: 0 auto;
}
