/* @font-face {
  font-family: 'Montserrat';
  src: url('./fonts/Montserrat.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
} */

@font-face {
  font-family: 'Gilroy';
  src: url('./fonts/Gilroy.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Basic reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --bg: #f7f7f9;
  --muted: #9b8f88;
  --accent: #b98f66;
  --dark: #222;
  --card: #fff;
  --glass: rgba(255, 255, 255, 0.6);
}

body {
  font-size: 16px;
  line-height: 1.4;
  color: var(--dark);
  background: rgba(241, 246, 255, 1);
}

.container {
  max-width: 1440px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.4s, color 0.3s;
  border: none;
  cursor: pointer;
  -webkit-transition: background 0.4s, color 0.3s;
  -moz-transition: background 0.4s, color 0.3s;
  -ms-transition: background 0.4s, color 0.3s;
  -o-transition: background 0.4s, color 0.3s;
}

.btn--red {
  border-radius: 4.7px;
  background: rgba(255, 0, 0, 1);
  padding: 11.75px 16.45px 11.75px 16.45px;
  box-shadow: 0 2px 12px #e5393533;
  color: rgba(255, 255, 255, 1);
  font-family: 'Montserrat';
  font-size: 16.45px;
  font-weight: 700;
  line-height: 25px;
  text-align: center;
}

.btn--red:hover {
  background: #be1134;
}

.btn--dark-red {
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Montserrat';
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  letter-spacing: -1%;
  padding: 10px 14px 10px 14px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  cursor: pointer;
  box-shadow: inset -1px -1px 5.800000190734863px 0px rgba(139, 139, 139, 0.23), 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  background: linear-gradient(171.16deg, rgba(255, 0, 0, 0.09),
      rgba(255, 0, 0, 0.09) 100%), radial-gradient(176.38% 72.18% at 95% 90%,
      rgba(255, 0, 0, 0.5), rgba(2.4394900798797607, 5.949974060058594, 3.317110776901245, 0) 100%),
    rgba(38, 38, 38, 0);
}

.btn--dark-red:hover {
  background: linear-gradient(131.16deg, rgba(255, 0, 0, 0.05),
      rgba(255, 0, 0, 0.05) 100%), radial-gradient(96.38% 72.18% at 85% 80%,
      rgba(255, 0, 0, 0.5), rgba(2.4394900798797607, 5.949974060058594, 3.317110776901245, 0) 100%),
    rgba(97, 97, 97, 0);
}

.btn--dark {
  background: #222;
  padding: 11.75px 16.45px 11.75px 16.45px;
  border-radius: 4.7px;
  background: rgba(18, 17, 16, 1);
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Montserrat';
  font-size: 16.45px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: -1%;
  text-align: center;
}

.btn--dark:hover {
  background: #444;
}

/* === HERO SECTION === */
body {
  background: #111;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.hero {
  background: url('../img/hero_bg.webp') no-repeat center center/cover;
  /* min-height: 90vh; */
  overflow: hidden;
}

.hero__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 32px 32px;
  position: relative;
  z-index: 2;
}

.hero__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 112px;
}

.hero__nav ul {
  max-width: 620px;
  width: 100%;
  border-radius: 8px;
  background: rgba(18, 18, 16, 1);
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  gap: 4;
  padding: 4px;
  list-style: none;
}

.hero__nav a {
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Montserrat';
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  letter-spacing: -1%;
  text-align: left;
  border-radius: 8px;
  background: rgba(18, 18, 16, 1);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  padding: 10px 14px 10px 14px;
  display: block;
}

.hero__nav a:hover {
  border-radius: 4px;
  background: rgba(45, 45, 45, 1);
  color: rgba(255, 255, 255, 1);
  font-family: 'Montserrat';
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  letter-spacing: -1%;
  text-align: left;
  padding: 10px 14px 10px 14px;
}

.hero__logo-small {
  height: 38px;
}

.hero__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}

.hero__wrapper {
  z-index: 2;
}

.hero__logo-big {
  max-width: 923px;
  width: 100%;
  margin-bottom: 68px;
  filter: drop-shadow(0 4px 24px #000a);
}

.hero__wrapper h1 {
  color: rgba(255, 255, 255, 0.91);
  font-family: 'Montserrat';
  font-size: 32px;
  font-weight: 700;
  line-height: 39px;
  letter-spacing: -1%;
  text-align: left;
  text-transform: uppercase;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero__wrapper p {
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Montserrat';
  font-size: 18.8px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: -1%;
  text-align: left;
  margin-bottom: 27px;
  max-width: 605px;
}

.hero__buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 343px;
}

.hero__right {
  flex: 1 1 400px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-width: 320px;
  z-index: 2;
}

.hero__mascot {
  position: absolute;
  top: 112px;
  right: 20px;
  max-width: 1010px;
  width: 100%;
  filter: drop-shadow(0 8px 32px #000b);
  user-select: none;
  pointer-events: none;
  display: block;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .hero__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .hero__right {
    justify-content: center;
    width: 100%;
    margin-top: 24px;
  }

  .hero__mascot {
    width: 320px;
  }
}

@media (max-width: 600px) {
  .hero__header {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }

  .hero__logo-small {
    height: 32px;
  }

  .hero__logo-big {
    width: 260px;
  }

  .hero__speedometer {
    width: 200px;
  }

  .hero__mascot {
    width: 180px;
  }

  .hero__wrapper h1 {
    font-size: 1.2rem;
  }

  .btn {
    padding: 10px 16px;
    font-size: 0.95rem;
  }
}

/* trust-section */
.trust-section {
  padding: 133px 131px 136px;
  background: #070707;
  color: #fff;
  position: relative;
  overflow: visible;
}

.trust-section .container {
  padding-left: 104px;
  padding-right: 104px;
}

.trust-grid {
  display: flex;
  justify-content: space-between;
}

/* Card base */
.trust-card {
  max-width: 311px;
  width: 100%;
  height: 389px;
  border-radius: 20px;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(6px);
}

/* Neon frames via pseudo-element */
.trust-card::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 14px;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.01));
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
  mix-blend-mode: overlay;
}

/* Purple variant */
.trust-card--purple {
  background: url('../img/trust_purple_card.png') no-repeat center center/cover;
}

/* Red variant */
.trust-card--red {
  background: url('../img/trust_red_card.png') no-repeat center center/cover;
}

/* Card inner content above pseudo-elements */
.trust-card__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Icon */
.trust-icon {
  width: 120px;
  height: 120px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

/* Titles / text */
.trust-title {
  margin-top: 267px;
  margin-bottom: 7px;
  color: rgba(245, 246, 246, 1);
  font-family: 'Montserrat';
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
}

.trust-text {
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Montserrat';
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: 0%;
  text-align: center;
  max-width: 238px;
}

/* Center bike */
.trust-center {
  width: 360px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.trust-center__frame {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.7));
}

.trust-bike {
  max-width: 100%;
  height: auto;
  transform: translateY(6px) scale(1.02);
  display: block;
  user-select: none;
  pointer-events: none;
}

/* @media (max-width: 980px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .trust-center {
    order: 0;
    width: 260px;
    height: 260px;
    margin: 0 auto;
  }

  .trust-card {
    width: 320px;
    height: auto;
    padding: 22px;
  }
} */

@media (max-width: 420px) {
  .trust-card {
    width: 100%;
    border-radius: 16px;
    padding: 18px;
  }

  .trust-icon {
    width: 92px;
    height: 92px;
    border-radius: 12px;
  }

  .trust-title {
    font-size: 13px;
  }

  .trust-text {
    font-size: 12px;
  }

  .trust-center {
    width: 220px;
    height: 220px;
  }
}

/* ABOUT SECTION */
.about-section {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: url('/img/about_bg.png') no-repeat center center/cover;
}

.about-section>.container {
  padding: 20px 0 45px 200px;
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
  z-index: 2;
}

.about-left {
  display: flex;
  align-items: flex-start;
}

.team-card {
  max-width: 391px;
}

.team-card .avatars {
  display: flex;
  gap: -10px;
  margin-bottom: 18px;
}

.team-card h4 {
  margin-bottom: 18px;
  color: rgba(245, 246, 246, 1);
  font-family: 'Montserrat';
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  letter-spacing: 0%;
  text-align: left;
  text-transform: uppercase;
}

.team-card p {
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Montserrat';
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: 0%;
  text-align: left;
}

.about-right {
  position: relative;
  text-align: right;
}

.about-head h2 {
  font-family: 'Montserrat';
  font-size: 56px;
  font-weight: 400;
  line-height: 68px;
  letter-spacing: -2%;
  text-align: right;
  margin-bottom: 70px;
  margin-top: 65px;
  max-width: 735px;
  width: 100%;
  margin-left: auto;
}

.about-head .accent {
  color: #ff2b2b;
  font-weight: 800;
}

.about-actions {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  margin-right: 25px;
  justify-content: end;
}

.map-cards {
  display: flex;
  margin-left: 124px;
  margin-top: 46px;
}

.map-card {
  padding: 32px 16px 0 16px;
}

.map-card--main {
  left: 6%;
  top: 12%;
  max-width: 376px;
  width: 100%;
  min-height: 401px;
  max-height: 401px;
  background: url('../img/about_map_card_main_bg.png') no-repeat center center/cover;
}

.map-card__logo {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  align-items: center;
}

.map-card--main h5 {
  font-family: 'Gilroy';
  font-size: 24px;
  font-weight: 500;
  line-height: 29px;
  text-align: left;
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 12px;
  margin-top: 30px;
}

.map-card--main h5>span {
  color: #FF0000;
  font-weight: 700;
  font-style: normal;
}

.map-card--main p {
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Montserrat';
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: -1.6%;
  text-align: left;
}

.map-card-small--wrapper {
  max-width: 500px;
  width: 100%;
  margin-left: 140px;
  margin-top: 180px;
}

.map-card--small {
  max-width: 275px;
  width: 100%;
  height: auto;
}

.map-card--1 {
  padding: 22px 11px 22px 21px;
  background: url('../img/about_map_card_1_bg.png') no-repeat center center/cover;
}

.map-card--2 {
  padding: 26px 16px 28px 20px;
  background: url('../img/about_map_card_2_bg.png') no-repeat center center/cover;
  transform: translateX(76%) translateY(-50%);
  -webkit-transform: translateX(76%) translateY(-50%);
  -moz-transform: translateX(76%) translateY(-50%);
  -ms-transform: translateX(76%) translateY(-50%);
  -o-transform: translateX(76%) translateY(-50%);
}

.map-card--1 p {
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Montserrat';
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -1.6%;
  text-align: left;
  margin-bottom: 106px;
}

.map-card--1 p>span {
  font-weight: 600;
}

.map-card--2 p {
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Gilroy';
  font-size: 24px;
  font-weight: 500;
  line-height: 29px;
  letter-spacing: -1.6%;
  text-align: left;
}

.map-card--2 svg {
  display: block;
  margin-left: auto;
  margin-right: 0;
  margin-bottom: 5px;
}

@media (max-width: 1000px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-section::before {
    left: -30%;
    width: 120%;
    height: 60%;
    top: -30%;
    filter: blur(20px) brightness(0.35);
  }

  .map-cards {
    position: relative;
    left: 0;
    top: 12px;
    width: 100%;
    height: auto;
    display: block;
    padding-top: 12px;
  }

  .map-card {
    position: relative;
    margin-bottom: 12px;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
  }

  .about-head h2 {
    font-size: 32px;
  }
}

/* EXTREME SECTION */
.extreme-section {
  padding-top: 100px;
  background: url('../img/extreme_bg.webp') no-repeat center center/cover;
  margin-bottom: 173px;
}

.extreme-section .container {
  padding-left: 32px;
  padding-right: 32px;
}

.extreme-backdrop-wrapper {
  backdrop-filter: blur(6px);
  background: rgba(0, 0, 0, 0.40);
  padding-left: 27px;
  padding-right: 26px;
}

.extreme-intro {
  margin-bottom: 96px;
}

.extreme-intro .badge {
  display: flex;
  align-items: center;
  border-radius: 8px;
  background: rgba(18, 18, 16, 1);
  padding: 4px;
  max-width: 349px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 32px;
}

.extreme-intro .badge p {
  display: block;
  border-radius: 4px;
  background: rgba(45, 45, 45, 1);
  padding: 10px 14px 10px 14px;
  box-sizing: border-box;
  margin-right: 6px;
  color: rgba(255, 255, 255, 1);
  font-family: 'Montserrat';
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
}

.extreme-intro .badge img {
  margin-right: 6px;
}

.extreme-title {
  font-family: 'Montserrat';
  font-size: 56px;
  font-weight: 400;
  line-height: 68px;
  letter-spacing: -2%;
  text-align: left;
  margin-bottom: 128px;
}

.extreme-title .accent-red {
  color: #FF0000;
  display: inline-block;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.extreme-lead-wrapper {
  display: flex;
  align-items: left;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
  width: 100%;
  padding-left: 36px;
}

.extreme-lead {
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Montserrat';
  font-size: 32px;
  font-weight: 300;
  line-height: 39px;
  letter-spacing: -2%;
  text-align: left;
  max-width: 869px;
  width: 100%;
}

.extreme-lead span {
  font-weight: 700;
}

.extreme-actions .btn {
  margin-right: 5px;
}

/* Cards grid */
.extreme-cards {
  margin-bottom: 98px;
}

.cards-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.service-card {
  min-height: 120px;
  display: flex;
  transition: transform .18s ease, box-shadow .18s ease;
  cursor: pointer;
  max-width: 378px;
  width: 100%;
}

.service-card img {
  inset: 0;
  max-width: 181px;
  max-height: 219px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
  transform-origin: center;
  transition: transform .28s ease;
  filter: saturate(1.05) contrast(0.95);
}

.service-card .card-index {
  background: url('../img/extreme_dark_card.png') no-repeat center center/cover;
  padding: 16px 9px;
  margin-right: 16px;
  box-sizing: border-box;
  position: relative;
  max-width: 181px;
  width: 100%;
}

.service-card .card-index::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 22px;
  height: 22px;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'><rect width='32' height='32' x='0' y='0' fill='rgb(255,255,255)' fill-opacity='0'/><path d='M15 7L15 13C15 13.5304 14.7893 14.0391 14.4142 14.4142C14.0391 14.7893 13.5304 15 13 15L7 15C6.46957 15 5.96086 14.7893 5.58579 14.4142C5.21071 14.0391 5 13.5304 5 13L5 7C5 6.46957 5.21071 5.96086 5.58579 5.58579C5.96086 5.21071 6.46957 5 7 5L13 5C13.5304 5 14.0391 5.21071 14.4142 5.58579C14.7893 5.96086 15 6.46957 15 7ZM25 5L19 5C18.4696 5 17.9609 5.21071 17.5858 5.58579C17.2107 5.96086 17 6.46957 17 7L17 13C17 13.5304 17.2107 14.0391 17.5858 14.4142C17.9609 14.7893 18.4696 15 19 15L25 15C25.5304 15 26.0391 14.7893 26.4142 14.4142C26.7893 14.0391 27 13.5304 27 13L27 7C27 6.46957 26.7893 5.96086 26.4142 5.58579C26.0391 5.21071 25.5304 5 25 5ZM13 17L7 17C6.46957 17 5.96086 17.2107 5.58579 17.5858C5.21071 17.9609 5 18.4696 5 19L5 25C5 25.5304 5.21071 26.0391 5.58579 26.4142C5.96086 26.7893 6.46957 27 7 27L13 27C13.5304 27 14.0391 26.7893 14.4142 26.4142C14.7893 26.0391 15 25.5304 15 25L15 19C15 18.4696 14.7893 17.9609 14.4142 17.5858C14.0391 17.2107 13.5304 17 13 17ZM25 17L19 17C18.4696 17 17.9609 17.2107 17.5858 17.5858C17.2107 17.9609 17 18.4696 17 19L17 25C17 25.5304 17.2107 26.0391 17.5858 26.4142C17.9609 26.7893 18.4696 27 19 27L25 27C25.5304 27 26.0391 26.7893 26.4142 26.4142C26.7893 26.0391 27 25.5304 27 25L27 19C27 18.4696 26.7893 17.9609 26.4142 17.5858C26.0391 17.2107 25.5304 17 25 17Z' fill='rgb(255,255,255)' fill-opacity='0.5' fill-rule='nonzero'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 3;
  opacity: 0.95;
}

.service-card .card-index span {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Geist Mono';
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  text-align: left;
  margin-bottom: 27px;
}

.service-card .card-index h4 {
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Gilroy';
  font-size: 16px;
  font-weight: 600;
  line-height: 17px;
  text-align: left;
  margin-bottom: 27px;
}

.service-card .card-index p {
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Gilroy';
  font-size: 12px;
  font-weight: 500;
  line-height: 17px;
  text-align: left;
}

/* hover */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.65);
}

.service-card:hover img {
  transform: scale(1.06);
}

/* feature block */
.extreme-feature {
  border-radius: 16px;
  background: rgba(11, 11, 11, 1);
  max-height: 527px;
  margin-bottom: 160px;
}

.extreme-feature .container {
  padding-left: 32px;
  padding-right: 32px;
}


.feature-media-wrapper {
  display: flex;
}

.feature-media img {
  width: 100%;
  max-width: 883px;
  border-radius: 20px;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.feature-tag {
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Geist Mono';
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 81px;
}

.feature-info {
  margin-left: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-info h3 {
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Gilroy';
  font-size: 32px;
  font-weight: 500;
  line-height: 38px;
  letter-spacing: -1.6%;
  text-align: left;
  margin-top: 40px;
  margin-bottom: 12px;
}

.feature-info p {
  max-width: 412px;
  width: 100%;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Montserrat';
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  letter-spacing: -1.6%;
  text-align: left;
}

.feature-info p>span {
  font-weight: 700;
}

.price {
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Geist Mono';
  font-size: 32px;
  font-weight: 500;
  line-height: 38px;
  letter-spacing: -1.6%;
  text-align: left;
  margin-bottom: 12px;
}

.feature-service {
  display: flex;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
}

.service-panel {
  width: 100%;
  max-width: 648px;
  position: relative;

  box-sizing: border-box;
}

.service-tag {
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Geist Mono';
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  letter-spacing: -1%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 96px;
}

/* layout */
.service-card-feature {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  position: relative;
}

/* left info card */
.service-card-left {}

.service-card-left-title {
  background: url('../img/service_card_title_bg.webp') no-repeat center center/contain;
  padding: 40px 16px;
  max-width: 275px;
  width: 100%;
  box-sizing: border-box;
}

.service-card-left-text-wrapper {
  background: url('../img/service_card_text_bg.webp') no-repeat center center/contain;
  padding: 17px 16px;
  max-width: 275px;
  width: 100%;
  box-sizing: border-box;
}

.service-card-left-title svg {
  margin-left: auto;
  margin-right: 0;
  display: block;
  margin-bottom: 3px;
}

.service-card-left-title h4 {
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Gilroy';
  font-size: 24px;
  font-weight: 500;
  line-height: 29px;
  text-align: left;
}

.service-card-left-text p {
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Montserrat';
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: -1.6%;
  text-align: left;
  max-width: 243px;
  width: 100%;
  margin-bottom: 17px;
}

.service-card-left-text p>span {
  font-style: italic;
}

/* bottom row inside left card */
.service-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.service-price {
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Geist Mono';
  font-size: 24px;
  font-weight: 500;
  line-height: 29px;
  letter-spacing: -1.6%;
  text-align: left;
}

.service-price .currency {
  font-size: 14px;
  font-weight: 600;
  margin-left: 6px;
  opacity: 0.9;
}

/* white button variant */
.btn--white {
  border-radius: 4px;
  background: rgba(250, 250, 250, 1);
  padding: 10px 14px 10px 14px;
  color: rgba(5, 5, 5, 1);
  font-family: 'Montserrat';
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  letter-spacing: -1%;
  text-align: left;
}

/* image on the right, overlapping */
.service-card-image {
  width: 100%;
}

.service-card-image img {
  max-width: 466px;
  width: 100%;
  position: absolute;
  top: 30px;
  right: -66px;
}

.service-card-image-baggy img {
  top: -7px;
  right: -80px;
  top: -7px;
  right: -28px;
  max-width: 443px;
}

/* === SERVICES SECTION === */
.services-section .services-feature {}

.services-section .container {
  padding-left: 64px;
  padding-right: 64px;
}

.services-section .services-tag {
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Geist Mono';
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 81px;
}

.services-section .services-media-wrapper {
  display: flex;
  margin-bottom: 100px;
}

.services-section .services-media img {
  width: 100%;
  max-width: 883px;
  border-radius: 20px;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.services-section .services-info {
  margin-left: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.services-section .services-info .services-info-tag {
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Geist Mono';
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 120px;
}

.services-section .services-info h3 {
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Gilroy';
  font-size: 32px;
  font-weight: 500;
  line-height: 38px;
  letter-spacing: -1.6%;
  text-align: left;
  margin-top: 40px;
  margin-bottom: 12px;
}

.services-section .services-info p {
  max-width: 412px;
  width: 100%;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Montserrat';
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  letter-spacing: -1.6%;
  text-align: left;
}

.services-section .services-info p>span {
  font-weight: 700;
}

.services-section .services-price {
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Geist Mono';
  font-size: 32px;
  font-weight: 500;
  line-height: 38px;
  letter-spacing: -1.6%;
  text-align: left;
  margin-bottom: 12px;
}

.services-section-cards {
  display: flex;
  justify-content: space-between;
  margin-top: 196px;
}

.services-section .service-card-image img {
  max-width: 361px;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  height: 100%;
}

.services-section .service-card-left-text {
  margin-bottom: 100px;
}

.services-section .service-card-feature {
  position: static;
}

.services-section .service-tag {
  z-index: 99;
}

.cta-section {
  background: #070707;
  color: #fff;
  padding: 144px 0;
}

.cta-section .container {
  padding: 0 152px;
}

.cta {
  display: flex;
  align-items: center;
  min-height: 240px;
}

.cta__title {
  font-family: 'Montserrat';
  font-size: 56px;
  font-weight: 400;
  line-height: 68px;
  letter-spacing: -2%;
  text-align: left;
  margin-bottom: 40px;
}

.cta__highlight {
  color: #ff0000;
  letter-spacing: 0.02em;
  font-weight: 700;
}

.cta__lead {
  margin-bottom: 44px;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Gilroy';
  font-size: 24px;
  font-weight: 500;
  line-height: 29px;
  letter-spacing: -1.6%;
  text-align: left;
}

/* Buttons */
.btn--lg {
  padding: 12px 22px;
  font-size: 14px;
  border-radius: 8px;
  display: inline-block;
  vertical-align: middle;
}

.cta__actions .btn+.btn {
  margin-left: 12px;
}

.site-footer {
  background: #060606;
  color: #e6e6e6;
  padding: 56px 0 40px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.2px;
  font-size: 14px;
}

.footer__inner {
  padding: 0 152px;
}

.footer__top {
  margin-bottom: 64px;
}

.footer__email {
  min-width: 260px;
}

.footer__label {
  display: block;
  margin-bottom: 16px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Geist Mono';
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  letter-spacing: -1%;
  text-align: left;
}

.footer__email-link {
  display: inline-block;
  color: rgba(255, 255, 255, 1);
  font-family: 'Montserrat';
  font-size: 32px;
  font-weight: 400;
  line-height: 39px;
  letter-spacing: -2%;
  text-align: left;
  text-decoration: none;
  margin-bottom: 64px;
}

.footer__social {}

.social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.social__item {
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: #f4f4f4;
  text-decoration: none;
  transition: transform .12s ease, background .12s ease;
}

.social__item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.05);
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 6px;
}

.footer__col {
  min-width: 0;
}

.quick-label {
  margin-bottom: 20px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Geist Mono';
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  letter-spacing: -1%;
  text-align: left;
}

.footer-card {
  border-radius: 4px;
  background: rgba(18, 17, 16, 1);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 120px;
  text-align: center;
}

.footer-card__head {
  padding: 10px 14px 10px 14px;
  color: rgba(255, 255, 255, 1);
  font-family: 'Montserrat';
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  letter-spacing: -1%;
  text-align: center;
  border-radius: 4px;
  background: rgba(45, 45, 45, 1);
}

.footer-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Montserrat';
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: -1%;
  text-align: center;
  margin-top: 7px;
}

.footer-card__list li {
  margin-bottom: 16px;
}

.footer-card__list a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
}

.footer-card__list--center {
  align-items: center;
  text-align: center;
}

.footer-card__list--right {
  align-items: center;
  text-align: center;
}

.footer-card__list li.muted {
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Montserrat';
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  letter-spacing: -1%;
  text-align: left;
}

.footer-card__list li.muted-light {
  color: rgba(255, 255, 255, 1);
}

.footer__bottom {
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 14px;
  color: #8f8f8f;
  font-size: 13px;
}



















.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}



/* === RESPONSIVE STYLES === */

@media (max-width: 1440px) {
  .container {
    max-width: 1200px;
  }

  .hero__logo-big {
    max-width: 800px;
  }

  .about-section>.container {
    padding-left: 120px;
  }

  .services-section .container {
    padding-left: 48px;
    padding-right: 48px;
    padding-bottom: 40px;
  }

  .trust-section {
    padding: 120px 80px;
  }

  .services-section-cards {
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    justify-content: center;
    align-items: center;
  }

  .services-section .service-card-image img {
    height: 100%;
  }

  .extreme-section .container {
    padding-left: 0;
    padding-right: 0;
  }

  .service-card-image img {
    max-width: 360px;
    width: 100%;
    position: absolute;
    top: 30px;
    right: -21px;
  }

  .about-head h2 {
    font-size: 48px;
    line-height: 54px;
  }

  .hero__mascot {
    top: 164px;
    right: 20px;
    max-width: 919px;
    width: 100%;
  }
}

/* Desktop and large tablets (1200px and smaller) */
@media (max-width: 1200px) {
  .btn--red {
    width: 100%;
    max-width: 300px;
  }

  .btn--dark {
    width: 100%;
    max-width: 300px;
  }

  .container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero__container {
    padding: 24px;
  }

  .hero__wrapper h1 {
    font-size: 28px;
    line-height: 34px;
  }

  .hero__buttons {
    margin-bottom: 220px;
  }

  .trust-section {
    padding: 100px 48px;
  }

  .about-section>.container {
    padding-left: 80px;
    padding-right: 48px;
  }

  .map-cards {
    margin-left: 20px;
    margin-top: 90px;
  }

  .extreme-lead-wrapper {
    padding-left: 40px;
  }

  .service-card-image img {
    max-width: 400px;
    right: -40px;
  }

  .hero__mascot {
    top: 335px;
    right: -1px;
    max-width: 590px;
    width: 100%;
  }

  .trust-section .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .map-card-small--wrapper {
    margin-left: 51px;
    margin-top: 210px;
  }

  .services-section .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .services-section-cards {
    gap: 16px;
  }
}

/* Standard tablets and smaller laptops (1024px and smaller) */
@media (max-width: 1024px) {
  .hero__content {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero__right {
    justify-content: center;
    width: 100%;
    margin-top: 24px;
  }

  .hero__mascot {
    position: relative;
    right: 0;
    top: 0;
    max-width: 480px;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .map-cards {
    position: relative;
    left: 0;
    margin-left: 0;
    margin-top: 12px;
  }

  .extreme-section .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .service-card-image img {
    position: static;
    max-width: 100%;
  }

  .footer__cols {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .hero__logo-small {
    height: 30px;
  }

  .hero__buttons {
    margin-bottom: 50px;
    justify-content: center;
  }

  .hero__logo-big {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__nav a {
    padding: 10px 7px 10px 14px;
  }

  .trust-bike {
    max-width: 210px;
  }

  .trust-center {
    display: contents;
  }

  .trust-title {
    margin-top: 255px;
    font-size: 15px;
  }

  .about-head h2 {
    font-size: 28px;
    line-height: 37px;
  }

  .about-actions {
    margin-right: 0;
    justify-content: center;
  }

  .map-card-small--wrapper {
    max-width: 500px;
    width: 100%;
    margin-left: 405px;
    margin-top: 1px;
  }

  .trust-card {
    max-width: 310px;
  }

  .trust-section {
    padding: 100px 0;
  }

  .trust-section .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .service-card-feature {
    justify-content: center;
  }

  .services-section-cards .service-card-feature {
    justify-content: start;
  }

  .services-section .services-media-wrapper {
    flex-direction: column;
  }

  .services-section .container {
    padding-left: 27px;
    padding-right: 27px;
  }

  .feature-service {
    gap: 15px;
  }

  .extreme-lead-wrapper {
    padding-left: 10px;
    flex-direction: column;
  }

  .extreme-actions {
    justify-content: center;
    display: flex;
    flex-direction: row;
  }

  .feature-info h3 {
    margin-top: 1px;
  }

  .services-section .services-feature {
    border: 1px solid rgba(255, 255, 255, 0.09);
    padding: 7px;
  }

  .service-panel {
    border: 1px solid rgba(255, 255, 255, 0.09);
  }

  .cta-section .container {
    padding: 0px 28px;
  }

  .cta__title {
    font-size: 43px;
    line-height: 50px;
    max-width: 600px;
  }

  .extreme-lead {
    font-size: 24px;
    line-height: 34px;
  }

  .services-section .service-card-image img {
    /* height: auto; */
  }

  .services-section .service-card-left-text {
    margin-bottom: 68px;
  }

  .services-section-cards {
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    justify-content: center;
    align-items: center;
  }
}

/* Tablets and large phones (768px and smaller) */
@media (max-width: 768px) {
  .hero__header {
    padding: 12px 0;
    gap: 12px;
  }

  .hero__nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    padding: 80px 20px 20px;
    transition: 0.3s;
    z-index: 5;
  }

  .hero__nav.active {
    left: 0;
  }

  .hero__nav ul {
    flex-direction: column;
    width: 100%;
    gap: 20px;
    background: transparent;
  }

  .hero__nav li {
    width: 100%;
  }

  .hero__nav a {
    width: 100%;
    text-align: center;
    font-size: 18px;
    padding: 15px;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:first-child {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .hero__logo-big {
    width: 320px;
    margin-bottom: 28px;
  }

  .trust-section {
    padding: 64px 24px;
  }

  .trust-grid {
    flex-direction: column;
    gap: 28px;
    align-items: center;
  }

  .about-section>.container {
    padding: 20px;
  }

  .map-card--main,
  .map-card--small {
    /* max-width: 100%; */
  }

  .extreme-title,
  .about-head h2 {
    font-size: 30px;
    line-height: 48px;
  }

  .services-section-cards {
    flex-direction: column;
    gap: 24px;
  }

  .footer__cols {
    grid-template-columns: 1fr;
  }

  .cta__title {
    font-size: 40px;
    line-height: 48px;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero__header {
    flex-direction: row;
    align-items: flex-start;
    gap: 18px;
  }

  .hero__logo-small {
    height: 32px;
  }

  .hero__logo-big {
    width: 260px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__mascot {
    max-width: 480px;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__wrapper h1 {
    font-size: 1.2rem;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .hero__buttons {
    margin-bottom: 40px;
  }

  .btn {
    padding: 10px 16px;
    font-size: 0.95rem;
    text-align: center;
  }

  .trust-bike {
    max-width: 250px;
  }

  .trust-section .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .trust-center {
    display: contents;
  }

  .trust-card {
    width: 100%;
    /* max-width: 250px; */
    min-height: 386px;
  }

  .map-card--main {
    padding: 37px;
    margin-left: auto;
    margin-right: auto;
    /* height: 320px;
    width: 300px; */
    background: url(../img/about_map_card_main_bg.png) no-repeat center center / contain;
  }

  .extreme-actions {
    flex-direction: column;
    display: flex;
    text-align: center;
    align-items: center;
  }

  .extreme-lead {
    font-size: 19px;
  }

  .extreme-actions .btn {
    margin-bottom: 10px;
  }

  .extreme-lead-wrapper {
    padding-left: 0;
    flex-direction: column;
  }

  .service-card {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.09);
  }

  .cta .container {
    padding: 0 20px;
  }

  .about-actions {
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    text-align: center;
    align-items: center;
  }

  .map-card-small--wrapper {
    max-width: 375px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 150px;
  }

  .map-card--2 {
    margin-top: 40px;
    background: url(../img/about_map_card_2_bg.png) no-repeat center center / contain;
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
  }

  .map-card--2 p {
    font-size: 18px;
  }

  .cards-grid {
    gap: 40px;
  }

  .service-card-feature {
    justify-content: center;
  }

  .extreme-backdrop-wrapper {
    padding-left: 8px;
    padding-right: 8px;
  }

  .feature-media-wrapper {
    flex-direction: column;
  }

  .feature-info p {
    margin-top: 30px;
    margin-bottom: 50px;
  }

  .feature-service {
    flex-direction: column;
  }

  .service-panel {
    margin-bottom: 30px;
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.09);
  }

  .services-section .services-media-wrapper {
    flex-direction: column;
  }

  .services-section-actions {
    flex-direction: column;
    display: flex;
    text-align: center;
    align-items: center;
  }

  .services-section .services-feature {
    border: 1px solid rgba(255, 255, 255, 0.09);
  }

  .services-section .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .cta-section .container {
    padding: 0px 18px;
  }

  .cta__title {
    font-size: 36px;
    line-height: 44px;
  }

  .cta__lead {
    font-size: 19px;
  }

  .services-section .service-card-image img {
    /* max-width: 100%; */
  }

  .services-section .service-panel {
    padding: 10px;
  }

  .service-card-left-title h4 {
    font-size: 22px;
  }

  .services-section .service-card-left-text {
    margin-bottom: 36px;
    margin-top: 20px;
  }

  .service-card .card-index {
    margin-right: 0;
    padding: 50px 9px;
  }

  .cta__actions .btn+.btn {
    margin-left: 0;
  }

  .cta__actions {
    align-items: center;
    text-align: center;
  }
}

/* Small phones (600px and smaller) */
/* @media (max-width: 600px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero__header {
    flex-direction: row;
    align-items: flex-start;
    gap: 18px;
  }

  .hero__logo-small {
    height: 32px;
  }

  .hero__logo-big {
    width: 260px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__mascot {
    max-width: 480px;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__wrapper h1 {
    font-size: 1.2rem;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .hero__buttons {
    margin-bottom: 40px;
  }

  .btn {
    padding: 10px 16px;
    font-size: 0.95rem;
    text-align: center;
  }

  .trust-bike {
    max-width: 250px;
  }

  .trust-section .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .trust-center {
    display: contents;
  }

  .trust-card {
    width: 100%;
    max-width: 250px;
  }

  .map-card {
    padding: 20px;
  }

  .extreme-actions {
    flex-direction: column;
    display: flex;
  }

  .extreme-lead {
    font-size: 19px;
  }

  .extreme-actions .btn {
    margin-bottom: 10px;
  }

  .extreme-lead-wrapper {
    padding-left: 0;
    flex-direction: column;
  }

  .service-card {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.09);
  }

  .cta .container {
    padding: 0 20px;
  }

  .about-actions {
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
  }

  .map-card-small--wrapper {
    max-width: 500px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 150px;
  }

  .map-card--2 {
    margin-top: 40px;
    background: url(../img/about_map_card_2_bg.png) no-repeat center center / contain;
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
  }

  .map-card--2 p {
    font-size: 18px;
  }

  .cards-grid {
    gap: 40px;
  }

  .service-card-feature {
    justify-content: center;
  }

  .extreme-backdrop-wrapper {
    padding-left: 8px;
    padding-right: 8px;
  }

  .feature-media-wrapper {
    flex-direction: column;
  }

  .feature-info p {
    margin-top: 30px;
    margin-bottom: 50px;
  }

  .feature-service {
    flex-direction: column;
  }

  .service-panel {
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.09);
  }

  .services-section .services-media-wrapper {
    flex-direction: column;
  }

  .services-section-actions {
    flex-direction: column;
    display: flex;
  }

  .services-section .services-feature {
    border: 1px solid rgba(255, 255, 255, 0.09);
  }

  .services-section .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .cta-section .container {
    padding: 0px 18px;
  }

  .cta__title {
    font-size: 36px;
    line-height: 44px;
  }

  .cta__lead {
    font-size: 19px;
  }

  .services-section .service-card-image img {
    max-width: 100%;
  }

  .services-section .service-panel {
    padding: 10px;
  }

  .service-card-left-title h4 {
    font-size: 22px;
  }

  .services-section .service-card-left-text {
    margin-bottom: 36px;
    margin-top: 20px;
  }
} */

/* Very small phones (420px and smaller) */
@media (max-width: 420px) {
  .hero__wrapper p {
    font-size: 14px;
  }

  .services-section-cards .service-card-feature {
    justify-content: center;
    align-items: center;
  }

  .hero__buttons {
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    align-items: center;
  }

  .trust-title {
    margin-top: 220px;
    font-size: 13px;
  }

  .trust-text {
    font-size: 12px;
  }

  .about-head h2 {
    font-size: 26px;
    line-height: 34px;
  }

  .map-card--main {
    min-height: auto;
  }

  .extreme-title {
    font-size: 28px;
    line-height: 34px;
  }

  .footer__email-link {
    font-size: 24px;
  }
}

/* Ultra small devices (320px and smaller) */
@media (max-width: 320px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }

  .hero__wrapper p {
    font-size: 13px;
  }

  .btn {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .trust-card {
    padding: 16px;
  }

  .map-card {
    padding: 16px;
  }

  .extreme-lead {
    font-size: 24px;
    line-height: 32px;
  }
}