/* ─── HERO ──────────────────────────────────────────────────── */

.hero {
  position: relative;
  background-color: var(--color-bg-hero);
  padding: 0px 0 100px;
  overflow: hidden;
}

.hero__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
}

/* ─── LEFT COLUMN ───────────────────────────────────────────── */

.hero__left {
  flex: 0 0 46%;
  max-width: 46%;
}

.hero__label {
  display: block;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 68px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero__text {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 26px;
  max-width: 650px;
  margin-bottom: 40px;
}

.btn-quote {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  background-color: var(--color-accent);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 20px;
  min-width: 183px;
  text-align: center;
  line-height: 30px;
  border: none;
  border-radius: 0;
  transition: background-color 0.3s;
}

.btn-quote:hover {
  background-color: #e07820;
}

/* ─── RIGHT COLUMN ──────────────────────────────────────────── */

.hero__right {
  flex: 1;
  padding: 0px 0 0 30px;
}

.hero__image-wrap {
  position: relative;
}

.hero__right img,
.hero__img {
  max-width: 480px;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-left: 110px
}

/* Decorative squares overlapping the image */
.hero__square {
  position: absolute;
  z-index: 0;
}

/* Teal square — top-left, behind the image */
.hero__square--teal {
  position: absolute;
  top: 30px;
  left: -20px;
  width: 96px;
  height: 96px;
  background-color: #1e7ba0;
  z-index: 0;
}

/* White square — top-right, in front of the image */
.hero__square--white {
  position: absolute;
  top: 0px;
  right: -10px;
  width: 48px;
  height: 48px;
  background-color: var(--color-white);
  z-index: 2;
}

/* Orange square — bottom-right of the whole section */
.hero__square-orange {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background-color: var(--color-accent);
  z-index: 1;
}

/* ─── HERO RESPONSIVE ───────────────────────────────────────── */

@media (max-width: 900px) {
  .hero__row {
    flex-direction: column;
    gap: 50px;
  }

  .hero__left {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .hero__right {
    width: 100%;
    padding: 30px 0 0 30px;
  }

  .hero__title {
    font-size: 52px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 56px 0 80px;
  }

  .hero__container {
    padding: 0 20px;
  }

  .hero__title {
    font-size: 40px;
  }

  .hero__text {
    font-size: 17px;
    line-height: 26px;
  }

  .btn-quote {
    width: 100%;
    min-width: unset;
  }

  .hero__right {
    padding: 24px 0 0 20px;
  }

  .hero__square--teal {
    width: 64px;
    height: 64px;
    top: -20px;
    left: -20px;
  }

  .hero__square--white {
    width: 32px;
    height: 32px;
    top: -16px;
  }
}

/* ─── QUOTE BAR ─────────────────────────────────────────────── */

.quote-bar {
  position: relative;
  background-color: var(--color-primary);
  padding: 22px 0;
  overflow: hidden;
  z-index: 999;
}

/* Becomes fixed when user scrolls past it */
.quote-bar.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: var(--color-primary);
}

.quote-bar.is-sticky .quote-bar__input {
  background-color: #ffffff;
  color: #2e76af;
  border: 2px solid #2e76af;
}

.quote-bar.is-sticky .quote-bar__input::placeholder {
  color: #2e76af;
  opacity: 0.7;
}

.quote-bar__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.quote-bar__title {
  font-family: var(--font-heading);
  font-size: 33px;
  font-weight: 700;
  color: var(--color-white);
  white-space: nowrap;
  margin: 0 20px 0 0;
  flex-shrink: 0;
}

.quote-bar__fields {
  display: flex;
  gap: 12px;
  flex: 1;
}

.quote-bar__input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 10px 14px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  outline: none;
  border-radius: 0;
  transition: border-color 0.2s;
}

.quote-bar__input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.quote-bar__input:focus {
  border-color: var(--color-accent);
}

.quote-bar__btn {
  flex-shrink: 0;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  background-color: var(--color-accent);
  border: none;
  border-radius: 0;
  padding: 12px 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.3s;
}

.quote-bar__btn:hover {
  background-color: #e07820;
}

/* Decorative squares removed */

/* ─── QUOTE BAR RESPONSIVE ──────────────────────────────────── */

@media (max-width: 900px) {
  .quote-bar__container {
    flex-wrap: wrap;
    gap: 16px;
  }

  .quote-bar__title {
    font-size: 26px;
    margin: 0;
    width: 100%;
  }

  .quote-bar__fields {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .quote-bar__container {
    padding: 0 20px;
  }

  .quote-bar__fields {
    flex-direction: column;
    gap: 10px;
  }

  .quote-bar__btn {
    width: 100%;
    text-align: center;
  }
}

/* ─── SERVICES CARDS ────────────────────────────────────────── */

.services {
  position: relative;
  background-color: var(--color-white);
  padding: 60px 0 60px;
  overflow: hidden;
}

.services__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* Section header */
.services__header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 60px;
}

.services__title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 24px;
}

.services__subtitle {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-dark);
  line-height: 21px;
  max-width: 800px;
  margin: 0 auto;
}

/* Cards row */
.services__cards {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  width: 100%;
  gap: 0;
  max-width: 100%;
  margin: 0 auto;
}

.services__cards .card {
  flex: 0 1 32%;
  padding: 35px 50px;
  text-align: center;
}

.services__card {
  flex: 0 1 32%;
}

/* Individual card */
.card {
  flex: 0 1 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 35px 15px;
  background: transparent;
  border: 0;
  border-radius: 0;
  margin-bottom: 5px;
  transition: box-shadow 0.3s ease;
  cursor: default;
}

.card:hover {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.10);
}

/* Icon */
.card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  margin-bottom: 24px;
}

.card__icon img {
  display: block;
}

/* Title */
.card__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.3;
}

/* Body text */
.card__text {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-dark);
  line-height: 21px;
  text-align: center;
  margin-bottom: 20px;
  flex: 1;
}

/* "LEARN MORE →" — hidden by default, shown on card hover */
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0;
  transition: opacity 0.3s ease;
  margin-top: auto;
}

.card__arrow-icon {
  width: 16px;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.card:hover .card__link {
  opacity: 1;
}

.card:hover .card__arrow-icon {
  transform: translateX(4px);
}

/* Decorative squares */
.services__sq {
  position: absolute;
  width: 50px;
  height: 50px;
  pointer-events: none;
}

/* Orange — top-left */
.services__sq--orange {
  background-color: var(--color-accent);
  top: 0;
  left: 0;
}

/* Light blue — top-left, offset right of orange */
.services__sq--light {
  background-color: var(--color-bg-hero);
  top: 0;
  left: 50px;
}

/* Dark blue — bottom-right */
.services__sq--blue {
  background-color: var(--color-primary);
  bottom: 0;
  right: 0;
}

/* ─── SERVICES RESPONSIVE ───────────────────────────────────── */

@media (max-width: 900px) {
  .services__title {
    font-size: 28px;
  }

  .services__cards {
    gap: 20px;
  }
}

@media (max-width: 700px) {
  .services__cards {
    flex-direction: column;
    gap: 0;
  }

  .card {
    padding: 40px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .card:last-child {
    border-bottom: none;
  }

  /* Always show links on touch devices */
  .card__link {
    opacity: 1;
  }

  .services__container {
    padding: 0 20px;
  }

  .services__title {
    font-size: 24px;
  }
}

/* ─── WHY CHOOSE US ─────────────────────────────────────────── */

.choose-us {
  position: relative;
  background-color: var(--color-primary);
  padding: 80px 0 90px;
  overflow: hidden;
}

.choose-us__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.choose-us__title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 55px;
  line-height: 1.2;
}

/* Two-column list row */
.choose-us__lists {
  display: flex;
  /* gap: 60px; */
  margin: 0 auto;
  justify-content: space-around;
}

.choose-us__list {
  flex: 0 1 440px;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.choose-us__item {
  position: relative;
  padding-left: 42px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.5;
}

.choose-us__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("../assets/images/bullet-check.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

/* Decorative squares — bottom-left corner */
.choose-us__sq {
  position: absolute;
  pointer-events: none;
}

.choose-us__sq--orange {
  width: 50px;
  height: 50px;
  background-color: var(--color-accent);
  bottom: 0;
  left: 0;
}

.choose-us__sq--white {
  width: 40px;
  height: 40px;
  background-color: var(--color-white);
  bottom: 50px;
  left: 0;
}

/* ─── CHOOSE US RESPONSIVE ──────────────────────────────────── */

@media (max-width: 700px) {
  .choose-us__lists {
    flex-direction: column;
    gap: 20px;
  }

  .choose-us__title {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .choose-us__container {
    padding: 0 20px;
  }

  .choose-us {
    padding: 60px 0 80px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   COMMITMENT TO EXCELLENCE
═══════════════════════════════════════════════════════════════ */

.commitment {
  background-color: #dfeaf4;
  position: relative;
  padding: 90px 0 100px;
}

.commitment__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.commitment__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 42px;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 60px;
}

/* ── Badges row ─────────────────────────────────────────────── */

.commitment__badges {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  margin-bottom: 70px;
}

.commitment__badge img {
  height: 80px;
  width: auto;
  display: block;
}

/* ── Stats row ──────────────────────────────────────────────── */

.commitment__stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.commitment__stat {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.commitment__stat-icon {
  flex-shrink: 0;
}

.commitment__stat-icon img {
  height: 70px;
  width: auto;
  display: block;
}

.commitment__stat-text {
  display: flex;
  flex-direction: column;
}

.commitment__stat-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 30px;
  color: var(--color-primary);
  line-height: 1.1;
}

.commitment__stat-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 26px;
  color: var(--color-primary);
  line-height: 1.2;
}

/* ── Commitment responsive ──────────────────────────────────── */

@media (max-width: 768px) {
  .commitment__badges {
    gap: 24px;
  }

  .commitment__badge {
    flex: 0 1 calc(50% - 24px);
    display: flex;
    justify-content: center;
  }

  .commitment__stats {
    gap: 36px;
  }

  .commitment__stat {
    flex: 0 1 calc(50% - 36px);
  }
}

@media (max-width: 480px) {
  .commitment {
    padding: 60px 0 70px;
  }

  .commitment__title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .commitment__container {
    padding: 0 20px;
  }

  .commitment__badge {
    flex: 0 1 100%;
  }

  .commitment__stat {
    flex: 0 1 100%;
  }
}

/* ═══════════════════════════════════════════════════════════════
   FAQ ACCORDION
═══════════════════════════════════════════════════════════════ */

.faq {
  background: #ffffff;
  position: relative;
  padding: 90px 0 100px;
}

.faq__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.faq__header {
  margin-bottom: 50px;
}

.faq__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 42px;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.faq__subtitle {
  color: var(--color-dark);
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}

/* ── Two-column grid ────────────────────────────────────────── */

.faq__grid {
  display: flex;
  gap: 30px;
}

.faq__col {
  flex: 1;
  min-width: 0;
}

/* ── Accordion item ─────────────────────────────────────────── */

.faq__item {
  margin-bottom: 8px;
}

.faq__label {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #dfeaf4;
  border-radius: 5px;
  border: none;
  padding: 16px 20px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-dark);
  gap: 12px;
  transition: color 0.2s;
}

.faq__label span {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  color: #0d2136;
}

.faq__arrow {
  width: 12px;
  height: auto;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq__item.is-open .faq__arrow {
  transform: rotate(180deg);
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
  overflow: hidden;
  background: #ffffff;
}

.faq__answer-inner {
  overflow: hidden;
  padding: 0 20px;
}

.faq__answer p {
  color: var(--color-dark);
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  margin: 0;
}

/* ── Open state ─────────────────────────────────────────────── */

.faq__item.is-open .faq__label {
  color: var(--color-primary);
}

.faq__item.is-open .faq__answer {
  grid-template-rows: 1fr;
}

.faq__item.is-open .faq__answer-inner {
  padding: 16px 20px;
}

/* ── Decorative squares — top-right corner ──────────────────── */

.faq__sq {
  position: absolute;
  pointer-events: none;
}

.faq__sq--orange {
  width: 50px;
  height: 50px;
  background-color: var(--color-accent);
  top: 0;
  right: 0;
}

.faq__sq--light {
  width: 40px;
  height: 40px;
  background-color: #dfeaf4;
  top: 50px;
  right: 0;
}

/* ── FAQ responsive ─────────────────────────────────────────── */

@media (max-width: 768px) {
  .faq__grid {
    flex-direction: column;
  }

  .faq__title {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .faq {
    padding: 60px 0 70px;
  }

  .faq__container {
    padding: 0 20px;
  }

  .faq__title {
    font-size: 26px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   REVIEWS SLIDER
═══════════════════════════════════════════════════════════════ */

.reviews {
  background-color: #dfeaf4;
  background-image: url("../assets/images/mask.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  padding: 90px 0 100px;
}

.reviews__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.reviews__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 38px;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 50px;
}

/* ── Two-column layout ──────────────────────────────────────── */

.reviews__layout {
  display: flex;
  align-items: center;
  gap: 40px;
}

.reviews__slider-wrap {
  flex: 0 0 55%;
  min-width: 0;
}

.reviews__photo {
  flex: 0 0 40%;
  position: relative;
  max-height: 640px;
  overflow: hidden;
}

/* ── Cards grid ─────────────────────────────────────────────── */

.reviews__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.card-review {
  background: #ffffff;
  padding: 24px;
  min-height: 160px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-review .card-body p {
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  margin: 0;
}

.reviews__read-more {
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  white-space: nowrap;
}

.card-review .card-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.reviews__author {
  color: var(--color-dark);
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

/* ── Platform icons ─────────────────────────────────────────── */

.reviews__icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.reviews__icon--yelp {
  background-color: #d32323;
}

.reviews__icon--yelp::after {
  content: "y";
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.reviews__icon--google {
  background-color: #4285f4;
}

.reviews__icon--google::after {
  content: "G";
  color: #ffffff;
  font-size: 11px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ── Navigation arrows ──────────────────────────────────────── */

.reviews__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding: 0 4px;
}

.reviews__arrow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  line-height: 0;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.reviews__arrow:hover {
  opacity: 1;
}

/* ── Right photo ────────────────────────────────────────────── */

.reviews__img {
  /* width: 100%; */
  height: 100%;
  /* max-height: 440px; */
  object-fit: cover;
  display: block;
}

.reviews__sq {
  position: absolute;
  pointer-events: none;
}

.reviews__sq--blue {
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  top: 0;
  left: 0;
}

.reviews__sq--white {
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  top: 20px;
  left: 20px;
}

.reviews__sq--orange {
  width: 50px;
  height: 50px;
  background-color: var(--color-accent);
  bottom: 0;
  right: 0;
}

/* ── Reviews responsive ─────────────────────────────────────── */

@media (max-width: 900px) {
  .reviews__layout {
    flex-direction: column;
  }

  .reviews__slider-wrap,
  .reviews__photo {
    flex: 0 0 100%;
    width: 100%;
  }

  .reviews__photo {
    display: none;
  }

  .reviews__title {
    font-size: 28px;
  }
}

@media (max-width: 560px) {
  .reviews {
    padding: 60px 0 70px;
  }

  .reviews__container {
    padding: 0 20px;
  }

  .reviews__cards {
    grid-template-columns: 1fr;
  }

  .reviews__title {
    font-size: 24px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   TOOLS & RESOURCES
═══════════════════════════════════════════════════════════════ */

.tools {
  background: #ffffff;
  position: relative;
  padding: 90px 0 100px;
  overflow: hidden;
}

.tools__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.tools__header {
  text-align: center;
  margin-bottom: 60px;
}

.tools__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 42px;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.tools__subtitle {
  color: var(--color-dark);
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}

/* ── Cards row ──────────────────────────────────────────────── */

.tools__cards {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  width: 100%;
  gap: 0;
}

.tools__card {
  flex: 0 1 32%;
  text-align: center;
  padding: 35px 50px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}

.tools__card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.tools__card .card__icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.tools__card-title {
  color: var(--color-dark);
  text-align: center;
}

.tools__card .card__text {
  color: var(--color-dark);
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: center;
}

.tools__card .card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  color: var(--color-accent);
  font-family: var(--font-primary);
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}

.tools__card:hover .card__link {
  opacity: 1;
  visibility: visible;
}

.tools__card .card__arrow-icon {
  width: 16px;
  height: auto;
}

/* ── Decorative squares ─────────────────────────────────────── */

.tools__sq {
  position: absolute;
  pointer-events: none;
}

.tools__sq--orange-tl {
  width: 50px;
  height: 50px;
  background-color: var(--color-accent);
  top: 0;
  left: 0;
}

.tools__sq--light-tl {
  width: 40px;
  height: 40px;
  background-color: #dfeaf4;
  top: 50px;
  left: 0;
}

.tools__sq--blue-br {
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  bottom: 0;
  right: 0;
}

.tools__sq--light-br {
  width: 40px;
  height: 40px;
  background-color: #dfeaf4;
  bottom: 50px;
  right: 0;
}

/* ── Tools responsive ───────────────────────────────────────── */

@media (max-width: 768px) {
  .tools__cards {
    flex-direction: column;
    align-items: center;
  }

  .tools__card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
  }

  .tools__title {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .tools {
    padding: 60px 0 70px;
  }

  .tools__container {
    padding: 0 20px;
  }

  .tools__title {
    font-size: 26px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   DECORATIVE SQUARES — static (no motion)
═══════════════════════════════════════════════════════════════ */

.hero__square--teal,
.hero__square--white,
.hero__square-orange,
.services__sq,
.services__sq--orange,
.services__sq--blue,
.services__sq--light,
.choose-us__sq--orange,
.choose-us__sq--white,
.commitment__sq,
.faq__sq--orange,
.faq__sq--light,
.tools__sq--orange-tl,
.tools__sq--light-tl,
.tools__sq--blue-br,
.tools__sq--light-br,
.reviews__sq--blue,
.reviews__sq--white,
.reviews__sq--orange,
.footer__square {
  animation: none !important;
}

/* ═══════════════════════════════════════════════════════════════
   LOCAL MOVING PAGE
═══════════════════════════════════════════════════════════════ */

/* ── Section 5: We have your back ────────────────────────────── */
.lm-back {
  background-color: #dfeaf4;
  padding: 90px 40px;
}

.lm-back__container {
  max-width: 699px;
  margin: 0 auto;
}

.lm-back__title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.1;
}

.lm-back__text {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-dark);
  text-align: center;
  line-height: 1.7;
}

/* ── Section 6: checklist — no title, tighter vertical padding ── */
.lm-checklist {
  padding: 70px 0;
}

/* ── Section 1: Hero ──────────────────────────────────────────── */
.lm-hero {
  position: relative;
  background-color: var(--color-bg-hero);
  padding: 40px 0 60px;
  overflow: hidden;
}

.lm-hero__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.lm-hero__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
}

.lm-hero__left {
  flex: 0 0 46%;
  max-width: 46%;
}

.lm-hero__label {
  display: block;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.lm-hero__title {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.05;
  margin-bottom: 24px;
}

.lm-hero__text {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-dark);
  line-height: 1.65;
  max-width: 500px;
}

.lm-hero__right {
  flex: 1;
  padding: 0 0 0 30px;
}

.lm-hero__image-wrap {
  position: relative;
}

.lm-hero__img {
  max-width: 600px;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-left: 80px;
  display: block;
}

/* Decorative squares */
.lm-hero__sq {
  position: absolute;
  z-index: 0;
}

.lm-hero__sq--teal {
  top: 30px;
  left: -20px;
  width: 96px;
  height: 96px;
  background-color: #1e7ba0;
  z-index: 0;
}

.lm-hero__sq--white {
  top: 0;
  right: -10px;
  width: 48px;
  height: 48px;
  background-color: var(--color-white);
  z-index: 2;
}

.lm-hero__sq-orange {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background-color: var(--color-accent);
  z-index: 1;
  pointer-events: none;
}

/* ── Section 3: "Moving is never a small thing" ────────────────── */
.lm-intro {
  background: #ffffff;
  position: relative;
}

.lm-intro__row {
  display: flex;
  align-items: stretch;
  min-height: 520px;
}

.lm-intro__text-col {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 80px 60px 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: calc((100vw - 1400px) / 2);
}

.lm-intro__title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.15;
  margin-bottom: 28px;
}

.lm-intro__text {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-dark);
  line-height: 1.7;
  margin-bottom: 18px;
}

.lm-intro__text:last-child {
  margin-bottom: 0;
}

.lm-intro__img-col {
  flex: 1;
  overflow: hidden;
}

.lm-intro__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Section 4: "Our goal: your peace of mind" ─────────────────── */
.lm-goal {
  background: #ffffff;
  position: relative;
}

.lm-goal__row {
  display: flex;
  align-items: stretch;
  min-height: 520px;
}

.lm-goal__img-col {
  flex: 0 0 50%;
  overflow: hidden;
}

.lm-goal__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lm-goal__text-col {
  flex: 1;
  padding: 80px 40px 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: calc(max(40px, (100vw - 1400px) / 2 + 40px));
}

.lm-goal__title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.15;
  margin-bottom: 28px;
}

.lm-goal__text {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-dark);
  line-height: 1.7;
}

/* ── Local Moving responsive ────────────────────────────────────── */
@media (max-width: 1400px) {
  .lm-intro__text-col {
    margin-left: 0;
    padding-left: 40px;
  }
}

@media (max-width: 900px) {
  .lm-hero__row {
    flex-direction: column;
    gap: 50px;
  }

  .lm-hero__left {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .lm-hero__right {
    width: 100%;
    padding: 30px 0 0 30px;
  }

  .lm-hero__title {
    font-size: 48px;
  }

  .lm-intro__row,
  .lm-goal__row {
    flex-direction: column;
  }

  .lm-intro__text-col,
  .lm-goal__text-col {
    flex: none;
    max-width: 100%;
    width: 100%;
    padding: 60px 40px;
    margin-left: 0;
  }

  .lm-goal__text-col {
    padding-right: 40px;
    order: 1;
  }

  .lm-intro__img-col {
    min-height: 320px;
  }

  .lm-goal__img-col {
    flex: none;
    min-height: 320px;
    width: 100%;
    order: 0;
  }
}

@media (max-width: 600px) {
  .lm-hero {
    padding: 56px 0 60px;
  }

  .lm-hero__container {
    padding: 0 20px;
  }

  .lm-hero__title {
    font-size: 38px;
  }

  .lm-hero__text {
    font-size: 16px;
  }

  .lm-intro__text-col,
  .lm-goal__text-col {
    padding: 50px 20px;
  }

  .lm-goal__text-col {
    padding-right: 20px;
  }

  .lm-intro__title,
  .lm-goal__title {
    font-size: 30px;
  }
}

/* ══════════════════════════════════════════════════════════════
   LONG-DISTANCE MOVING PAGE
══════════════════════════════════════════════════════════════ */

/* ── Hero bold text variant ───────────────────────────────────── */
.lm-hero__text--bold {
  font-weight: 700;
}

/* ── Sections 3/4/5: full-bleed split layout ──────────────────── */
.ldm-split {
  background: #ffffff;
  position: relative;
}

.ldm-split__row {
  display: flex;
  align-items: stretch;
  min-height: 420px;
  max-height: 500px;
}

/* Text column — default position: LEFT */
.ldm-split__text--left {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 60px 60px 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: calc((100vw - 1400px) / 2);
}

/* Text column — right side (reversed layout) */
.ldm-split__text--right {
  flex: 1;
  padding: 60px 40px 60px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: calc(max(40px, (100vw - 1400px) / 2 + 40px));
}

/* Image column — always flex: 1, grows to fill remaining width */
.ldm-split__img-col {
  flex: 1;
  overflow: hidden;
}

/* Reversed layout: image on left */
.ldm-split--reverse .ldm-split__img-col {
  flex: 0 0 50%;
  max-width: 50%;
}

.ldm-split__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Auto-height variant: lets content determine section height (no max-height cap) */
.ldm-split--auto .ldm-split__row {
  max-height: none;
  min-height: 0;
  height: auto;
}

.ldm-split--auto .ldm-split__text--left,
.ldm-split--auto .ldm-split__text--right {
  overflow: visible;
  height: auto;
}

.ldm-split__title {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 58px;
  margin-bottom: 28px;
}

.ldm-split__body {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-dark);
  line-height: 21px;
}

/* ── "Consider this" section ─────────────────────────────────── */
.ldm-consider {
  background-color: var(--color-primary);
  padding: 80px 40px;
}

.ldm-consider__container {
  max-width: 1400px;
  margin: 0 auto;
}

.ldm-consider__title {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 700;
  color: #ffffff;
  line-height: 58px;
  text-align: center;
  margin-bottom: 60px;
}

.ldm-consider__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ldm-consider__card {
  background: transparent;
  padding: 30px;
  text-align: center;
  border-radius: 0;
  box-shadow: none;
  transition: box-shadow 0.3s ease;
}

.ldm-consider__card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.ldm-consider__card-title {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.ldm-consider__card-text {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  line-height: 21px;
  text-align: center;
}

/* ══════════════════════════════════════════════════════════════
   COMMERCIAL MOVING PAGE
══════════════════════════════════════════════════════════════ */

/* Second paragraph spacing inside ldm-split text columns */
.ldm-split__body--spaced {
  margin-top: 16px;
}

/* ── "What we offer" section ──────────────────────────────────── */
.cm-offer {
  background-image: url("../assets/images/mask.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 40px;
}

.cm-offer__container {
  max-width: 1400px;
  margin: 0 auto;
}

.cm-offer__title {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 58px;
  text-align: center;
  margin-bottom: 24px;
}

.cm-offer__intro {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-dark);
  line-height: 21px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto 60px;
}

.cm-offer__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.cm-offer__card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.cm-offer__card-title {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.cm-offer__card-text {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-dark);
  line-height: 21px;
}

@media (max-width: 768px) {
  .cm-offer__grid {
    grid-template-columns: 1fr;
  }

  .cm-offer__title {
    font-size: 32px;
    line-height: 40px;
  }
}

/* ── "How we work" section ────────────────────────────────────── */
.cm-how {
  background: #ffffff;
  padding: 60px 0;
}

.cm-how__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.cm-how__layout {
  display: flex;
  align-items: center;
  gap: 60px;
}

.cm-how__left {
  flex: 0 0 35%;
  max-width: 35%;
}

.cm-how__title {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 58px;
  margin-bottom: 16px;
}

.cm-how__intro {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-dark);
  line-height: 21px;
}

.cm-how__right {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.cm-how__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cm-how__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.cm-how__item:last-child {
  margin-bottom: 0;
}

.cm-how__check {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.cm-how__item span {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 21px;
}

@media (max-width: 768px) {
  .cm-how__layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .cm-how__left {
    flex: none;
    max-width: 100%;
  }

  .cm-how__right {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .cm-how__title {
    font-size: 32px;
    line-height: 40px;
  }
}

/* ── "Consider this" section ──────────────────────────────────── */
.cm-consider {
  background-color: var(--color-primary);
  padding: 80px 40px;
}

.cm-consider__container {
  max-width: 1400px;
  margin: 0 auto;
}

.cm-consider__title {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 700;
  color: #ffffff;
  line-height: 58px;
  text-align: center;
  margin-bottom: 60px;
}

.cm-consider__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.cm-consider__card {
  text-align: center;
  padding: 30px 20px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: box-shadow 0.3s ease;
}

.cm-consider__card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cm-consider__icon {
  width: 80px;
  height: 80px;
  display: block;
  margin: 0 auto 20px;
  object-fit: contain;
}

.cm-consider__card-title {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.cm-consider__card-text {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  line-height: 21px;
}

@media (max-width: 1024px) and (min-width: 769px) {
  .cm-consider__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cm-consider__grid {
    grid-template-columns: 1fr;
  }

  .cm-consider__title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 40px;
  }
}

/* ── Long-distance responsive ─────────────────────────────────── */
@media (max-width: 900px) {
  .ldm-split__text--left,
  .ldm-split__text--right {
    margin-left: 0;
    padding-right: 40px;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .ldm-split__row {
    flex-direction: column;
  }

  .ldm-split--reverse .ldm-split__row {
    flex-direction: column-reverse;
  }

  .ldm-split__img-col,
  .ldm-split--reverse .ldm-split__img-col {
    flex: none;
    max-width: 100%;
    height: 280px;
  }

  .ldm-split.mv-mask-bg .ldm-split__row {
    padding: 0 24px;
    gap: 32px;
  }

  .ldm-split.mv-mask-bg .ldm-split__text--left {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .ldm-split.mv-mask-bg .ldm-split__img-col {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .ldm-split__title {
    font-size: 32px;
    line-height: 40px;
  }

  .ldm-consider__title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 40px;
  }

  .ldm-consider__grid {
    grid-template-columns: 1fr;
  }
}

/* ── Section 8: Why people love us ───────────────────────────── */
.lm-reviews {
  background-color: #dfeaf4;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.lm-reviews__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* Decorative squares */
.lm-reviews__sq {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.lm-reviews__sq--white-tl {
  width: 60px;
  height: 60px;
  background: #ffffff;
  opacity: 0.5;
  top: 40px;
  left: 60px;
}

.lm-reviews__sq--orange-br {
  width: 35px;
  height: 35px;
  background: #fd8e39;
  opacity: 0.8;
  bottom: 60px;
  right: 80px;
}

.lm-reviews__sq--white-br {
  width: 25px;
  height: 25px;
  background: #ffffff;
  opacity: 0.4;
  bottom: 120px;
  right: 140px;
}

.lm-reviews__title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 40px;
  line-height: 1.1;
}

/* Slider pages — hidden by default, shown when .is-active */
.lm-reviews__page {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.lm-reviews__page.is-active {
  display: grid;
  animation: lm-reviews-fadein 0.4s ease;
}

@keyframes lm-reviews-fadein {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Individual review card */
.lm-review-card {
  background: transparent;
  padding: 30px;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lm-review-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.3s ease;
}

.lm-review-card__text {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-dark);
  line-height: 1.7;
  margin: 0 0 20px;
}

.lm-review-card__footer {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lm-review-card__footer svg {
  flex-shrink: 0;
}

.lm-review-card__name {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-dark);
}

/* Navigation buttons */
.lm-reviews__nav {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.lm-reviews__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.lm-reviews__btn:hover {
  background: var(--color-primary);
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .lm-reviews__page.is-active {
    grid-template-columns: 1fr;
  }

  .lm-reviews__title {
    font-size: 30px;
  }
}

/* ══════════════════════════════════════════════════════════════
   MOVING PAGE
══════════════════════════════════════════════════════════════ */

/* ── Section 1: Hero ──────────────────────────────────────────── */
.mv-hero {
  position: relative;
  background-color: var(--color-bg-hero);
  overflow: hidden;
  min-height: 500px;
  max-height: 580px;
  display: flex;
  align-items: stretch;
}

.mv-hero__container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: stretch;
}

.mv-hero__row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 0;
  width: 100%;
}

.mv-hero__left {
  flex: 0 0 46%;
  max-width: 46%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 40px 60px 0;
}

.mv-hero__label {
  display: block;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.mv-hero__title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 48px;
  margin-bottom: 24px;
}

.mv-hero__text {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.6;
  max-width: 500px;
}

.mv-hero__right {
  flex: 1;
  overflow: hidden;
  max-height: 580px;
}

.mv-hero__image-wrap {
  position: relative;
  height: 100%;
}

.mv-hero__img {
  width: 100%;
  height: 100%;
  max-height: 580px;
  object-fit: cover;
  object-position: center top;
  display: block;
  position: relative;
  z-index: 1;
}

.mv-hero__sq {
  position: absolute;
  z-index: 0;
}

.mv-hero__sq--teal {
  top: 30px;
  left: -20px;
  width: 96px;
  height: 96px;
  background-color: #1e7ba0;
}

.mv-hero__sq--white {
  top: 0;
  right: -10px;
  width: 48px;
  height: 48px;
  background-color: var(--color-white);
  z-index: 2;
}

.mv-hero__sq-orange {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background-color: var(--color-accent);
  z-index: 1;
  pointer-events: none;
}

/* ── Section 3: Discover Wow Experience ──────────────────────── */
.mv-wow-section {
  background: #ffffff;
  padding: 80px 0;
}

.mv-wow-section__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.mv-wow-section__layout {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.mv-wow-section__left {
  flex: 0 0 35%;
  max-width: 35%;
  padding-top: 8px;
}

.mv-wow-section__title {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 28px;
}

.mv-wow-section__right {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 0 40px;
  align-items: start;
}

/* Accordion items */
.mv-acc__item {
  border-bottom: 1px solid #e8eef4;
}

.mv-acc__item:first-child {
  border-top: 1px solid #e8eef4;
}

.mv-acc__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  cursor: pointer;
  user-select: none;
}

.mv-acc__icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mv-acc__icon {
  width: 16px;
  height: 16px;
}

.mv-acc__title {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 21px;
}

.mv-acc__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
  overflow: hidden;
}

.mv-acc__body-inner {
  overflow: hidden;
}

.mv-acc__item.is-open .mv-acc__body {
  grid-template-rows: 1fr;
}

.mv-acc__body-inner p {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-dark);
  line-height: 21px;
  padding: 0 0 16px 52px;
}

/* ── Section 4: Checklist ─────────────────────────────────────── */
.mv-checklist {
  background-color: var(--color-primary);
  padding: 80px 40px;
}

.mv-checklist__container {
  max-width: 900px;
  margin: 0 auto;
}

.mv-checklist__title {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 700;
  color: #ffffff;
  line-height: 28px;
  text-align: center;
  margin-bottom: 20px;
}

.mv-checklist__subtitle {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  line-height: 21px;
  text-align: center;
  margin-bottom: 50px;
}

.mv-checklist__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
}

.mv-checklist__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mv-checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.mv-checklist__item:last-child {
  margin-bottom: 0;
}

.mv-checklist__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.mv-checklist__item span {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
}

/* ── Section 5: Wow Difference (inner content) ────────────────── */
.mv-diff__title {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 58px;
  margin-bottom: 30px;
}

.mv-diff__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mv-diff__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 28px;
}

.mv-diff__item::before {
  content: "";
  width: 14px;
  height: 14px;
  min-width: 14px;
  border-radius: 50%;
  background-color: var(--color-accent);
  margin-top: 6px;
  flex-shrink: 0;
}

.mv-diff__item-title {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.mv-diff__item-text {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-dark);
  line-height: 21px;
}

/* ── Moving Page ── */
/* Packing section (.ldm-split.mv-mask-bg in moving.html): full-width bg, content in container */

/* Background stays full width; content sits in .ldm-split__row below */
.ldm-split.mv-mask-bg {
  background: url("../assets/images/mask.png") center / cover no-repeat;
  padding: 80px 0;
  width: 100%;
}

/* Section container — wraps text + image columns */
.ldm-split.mv-mask-bg .ldm-split__row {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 60px;
  box-sizing: border-box;
  min-height: 0;
  max-height: none;
}

.ldm-split.mv-mask-bg .ldm-split__text--left {
  margin-left: 0;
  padding: 0;
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
}

/* Image column — contained, NOT flush to edge */
.ldm-split.mv-mask-bg .ldm-split__img-col {
  flex: 0 0 45%;
  box-sizing: border-box;
  overflow: hidden;
}

.ldm-split.mv-mask-bg .ldm-split__img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.mv-pack__title {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 58px;
  margin-bottom: 20px;
}

.mv-pack__text {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-dark);
  line-height: 21px;
}

/* ── Section 7: Pick a Packing Service ───────────────────────── */
.mv-ps {
  background: #ffffff;
  padding: 80px 0;
}

.mv-ps__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.mv-ps__header {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.mv-ps__title {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 58px;
  margin-bottom: 24px;
}

.mv-ps__subtitle {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-dark);
  line-height: 21px;
}

.mv-ps__grid {
  display: grid;
  justify-content: space-between;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  /* max-width: 1200px; */
  margin: 0 auto;
}

.mv-ps__col {
  padding: 0 20px;
  overflow: hidden;
}

.mv-ps__col-title {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 20px;
  text-align: center;
}

.mv-ps__col-text {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-dark);
  line-height: 21px;
  text-align: justify;
}

/* ── Moving Page responsive ───────────────────────────────────── */
@media (max-width: 768px) {
  .mv-hero {
    max-height: none;
    min-height: 0;
  }

  .mv-hero__row {
    flex-direction: column;
    gap: 0;
  }

  .mv-hero__left {
    flex: none;
    max-width: 100%;
    width: 100%;
    padding: 40px 24px;
  }

  .mv-hero__right {
    flex: none;
    max-width: 100%;
    max-height: 300px;
    width: 100%;
  }

  .mv-hero__img {
    max-height: 300px;
    height: 300px;
  }

  .mv-hero__title {
    font-size: 28px;
    line-height: 36px;
  }

  .mv-wow-section__layout {
    flex-direction: column;
    gap: 32px;
  }

  .mv-wow-section__left {
    flex: none;
    max-width: 100%;
  }

  .mv-checklist__grid {
    grid-template-columns: 1fr;
  }

  .mv-diff__title,
  .mv-pack__title,
  .mv-ps__title {
    font-size: 32px;
    line-height: 40px;
  }

  .mv-ps__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .mv-wow-section__right {
    grid-template-columns: 1fr;
  }
}


/* ═══════════════════════════════════════════════════════════════
   STORAGE PAGE
═══════════════════════════════════════════════════════════════ */

/* ── Scroll-triggered Quote Bar (storage page only) ──────────── */
#storage-quote-bar {
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  z-index: 999;
  opacity: 0;
  transition: top 0.3s ease, opacity 0.3s ease;
  background: #2e76af;
}

/* ── Section 1: Hero ─────────────────────────────────────────── */
.st-hero {
  position: relative;
  background: #2e76af;
  padding: 80px 0;
  overflow: hidden;
}

.st-hero__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.st-hero__row {
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
  box-sizing: border-box;
}

.st-hero__text-col {
  flex: 0 0 50%;
  min-width: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.st-hero__text-inner {
  width: 100%;
  position: relative;
  z-index: 1;
}

.st-hero__label {
  display: block;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  color: #fd8e39;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.st-hero__title {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 700;
  color: #ffffff;
  line-height: 68px;
  margin-bottom: 20px;
}

.st-hero__text {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  line-height: 26px;
  margin: 0;
}

.st-hero__img-col {
  flex: 0 0 45%;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 0;
}

.st-hero__image-wrap {
  position: relative;
}

.st-hero__img-col img,
.st-hero__img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Decorative squares */
.st-hero__sq {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.st-hero__sq--white-tl {
  width: 50px;
  height: 50px;
  background: #ffffff;
  opacity: 0.3;
  top: 40px;
  left: calc(50% - 30px);
}

.st-hero__sq--white-tr {
  width: 30px;
  height: 30px;
  background: #ffffff;
  opacity: 0.2;
  top: 20px;
  right: calc(50% - 20px);
}

.st-hero__sq--orange-bl {
  width: 50px;
  height: 50px;
  background: #fd8e39;
  bottom: 0;
  left: 0;
}

.st-hero__sq--orange-br {
  width: 35px;
  height: 35px;
  background: #fd8e39;
  bottom: 40px;
  right: 0;
}

/* ── Section 3: Intro ────────────────────────────────────────── */
.st-intro {
  background: #ffffff;
  padding: 100px 40px;
}

.st-intro__container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.st-intro__title {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 58px;
  text-align: center;
  margin-bottom: 24px;
}

.st-intro__text {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-dark);
  line-height: 21px;
  text-align: center;
}

/* ── Section 4: Features "How are we on your side?" ──────────── */
.st-features {
  background-image: url("../assets/images/mask.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 40px;
}

.st-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.st-features__header {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.st-features__title {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 58px;
  text-align: center;
  margin-bottom: 16px;
}

.st-features__subtitle {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-dark);
  line-height: 21px;
  text-align: center;
}

/* Single 3-column grid — all 6 cards, 3 per row */
.st-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
  margin: 0 auto;
}

.st-features__card {
  padding: 10px 16px;
}

.st-features__card-title {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 14px;
}

.st-features__card-text {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-dark);
  line-height: 21px;
}

/* ── Storage Page Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .st-hero__title {
    font-size: 44px;
    line-height: 52px;
  }

  .st-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .st-hero__container {
    padding: 0 24px;
  }

  .st-hero__row {
    flex-direction: column;
    gap: 40px;
  }

  .st-hero__text-col,
  .st-hero__img-col {
    flex: none;
    width: 100%;
  }

  .st-hero__text-col {
    padding: 0;
  }

  .st-hero__img-col img,
  .st-hero__img {
    height: 300px;
  }

  .st-hero {
    padding: 60px 0;
  }

  .st-intro {
    padding: 60px 24px;
  }

  .st-intro__title {
    font-size: 32px;
    line-height: 40px;
  }

  .st-features {
    padding: 60px 24px;
  }

  .st-features__title {
    font-size: 32px;
    line-height: 40px;
  }

  .st-features__grid {
    grid-template-columns: 1fr;
  }
}


/* ═══════════════════════════════════════════════════════════════
   RESOURCES PAGE
═══════════════════════════════════════════════════════════════ */

/* ── Scroll-triggered Quote Bar (resources page only) ────────── */
#resources-quote-bar {
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  z-index: 999;
  opacity: 0;
  transition: top 0.3s ease, opacity 0.3s ease;
  background: #2e76af;
}

/* ── Tab Selector ────────────────────────────────────────────── */
.rs-tabs {
  background: #ffffff;
  position: relative;
  z-index: 2;
}

/* Same width + horizontal alignment as .rs-panel__wrap */
.rs-tabs__container {
  max-width: 1320px;
  margin: 0 auto;
  /* padding: 0 40px; */
  box-sizing: border-box;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: var(--color-bg-hero);
  margin-top: 30px;
}

.rs-tabs__row {
  display: flex;
  width: 100%;
}

.rs-tab {
  flex: 1;
  padding: 24px 30px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  transition: background 0.2s ease;
}

.rs-tab:last-child {
  border-right: none;
}

.rs-tab.is-active {
  background: var(--color-primary);
}

/* Downward triangle on active tab */
.rs-tab.is-active::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 14px solid var(--color-primary);
  z-index: 5;
}

/* Background icon — bottom-left of each tab card */
.rs-tab__icon {
  position: absolute;
  bottom: 10px;
  left: 16px;
  right: auto;
  width: 60px;
  height: 60px;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

.rs-tab.is-active .rs-tab__icon {
  opacity: 0.25;
  filter: brightness(0) invert(1);
}

.rs-tab__body {
  position: relative;
  z-index: 1;
}

.rs-tab__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.rs-tab.is-active .rs-tab__title {
  color: #ffffff;
}

.rs-tab__text {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: #6b7c93;
  line-height: 21px;
  margin: 0;
}

.rs-tab.is-active .rs-tab__text {
  color: #ffffff;
}

/* ── Content Panel (aligned with .rs-tabs__container) ───────── */
.rs-panel {
  background: #ffffff;
  padding: 0 0 60px;
}

.rs-panel__wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

/* Each tab's content block — hidden by default */
.rs-content {
  display: none;
}

.rs-content.is-active {
  display: block;
}

.rs-panel__inner {
  border: 1px solid #e0e8f0;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  padding: 40px;
  max-height: 520px;
  overflow-y: auto;
  scroll-behavior: smooth;
}

/* Custom thin scrollbar */
.rs-panel__inner::-webkit-scrollbar {
  width: 5px;
}
.rs-panel__inner::-webkit-scrollbar-track {
  background: #f0f4f8;
}
.rs-panel__inner::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 3px;
}

/* Sub-pages */
.rs-subpage {
  display: none;
}

.rs-subpage.is-active {
  display: block;
}

/* Two-column layout inside sub-page */
.rs-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.rs-col {
  min-width: 0;
}

/* ── Content Typography ──────────────────────────────────────── */
.rs-heading--large {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

/* Moving Checklist section headings */
.rs-content[data-content="checklist"] .rs-heading--large {
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
  color: #0d2136;
  margin-top: 0;
  margin-bottom: 20px;
}

.rs-content[data-content="checklist"] .rs-col > * + .rs-heading--large {
  margin-top: 28px;
}

.rs-heading--blue {
  color: var(--color-primary);
}

.rs-heading--sub {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.rs-text {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-dark);
  line-height: 21px;
  margin-bottom: 16px;
}

.rs-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.rs-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  font-family: var(--font-primary);
  font-size: 14px;
  line-height: 21px;
  color: var(--color-dark);
}

.rs-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  margin-top: 6px;
  flex-shrink: 0;
}

/* Moving Checklist — explicit bullets + inline label + body (no ::before) */
.rs-list--checklist {
  margin-bottom: 0;
}

.rs-list--checklist > li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  font-family: var(--font-primary);
  font-size: 14px;
  line-height: 22px;
  color: #0d2136;
  font-weight: 400;
}

.rs-list--checklist > li::before {
  display: none;
  content: none;
}

.rs-bullet {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: #2e76af;
  margin-top: 7px;
  flex-shrink: 0;
}

.rs-bullet--small {
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: #9ab0c8;
}

.rs-item-text {
  flex: 1;
  min-width: 0;
  font-family: var(--font-primary);
  font-size: 14px;
  line-height: 22px;
  color: #0d2136;
  font-weight: 400;
}

.rs-item-text strong {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #0d2136;
}

/* Stack body + nested sub-list under one main bullet (valid HTML) */
.rs-checklist-block {
  flex: 1;
  min-width: 0;
}

.rs-checklist-block > .rs-item-text {
  display: block;
  flex: none;
}

/* Sub-list under checklist items */
.rs-list--checklist .rs-list--sub {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.rs-list--checklist .rs-list--sub > li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
  margin-left: 20px;
  font-size: 14px;
  line-height: 22px;
  color: #5a6a7a;
}

.rs-list--checklist .rs-list--sub > li::before {
  display: none;
  content: none;
}

.rs-list--checklist .rs-list--sub .rs-item-text {
  color: #5a6a7a;
}

/* ── Pagination ──────────────────────────────────────────────── */
.rs-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 14px 0 0;
}

.rs-pag__btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
  font-size: 11px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.rs-pag__btn:hover:not(:disabled) {
  background: var(--color-primary);
  color: #ffffff;
}

.rs-pag__btn:disabled {
  border-color: #c8d5e0;
  color: #c8d5e0;
  cursor: not-allowed;
}

.rs-pag__display {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: #dfeaf4;
  line-height: 1;
  min-width: 80px;
  text-align: center;
  user-select: none;
}

/* ── Blog Articles ───────────────────────────────────────────── */
.rs-blog {
  background: #ffffff;
  padding: 60px 0 80px;
}

.rs-blog__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.rs-blog__title {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 700;
  color: #2e76af;
  line-height: 58px;
  text-align: center;
  margin: 0 0 24px;
}

.rs-blog__top-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  margin-bottom: 16px;
  width: 100%;
}

.rs-blog__cats-wrap {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  justify-content: center;
}

.rs-blog__cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}

.rs-blog__cat {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: #2e76af;
  text-decoration: none;
  cursor: pointer;
}

.rs-blog__cat:hover {
  text-decoration: underline;
}

/* Standalone toggle: blue magnifier only */
.rs-blog__search-toggle {
  flex: 0 0 auto;
  align-self: center;
  margin-left: auto;
  padding: 4px;
  border: none;
  background: transparent;
  cursor: pointer;
  line-height: 0;
}

.rs-blog__magnifier {
  display: block;
}

.rs-blog__search-row {
  display: none;
  justify-content: center;
  width: 100%;
  margin-bottom: 8px;
}

.rs-blog__search-row.is-open {
  display: flex;
}

.rs-blog__search-inner {
  display: flex;
  width: 500px;
  max-width: 90%;
  align-items: stretch;
  box-sizing: border-box;
}

#blog-search-row input {
  color: #2e76af;
  border: 1px solid #2e76af;
  border-right: none;
}

#blog-search-row input::placeholder {
  color: #2e76af;
  opacity: 1;
}

.rs-blog__search-input {
  flex: 1;
  min-width: 0;
  padding: 12px 20px;
  font-family: var(--font-primary);
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
}

.rs-blog__search-submit {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: #2e76af;
  color: #ffffff;
  border: 1px solid #2e76af;
  border-left: none;
  cursor: pointer;
  box-sizing: border-box;
}

.rs-blog__search-submit:hover {
  background: #256a9e;
}

.rs-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.rs-blog-card {
  background: transparent;
  border: none;
  padding: 30px 24px;
  min-height: 200px;
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: 4px;
  box-sizing: border-box;
}

.rs-blog-card:hover {
  background: #e2eaf3;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.rs-blog-card__meta {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 400;
  color: #0d2136;
  margin: 0 0 12px;
}

.rs-blog-card__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #0d2136;
  margin: 0 0 14px;
}

.rs-blog-card__excerpt {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #6b7c93;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rs-blog__more {
  display: block;
  margin: 40px auto 0;
  padding: 18px 60px;
  background: #fd8e39;
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.rs-blog__more:hover {
  background: #e67d28;
}

/* ── Resources Page Responsive ───────────────────────────────── */
@media (max-width: 1024px) {
  .rs-blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .rs-blog__grid {
    grid-template-columns: 1fr;
  }

  .rs-blog__container {
    padding: 0 16px;
  }

  .rs-blog__title {
    font-size: 36px;
    line-height: 44px;
  }

  .rs-blog__top-row {
    flex-direction: column;
  }

  .rs-blog__cats-wrap {
    width: 100%;
  }

  .rs-blog__search-toggle {
    margin-left: 0;
  }

  .rs-tabs__container {
    padding: 0 16px;
  }

  .rs-tabs__row {
    flex-direction: column;
  }

  .rs-tab {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .rs-tab:last-child {
    border-bottom: none;
  }

  .rs-tab.is-active::after {
    display: none;
  }

  .rs-panel__wrap {
    padding: 0 16px;
  }

  .rs-panel__inner {
    padding: 24px 16px;
    max-height: none;
  }

  .rs-cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .rs-heading--large {
    font-size: 26px;
  }

  .rs-pag__display {
    font-size: 26px;
    min-width: 60px;
  }
}

/* ── FAQ Page ── */

#faq-quote-bar {
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  z-index: 999;
  opacity: 0;
  transition: top 0.3s ease, opacity 0.3s ease;
  background: #2e76af;
}

.faq-page-hero {
  background: #ffffff;
}

.faq-page__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.faq-page-hero .faq-page__inner {
  padding: 60px 40px 40px;
}

.faq-page__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 80px;
  line-height: 88px;
  color: #0d2136;
  margin: 0 0 12px;
}

.faq-page__subtitle {
  font-family: var(--font-primary);
  color: #0d2136;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  margin: 0;
}

.faq-page-acc {
  background: #ffffff;
}

.faq-page-acc .faq-page__inner {
  padding: 0 40px 100px;
}

.faq-page__grid {
  display: flex;
  gap: 30px;
}

.faq-page__col {
  flex: 1;
  min-width: 0;
}

.faq-page-item {
  margin-bottom: 8px;
}

.faq-page-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #dfeaf4;
  border-radius: 5px;
  border: none;
  padding: 16px 20px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.35;
  color: #0d2136;
  gap: 12px;
  transition: color 0.2s;
}

.faq-page-trigger span {
  flex: 1;
  font-size: 14px;
  font-weight: 700;
  color: #0d2136;
}

.faq-page-arrow {
  width: 12px;
  height: auto;
  flex-shrink: 0;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.faq-page-item.open .faq-page-arrow {
  transform: rotate(180deg);
  filter: brightness(0) saturate(100%) invert(58%) sepia(85%) saturate(600%) hue-rotate(350deg) brightness(0.95) contrast(101%);
}

.faq-page-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
  overflow: hidden;
  background: #ffffff;
}

.faq-page-answer-inner {
  overflow: hidden;
  padding: 0 20px;
}

.faq-page-answer p {
  color: #0d2136;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  margin: 0;
}

.faq-page-item.open .faq-page-trigger {
  color: var(--color-primary);
}

.faq-page-item.open .faq-page-trigger span {
  color: var(--color-primary);
}

.faq-page-item.open .faq-page-answer {
  grid-template-rows: 1fr;
}

.faq-page-item.open .faq-page-answer-inner {
  padding: 16px 20px;
}

@media (max-width: 900px) {
  .faq-page__grid {
    flex-direction: column;
  }

  .faq-page-hero .faq-page__inner {
    padding: 40px 24px 32px;
  }

  .faq-page-acc .faq-page__inner {
    padding: 0 24px 60px;
  }

  .faq-page__inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .faq-page__title {
    font-size: 48px;
    line-height: 54px;
  }
}

/* ── Contact Page ── */

#contact-quote-bar {
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: top 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  background: #2e76af;
}

.contact-hero {
  min-height: unset;
  background: #dfeaf4;
  display: flex;
  align-items: center;
  padding: 40px 0 80px 0;
}

.contact-hero__inner {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
}

.contact-hero__left {
  flex: 0 0 28%;
  min-width: 0;
  padding-top: 16px;
}

.contact-hero__right {
  flex: 1 1 70%;
  min-width: 0;
}

.contact-hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 60px;
  line-height: 68px;
  color: #0d2136;
  margin: 0 0 24px;
}

.contact-hero__text {
  font-family: var(--font-primary);
  color: #0d2136;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  margin: 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #ffffff;
  border: none;
  outline: none;
  font-family: var(--font-primary);
  font-size: 14px;
  color: #2e76af;
  box-sizing: border-box;
}

.contact-form input {
  padding: 20px 20px;
}

.contact-form textarea {
  padding: 16px 20px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #2e76af;
  opacity: 1;
}

.contact-form textarea {
  border: 1.5px solid #2e76af;
  resize: vertical;
  display: block;
  min-height: 180px;
  height: 180px;
}

.contact-form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.contact-form-row input {
  flex: 1;
}

.contact-form-row.full {
  display: block;
  margin-bottom: 12px;
}

.contact-form-submit {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.contact-form__submit-btn {
  background: #fd8e39;
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 60px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.contact-form__submit-btn:hover {
  background: #e67d28;
}

@media (max-width: 768px) {
  .contact-hero__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
    padding: 0 24px;
  }

  .contact-hero__left,
  .contact-hero__right {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
  }

  .contact-hero__title {
    font-size: 40px;
    line-height: 46px;
  }
}

/* ── About Page ── */

#about-quote-bar {
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: top 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  background: #2e76af;
}

.about-hero {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: 40px 0 60px;
}

.about-hero__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.about-hero__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
}

.about-hero__left {
  flex: 0 0 46%;
  max-width: 46%;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  min-width: 0;
}

.about-hero__text {
  width: 100%;
  max-width: 500px;
}

.about-hero__label {
  display: block;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  color: #fd8e39;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 70px;
  line-height: 82px;
  color: #2e76af;
  margin: 0 0 20px;
}

.about-hero__lead {
  font-family: var(--font-primary);
  color: #2e76af;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  margin: 0;
}

.about-hero__right {
  flex: 1;
  padding: 0 0 0 30px;
  min-width: 0;
}

.about-hero__image-wrap {
  position: relative;
}

.about-hero__img {
  max-width: 700px;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 1;
  /* margin-left: 110px; */
  display: block;
}

.about-hero__sq {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.about-hero__sq--1 {
  top: 30px;
  left: 50%;
  width: 80px;
  height: 80px;
  background: #ffffff;
  opacity: 0.5;
}

.about-hero__sq--2 {
  bottom: 40px;
  right: 60px;
  width: 50px;
  height: 50px;
  background: #fd8e39;
  opacity: 0.9;
}

.about-hero__sq--3 {
  bottom: 100px;
  right: 120px;
  width: 30px;
  height: 30px;
  background: #ffffff;
  opacity: 0.4;
}

.about-hero__sq--4 {
  top: 80px;
  left: 45%;
  width: 40px;
  height: 40px;
  background: #2e76af;
  opacity: 0.3;
}

.about-who {
  position: relative;
  overflow: hidden;
  background: #dfeaf4;
  padding: 80px 40px;
}

.about-who__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-who__title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #2e76af;
  font-size: 50px;
  line-height: 58px;
  text-align: center;
  margin: 0 0 40px;
}

.about-who__text {
  font-family: var(--font-primary);
  color: #0d2136;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  text-align: center;
  margin: 0 0 24px;
}

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

.about-founder {
  position: relative;
  overflow: hidden;
  background: url("../assets/images/mask.png") center / cover no-repeat;
  padding: 80px 0;
}

.about-founder__container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: flex-start;
  gap: 60px;
  box-sizing: border-box;
}

.about-founder__text {
  flex: 0 0 55%;
  min-width: 0;
  padding: 0;
}

.about-founder__text h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #2e76af;
  font-size: 50px;
  line-height: 58px;
  margin: 0 0 30px;
}

.about-founder__text p {
  font-family: var(--font-primary);
  color: #0d2136;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  margin: 0 0 16px;
}

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

.about-founder__image {
  flex: 0 0 40%;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.about-founder__image img {
  width: 100%;
  /* max-width: 420px; */
  height: auto;
  display: block;
  object-fit: cover;
  margin: 0 auto;
}

.about-timeline {
  width: 100%;
  overflow: hidden;
}

.timeline-slider-wrapper {
  position: relative;
  width: 100%;
}

.timeline-slide {
  display: none;
  width: 100%;
  min-height: 500px;
  background: #2e76af;
  flex-direction: row;
  align-items: stretch;
}

.timeline-slide.active {
  display: flex;
}

.timeline-text-col {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.timeline-text-inner {
  padding: 80px 60px 80px max(40px, calc((100vw - 1400px) / 2 + 40px));
  max-width: 700px;
  box-sizing: border-box;
}

.timeline-text-inner h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 70px;
  line-height: 78px;
  color: #ffffff;
  margin: 0 0 24px;
}

.timeline-text-inner p {
  font-family: var(--font-primary);
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 40px;
}

.timeline-nav {
  display: flex;
  gap: 12px;
}

.timeline-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.timeline-nav button:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
}

.timeline-img-col {
  flex: 0 0 50%;
  overflow: hidden;
  min-height: 500px;
}

.timeline-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  min-height: 500px;
}

/* What We Do — same pattern as .cm-offer */
.ab-offer {
  position: relative;
  overflow: hidden;
  background-image: url("../assets/images/mask.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 40px;
}

.ab-offer__container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.ab-offer__title {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 700;
  color: #2e76af;
  line-height: 58px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 24px;
}

.ab-offer__intro {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: #0d2136;
  line-height: 21px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.ab-offer__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.ab-offer__card-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.ab-offer__card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #2e76af;
  margin: 0 0 12px;
}

.ab-offer__card-text {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: #0d2136;
  line-height: 21px;
  margin: 0;
}

/* Decorative squares — About (Who / Founder / What We Do) */
.about-deco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.about-deco--who-1 {
  top: 30px;
  left: 20px;
  width: 70px;
  height: 70px;
  background: #ffffff;
  opacity: 0.4;
}

.about-deco--who-2 {
  bottom: 40px;
  right: 80px;
  width: 40px;
  height: 40px;
  background: #fd8e39;
  opacity: 0.8;
}

.about-deco--who-3 {
  bottom: 100px;
  right: 150px;
  width: 25px;
  height: 25px;
  background: #ffffff;
  opacity: 0.3;
}

.about-deco--founder-1 {
  top: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background: #ffffff;
  opacity: 0.35;
}

.about-deco--founder-2 {
  top: 120px;
  right: 110px;
  width: 35px;
  height: 35px;
  background: #fd8e39;
  opacity: 0.7;
}

.about-deco--founder-3 {
  bottom: 60px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: #2e76af;
  opacity: 0.2;
}

.about-deco--founder-4 {
  bottom: 130px;
  left: 100px;
  width: 20px;
  height: 20px;
  background: #ffffff;
  opacity: 0.3;
}

.about-deco--offer-1 {
  top: 30px;
  left: 60px;
  width: 55px;
  height: 55px;
  background: #ffffff;
  opacity: 0.4;
}

.about-deco--offer-2 {
  bottom: 50px;
  left: 30px;
  width: 30px;
  height: 30px;
  background: #fd8e39;
  opacity: 0.8;
}

.about-deco--offer-3 {
  top: 80px;
  right: 50px;
  width: 45px;
  height: 45px;
  background: #ffffff;
  opacity: 0.25;
}

/* What We Believe */
.about-beliefs {
  background: #ffffff;
  padding: 100px 0;
}

.beliefs-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  text-align: center;
}

.beliefs-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 50px;
  line-height: 58px;
  color: #2e76af;
  margin: 0 0 24px;
}

.beliefs-subtitle {
  font-family: var(--font-primary);
  font-size: 14px;
  line-height: 21px;
  color: #0d2136;
  max-width: 760px;
  margin: 0 auto 12px;
}

.beliefs-grid-top {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 70px;
  margin-bottom: 70px;
}

.beliefs-grid-bottom {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}

.belief-item {
  flex: 0 0 360px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.belief-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.belief-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.belief-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 21px;
  color: #2e76af;
  margin: 0 0 16px;
}

.belief-item p {
  font-family: var(--font-primary);
  font-size: 14px;
  line-height: 21px;
  color: #0d2136;
  margin: 0;
}

@media (max-width: 768px) {
  .about-hero__row {
    flex-direction: column;
    gap: 50px;
  }

  .about-hero__left {
    flex: none;
    width: 100%;
    max-width: 100%;
  }

  .about-hero__right {
    flex: none;
    width: 100%;
    padding: 30px 0 0 30px;
  }

  .about-hero__img {
    margin-left: 0;
    max-width: 100%;
  }

  .about-hero__container {
    padding: 0 20px;
  }

  .about-hero__title {
    font-size: 40px;
    line-height: 46px;
  }

  .about-who {
    padding: 60px 20px;
  }

  .about-founder__container {
    flex-direction: column;
    padding: 0 20px;
  }

  .about-founder__text,
  .about-founder__image {
    flex: none;
    width: 100%;
  }

  .about-founder__text h2 {
    font-size: 32px;
    line-height: 40px;
  }

  .timeline-slide.active {
    flex-direction: column;
  }

  .timeline-text-col,
  .timeline-img-col {
    flex: 0 0 100%;
  }

  .timeline-img-col {
    height: 300px;
    min-height: 300px;
  }

  .timeline-img-col img {
    min-height: 300px;
  }

  .timeline-text-inner {
    padding: 40px 24px;
  }

  .timeline-text-inner h2 {
    font-size: 48px;
    line-height: 56px;
  }

  .beliefs-grid-top,
  .beliefs-grid-bottom {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }

  .belief-item {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .beliefs-title {
    font-size: 36px;
    line-height: 44px;
  }

  .beliefs-container {
    padding: 0 20px;
  }

  .ab-offer__grid {
    grid-template-columns: 1fr;
  }

  .ab-offer__title {
    font-size: 32px;
    line-height: 40px;
  }

  .ab-offer {
    padding: 60px 20px;
  }
}
