﻿

.reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js-ready .reveal { opacity: 0 !important; transform: translateY(24px) !important; }
.js-ready .reveal.is-visible { opacity: 1 !important; transform: translateY(0) !important; }
.js-ready .reveal.delay-1 { transition-delay: 0.1s; }
.js-ready .reveal.delay-2 { transition-delay: 0.2s; }
.js-ready .reveal.delay-3 { transition-delay: 0.3s; }
.js-ready .reveal.delay-4 { transition-delay: 0.4s; }

.offers-section {
  background: #f8f8f8;
  padding-block: 3rem;
}
.offers-section__heading {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.offers-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: stretch;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  overflow: hidden;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.offers-card__content {
  padding: 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.offers-card__title-one {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f0f0f0;
}
.offers-card__title-two {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}

.offers-card__content .btn--primary {
  align-self: flex-start;
  background: #df2b2f;
  color: #fff;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-block;
  transition: background 0.2s;
}
.offers-card__content .btn--primary:hover { background: #b3000e; }

.offers-card__visual {
  width: 260px;
  position: relative;
  background: #df2b2f;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.offers-card__blob { display: none; }
.offers-card__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}

@media (max-width: 768px) {
  .offers-card {
    grid-template-columns: 1fr;
  }
  .offers-card__visual {
    width: 100%;
    height: 180px;
  }
  .offers-card__content {
    padding: 1.75rem;
  }
  .offers-card__content .btn--primary { align-self: center; }
  .offers-card__title-one,
  .offers-card__title-two { font-size: 1rem; text-align: center; }
}

.services-section {
  background: #f8f8f8;
  padding-block: 4rem;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  left: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: #df2b2f;
  z-index: 0;
  pointer-events: none;
}
.services-section .container { position: relative; z-index: 1; }

.services-section .section__title {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 2.5rem;
  color: #1a1a1a;
}

.services-carousel {
  position: relative;
  overflow: hidden;
}

.services-track-wrap {
  overflow: hidden;
  border-radius: 12px;
}

.services-grid {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  margin-top: 0;
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: visible;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 2rem;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: 0;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.14);
  transform: translateY(-6px);
}

.service-card__image {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  margin: 0 auto 1.25rem;
  box-shadow: 0 0 0 6px rgba(227, 6, 19, 0.12);
}

.service-card__image::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #df2b2f;
  z-index: 0;
  top: -6px;
  right: -6px;
  pointer-events: none;
}
.service-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  display: block;
}

.service-card__body {
  padding: 0 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: center;
}
.service-card__title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #1a1a1a;
}
.service-card__text {
  font-size: 0.8125rem;
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 1rem;
  flex: 1;
}
.service-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: #df2b2f;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 2px solid #df2b2f;
  transition: background 0.2s, color 0.2s;
  align-self: center;
}
.service-card__btn:hover { background: #b3000e; border-color: #b3000e; color: #fff; }

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #e8e8e8;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.carousel-btn:hover { border-color: #df2b2f; background: #df2b2f; color: #fff; }
.carousel-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }
.carousel-btn:hover svg { stroke: #fff; }

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d0d0d0;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot.is-active {
  background: #df2b2f;
  transform: scale(1.3);
}

@media (max-width: 1024px) {
  .service-card { flex: 0 0 calc((100% - 1.5rem) / 2); }
}
@media (max-width: 640px) {
  .service-card { flex: 0 0 90%; }
  .services-section::before { display: none; }
}

.roadmap-section {
  background: #f8f8f8;
  padding-block: 4rem;
  overflow: hidden;
}
.roadmap__title {
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 3.5rem;
  color: #1a1a1a;
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.2;
}

.roadmap__list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.roadmap__card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 2;
}
.roadmap__card--alt {
  grid-template-columns: 1fr 260px;
}
.roadmap__card--alt .roadmap__img-area { order: 2; }
.roadmap__card--alt .roadmap__content  { order: 1; }

.roadmap__img-area {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.roadmap__circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 8px rgba(227, 6, 19, 0.12);
}
.roadmap__circle img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.roadmap__img-area::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #df2b2f;
  z-index: 1;
  top: -8px;
  right: -8px;
}
.roadmap__card--alt .roadmap__img-area::before {
  right: auto;
  left: -8px;
}
.roadmap__number {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #fff;
  font-weight: 900;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.roadmap__card--alt .roadmap__number {
  left: auto;
  right: -6px;
}

.roadmap__content h4 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
  line-height: 1.25;
}
.roadmap__content p {
  font-size: 0.875rem;
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.roadmap__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #df2b2f;
  transition: gap 0.15s;
}
.roadmap__cta:hover { gap: 0.625rem; }
.roadmap__app-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0.75rem;
}
.roadmap__app-btns img { height: 36px; width: auto; }
.roadmap__qr {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.roadmap__qr-label {
  font-size: 0.75rem;
  color: #df2b2f;
  font-weight: 700;
}
.roadmap__qr img { width: 72px; height: 72px; border-radius: 4px; }
.roadmap__app-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 2px solid #df2b2f;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
  transition: background 0.2s;
}
.roadmap__app-link:hover { background: rgba(227,6,19,0.04); }

.roadmap__road {
  width: 100%;
  height: 70px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.roadmap__road svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.roadmap__road--odd  { transform: scaleX(1); }
.roadmap__road--even { transform: scaleX(-1); }

@media (max-width: 768px) {
  .roadmap__card,
  .roadmap__card--alt {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.25rem;
    padding: 1.5rem 1rem;
  }
  .roadmap__card--alt .roadmap__img-area { order: -1; }
  .roadmap__card--alt .roadmap__number { left: -6px; right: auto; }
  .roadmap__card--alt .roadmap__img-area::before { left: auto; right: -8px; }
  .roadmap__img-area { justify-content: center; }
  .roadmap__circle { width: 140px; height: 140px; }
  .roadmap__img-area::before { width: 160px; height: 160px; }
  .roadmap__content h4 { font-size: 1.05rem; }
  .roadmap__app-btns { justify-content: center; }
  .roadmap__app-link { justify-content: center; }
  .roadmap__qr { display: none; }
  .roadmap__road { height: 50px; }
  .roadmap__title { font-size: 1.5rem; margin-bottom: 2rem; }
}

.reviews-section {
  background: #1a1a1a;
  padding-block: 4rem;
}
.reviews-section h2 {
  color: #fff;
  text-align: center;
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-inline: auto;
}
.reviews-stars {
  display: flex;
  justify-content: center;
  gap: 0.375rem;
  margin-bottom: 1rem;
}
.star-icon { width: 28px; height: 28px; fill: #00b67a; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 0;
}

.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.2);
}

.review-card::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: #00b67a;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  margin-bottom: 0.75rem;
}

.review-card__quote { display: none; }

.review-card__text {
  font-size: 0.9rem;
  color: #2d2d2d;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  font-style: normal;
  padding-top: 0;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid #f0f0f0;
}
.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #df2b2f !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  border: none !important;
}
.review-card__name {
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
}
.review-card__mini-stars { display: flex; gap: 2px; }
.review-mini-star { width: 14px; height: 14px; fill: #00b67a; }

.review-card__verified {
  font-size: 0.7rem;
  color: #00b67a;
  font-weight: 600;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  align-self: flex-start;
}

@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-section h2 { font-size: 1.4rem; }
}

.tp-reviews {
  background: #fff;
  padding-block: 3rem;
  border-top: 1px solid #f0f0f0;
}
.tp-reviews__inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.5rem;
  align-items: center;
}
.tp-reviews__summary {
  border-right: 1px solid #e8e8e8;
  padding-right: 2.5rem;
}
.tp-reviews__excellent {
  font-size: 1.5rem;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}
.tp-reviews__stars-big {
  display: flex;
  gap: 4px;
  margin-bottom: 0.75rem;
}
.tp-reviews__stars-big svg {
  width: 32px;
  height: 32px;
  fill: #00b67a;
}
.tp-reviews__based {
  font-size: 0.8rem;
  color: #4a4a4a;
  margin-bottom: 0.75rem;
}
.tp-reviews__based a { color: #1a1a1a; font-weight: 700; text-decoration: underline; }
.tp-reviews__tp-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.875rem;
  color: #1a1a1a;
}
.tp-reviews__tp-star {
  width: 24px;
  height: 24px;
  fill: #00b67a;
}

.tp-reviews__carousel-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  overflow: hidden;
}
.tp-reviews__track {
  display: flex;
  gap: 1rem;
  overflow: hidden;
  flex: 1;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.tp-reviews__card {
  background: #f8f8f8;
  border-radius: 10px;
  padding: 1.25rem;
  flex: 0 0 calc(33.333% - 14px);
  min-width: 0;
  max-width: none;
  height: auto;
  box-sizing: border-box;
}
.tp-reviews__card-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.625rem;
}
.tp-reviews__card-stars svg {
  width: 18px;
  height: 18px;
  fill: #00b67a;
}
.tp-reviews__card-title {
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tp-reviews__card-text {
  font-size: 0.8rem;
  color: #4a4a4a;
  line-height: 1.55;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tp-reviews__card-author {
  font-size: 0.75rem;
  color: #9e9e9e;
  margin: 0;
}
.tp-reviews__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #e8e8e8;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.tp-reviews__arrow:hover { border-color: #df2b2f; background: #df2b2f; color: #fff; }
.tp-reviews__arrow svg { stroke: currentColor; }
.tp-reviews__showing {
  text-align: center;
  font-size: 0.75rem;
  color: #9e9e9e;
  margin-top: 1.25rem;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .tp-reviews__inner { grid-template-columns: 1fr; }
  .tp-reviews__summary {
    border-right: none;
    border-bottom: 1px solid #e8e8e8;
    padding-right: 0;
    padding-bottom: 1.5rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .tp-reviews__card { flex: 0 0 calc(50% - 10px); min-width: 0; }
}
@media (max-width: 640px) {
  .tp-reviews__card { flex: 0 0 100%; min-width: 0; }
}

.social-section {
  background: #fff;
  padding-block: 3.5rem;
}
.social-section h2 {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 900;
  color: #df2b2f;
  margin-bottom: 0.5rem;
}
.social-section > .container > p {
  text-align: center;
  color: #4a4a4a;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.social-tabs {
  display: flex;
  gap: 0.625rem;
  justify-content: flex-start;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.social-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  border: 2px solid #e8e8e8;
  border-radius: 9999px;
  background: #fff;
  color: #1a1a1a;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.social-tab svg { width: 16px; height: 16px; }
.social-tab.is-active {
  border-color: transparent;
  background: #df2b2f;
  color: #fff;
}
.social-tab.is-active svg path,
.social-tab.is-active svg rect,
.social-tab.is-active svg line { stroke: #fff; }
.social-tab:not(.is-active):hover { border-color: #df2b2f; color: #df2b2f; }

.social-feed {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.social-feed.hidden { display: none !important; }

.social-item {
  aspect-ratio: 9/16;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  position: relative;
  background: #1a1a1a;
  transition: transform 0.25s ease;
}
.social-item:hover { transform: scale(1.03); }
.social-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.social-item::after {
  content: '';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'%3E%3Ccircle cx='30' cy='30' r='29' fill='rgba(0,0,0,0.45)'/%3E%3Cpolygon points='24,18 44,30 24,42' fill='white'/%3E%3C/svg%3E") center/48px 48px no-repeat;
  opacity: 0;
  transition: opacity 0.2s;
}
.social-item:hover::after { opacity: 1; }

.social-item__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.25);
}
.social-item__play svg {
  width: 36px;
  height: 36px;
  fill: rgba(255,255,255,0.9);
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.5));
}

.social-bottom {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.social-bottom p {
  margin: 0;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .social-feed { grid-template-columns: repeat(2, 1fr); }
  .social-item { aspect-ratio: 4/5; }
}

.location-section {
  background: #f8f8f8;
  padding-block: 4rem;
}

.location-section > .container > h2 {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 2rem;
}

.location-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.location-content h3 {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.25;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  max-width: 340px;
}
.location-content > p {
  font-size: 0.875rem;
  color: #4a4a4a;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  max-width: 380px;
}
.location-content > p a { color: #4a4a4a; }
.location-content > p a:hover { color: #df2b2f; }

.location-form {
  display: flex;
  max-width: 380px;
  border: 2px solid #e8e8e8;
  border-radius: 9999px;
  overflow: hidden;
  transition: border-color 0.2s;
  background: #fff;
  margin-bottom: 1rem;
}
.location-form:focus-within { border-color: #df2b2f; }
.location-form input {
  flex: 1;
  padding: 0.75rem 1.25rem;
  border: none;
  outline: none;
  font-size: 0.9rem;
  background: transparent;
}
.location-form button {
  padding: 0.75rem 1rem;
  background: #df2b2f;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  border-radius: 0 9999px 9999px 0;
  transition: background 0.2s;
}
.location-form button:hover { background: #b3000e; }

.location-see-all {
  display: inline-block;
  background: #df2b2f;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.625rem 1.75rem;
  border-radius: 9999px;
  transition: background 0.2s;
  margin-top: 0.5rem;
}
.location-see-all:hover { background: #b3000e; color: #fff; }

.location-map {
  width: 240px;
  flex-shrink: 0;
  position: relative;
}
.location-map img {
  width: 100%;
  height: auto;
}

.become-section {
  background: var(--color-white);
  padding-block: 3.5rem;
  border-top: 1px solid #e8e8e8;
}
.become-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
}
.become-img-wrap {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.become-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.become-content h2 {
  color: #1a1a1a;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.become-content p { color: #4a4a4a; margin-bottom: 1.5rem; }

@media (max-width: 900px) {
  .location-inner { grid-template-columns: 1fr; }
  .location-map { display: none; }
  .location-content h3 { max-width: none; }
  .become-inner { grid-template-columns: 1fr; text-align: center; }
  .become-img-wrap {
    width: 240px;
    height: 240px;
    margin: 0 auto;
  }
}

.services-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.services-track-wrap {
  flex: 1;
  overflow: hidden;
}
.carousel-btn--prev,
.carousel-btn--next {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.roadmap__road {
  width: 100%;
  height: 80px;
  margin: -12px 0;
  z-index: 1;
}
.roadmap__road svg { display: block; }

@media (max-width: 768px) {

  .roadmap__road {
    height: 56px;
    margin: -6px 0;
  }
}