@font-face {
  font-family: "UBSans";
  src: url("assets/fonts/UBSans.woff2") format("woff2");
  font-display: swap;
}

body.promo-modal-open {
  overflow: hidden;
}

.promo-modal {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.promo-modal.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.promo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(8px);
}

.promo-modal-dialog {
  position: relative;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  width: min(100%, 820px);
  min-height: 440px;
  overflow: hidden;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.32);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.28s ease;
}

.promo-modal.open .promo-modal-dialog {
  transform: translateY(0) scale(1);
}

.promo-modal-close {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #e7e7e7;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
}

.promo-modal-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #111;
}

.promo-modal-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.promo-modal-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.promo-modal-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.7), transparent 24%),
    linear-gradient(145deg, #ffd83d 0%, #ffbd00 72%, #ff9f00 100%);
}

.promo-modal-visual::before,
.promo-modal-visual::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
}

.promo-modal-visual::before {
  width: 300px;
  height: 300px;
  left: -165px;
  bottom: -150px;
}

.promo-modal-visual::after {
  width: 190px;
  height: 190px;
  top: -90px;
  right: -90px;
}

.promo-modal-visual strong {
  color: #111;
  font-size: clamp(150px, 16vw, 230px);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.1em;
  transform: translateX(-16px);
}

.promo-modal-gift {
  position: absolute;
  top: 36px;
  left: 36px;
  padding: 8px 13px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.promo-modal-rides {
  position: absolute;
  right: 30px;
  bottom: 42px;
  color: #111;
  font-size: 24px;
  font-weight: 900;
  line-height: 0.92;
}

.promo-modal-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 64px 58px 52px;
}

.promo-modal-label {
  display: inline-flex;
  align-self: flex-start;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff5cf;
  color: #765800;
  font-size: 13px;
  font-weight: 700;
}

.promo-modal-copy h2 {
  margin: 20px 0 16px;
  font-size: 43px;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.promo-modal-copy h2 em {
  display: block;
  color: #f5b800;
  font-style: normal;
}

.promo-modal-copy p {
  margin: 0;
  color: #727272;
  font-size: 16px;
  line-height: 1.55;
}

.promo-modal-actions {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.promo-modal-actions .button {
  width: 100%;
}

.promo-modal-later {
  min-height: 44px;
  border: 0;
  background: transparent;
  color: #777;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 700px) {
  .promo-modal {
    align-items: end;
    padding: 12px;
  }

  .promo-modal-dialog {
    grid-template-columns: 1fr;
    width: 100%;
    max-height: calc(100dvh - 24px);
    min-height: 0;
    overflow-y: auto;
    border-radius: 26px;
  }

  .promo-modal-visual {
    min-height: 190px;
  }

  .promo-modal-visual strong {
    font-size: 150px;
    transform: translateX(-10px);
  }

  .promo-modal-gift {
    top: 22px;
    left: 22px;
  }

  .promo-modal-rides {
    right: 24px;
    bottom: 26px;
    font-size: 21px;
  }

  .promo-modal-copy {
    padding: 28px 22px 22px;
  }

  .promo-modal-copy h2 {
    margin: 15px 0 12px;
    font-size: clamp(31px, 9vw, 39px);
  }

  .promo-modal-copy p {
    font-size: 14px;
    line-height: 1.5;
  }

  .promo-modal-actions {
    margin-top: 20px;
  }

  .promo-modal-actions .button {
    min-height: 58px;
  }

  .promo-modal-close {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 370px), (max-height: 700px) and (max-width: 700px) {
  .promo-modal-visual {
    min-height: 142px;
  }

  .promo-modal-visual strong {
    font-size: 112px;
  }

  .promo-modal-rides {
    bottom: 18px;
    font-size: 17px;
  }

  .promo-modal-copy {
    padding: 22px 18px 16px;
  }

  .promo-modal-copy h2 {
    font-size: 28px;
  }

  .promo-modal-copy p {
    font-size: 13px;
  }
}

:root {
  --yellow: #ffc82c;
  --black: #050505;
  --muted: #7c7c7c;
  --line: #e7e7e7;
  --surface: #f7f7f7;
  --white: #fff;
  --radius: 32px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--black);
  background: #f8f8f8;
  font-family: "UBSans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  color: inherit;
  font: inherit;
}

.container {
  position: relative;
  width: min(calc(100vw - 80px), var(--container));
  margin-right: 0;
  margin-left: max(40px, calc((100vw - 1200px) / 2));
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  pointer-events: none;
}

.mobile-utility {
  display: none;
}

.header-inner {
  display: flex;
  align-items: center;
  position: relative;
  width: min(100%, 1280px);
  height: 76px;
  margin-right: 0;
  margin-left: max(0px, calc((100vw - 1280px) / 2));
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 0 0 12px 12px;
  backdrop-filter: blur(16px);
  pointer-events: auto;
}

.brand {
  width: 114px;
  flex: 0 0 auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 29px;
  margin-left: 49px;
}

.nav-link,
.nav-trigger {
  border: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}

.nav-link {
  transition: color 160ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #e3a800;
}

.nav-trigger span {
  display: none;
}

.nav-dropdown {
  position: relative;
}

.service-menu {
  position: absolute;
  top: calc(100% + 24px);
  left: -18px;
  display: grid;
  width: 280px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: 170ms ease;
}

.nav-dropdown:hover .service-menu,
.nav-dropdown.open .service-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.service-menu a {
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border-radius: 12px;
}

.service-menu a:hover {
  background: #f5f5f5;
}

.service-menu strong {
  font-size: 15px;
}

.service-menu span {
  color: var(--muted);
  font-size: 13px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.language {
  width: 32px;
  height: 32px;
  overflow: hidden;
}

.language img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: #fff;
}

.header-pill img {
  width: 16px;
  height: 16px;
}

.info-icon {
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  color: #dca600;
  border: 1.5px solid var(--yellow);
  border-radius: 50%;
  font: 700 12px/1 Arial, sans-serif;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: #000;
  transition: 180ms ease;
}

.mobile-menu {
  display: none;
  margin: 8px 0 0;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
  pointer-events: auto;
}

.mobile-menu a {
  padding: 13px 12px;
  border-radius: 10px;
  font-weight: 700;
}

.mobile-menu a:hover {
  background: #f4f4f4;
}

.hero {
  position: relative;
  min-height: 686px;
  padding-top: 76px;
  overflow: hidden;
  background: #fafafa url("assets/images/hero-back.png") center / cover no-repeat;
}

.hero-inner {
  display: grid;
  grid-template-columns: 560px 560px;
  align-items: center;
  gap: 80px;
  position: relative;
  width: min(calc(100vw - 80px), var(--container));
  min-height: 605px;
  margin-right: 0;
  margin-left: max(40px, calc((100vw - 1200px) / 2));
}

.eyebrow {
  margin: 0 0 22px;
  font-size: 13px;
  font-weight: 700;
}

.hero .eyebrow {
  display: none;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  line-height: 0.99;
  letter-spacing: normal;
}

.hero-copy {
  align-self: start;
  margin-top: 84px;
}

.hero-text {
  max-width: 448px;
  margin: 20px 0 0;
  color: #858585;
  font-size: 16px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 0;
  margin-top: 131px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 72px;
  padding: 0 48px 0 40px;
  border: 1px solid #ddd;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.button-primary {
  min-width: 187px;
  background: #f9c623;
  border-color: #f9c623;
}

.button-secondary {
  min-width: 276px;
  background: #fff;
}

.button-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.hero-art {
  justify-self: end;
  width: 560px;
  max-width: 100%;
  transform: translateY(-9px);
}

.hero-art img {
  width: 100%;
}

.gift-wrap {
  position: relative;
  z-index: 2;
  width: min(calc(100vw - 80px), var(--container));
  margin-top: 0;
  margin-right: 0;
  margin-left: max(40px, calc((100vw - 1200px) / 2));
}

.gift-banner {
  display: block;
  overflow: hidden;
  border-radius: 44px;
  background: #070707;
}

.gift-banner picture {
  display: block;
}

.gift-banner img {
  width: 100%;
  height: auto;
}

.stats {
  display: grid;
  grid-template-columns: 560px 560px;
  gap: 40px;
  min-height: 248px;
  margin-top: 103px;
  padding: 20px;
  overflow: hidden;
  background: #fff;
  border-radius: 999px;
}

.stats-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 560px;
  padding: 0 56px;
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
}

.stats-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 560px;
  height: 208px;
}

.stat {
  display: flex;
  flex: 0 0 208px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 208px;
  height: 208px;
  background: #f8f8f8;
  border-radius: 50%;
}

.stat strong {
  font-size: 48px;
  font-weight: 600;
  line-height: 48px;
}

.stat em {
  color: var(--yellow);
  font-style: normal;
}

.stat span {
  margin-top: 8px;
  color: #848484;
  font-size: 14px;
  line-height: 20px;
}

.advantages {
  padding-top: 160px;
}

.section-heading {
  max-width: 672px;
}

.section-heading .eyebrow {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 20px;
}

.section-heading h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: normal;
}

.section-heading h2 span {
  color: #d5d5d5;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.advantage-card {
  min-height: 183px;
  padding: 32px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 24px;
}

.advantage-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  background: #fafafa;
  border-radius: 50%;
}

.advantage-icon img {
  width: 39px;
  height: 39px;
}

.advantage-card h3 {
  margin: 17px 0 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 22.5px;
}

.services {
  padding-top: 159px;
  padding-bottom: 240px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 28px;
  overflow: hidden;
  color: #fff;
  border-radius: 24px;
  isolation: isolate;
}

.service-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: transparent;
}

.service-card::after {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background: var(--card-image) center / cover no-repeat;
  transition: transform 450ms ease;
}

.service-card:hover::after {
  transform: scale(1.035);
}

.service-wide {
  grid-column: span 3;
  min-height: 450px;
}

.service-small {
  grid-column: span 2;
}

.service-cab {
  --card-image: url("assets/images/cab-card.png");
}

.service-eats {
  --card-image: url("assets/images/eats-card.png");
}

.service-pay {
  background: #a61a04;
}

.service-express {
  --card-image: url("assets/images/express-card.png");
  background: #d1782b;
}

.service-rent {
  background: #050505;
}

.service-pay::after,
.service-rent::after {
  background-image: none;
}

.service-logo {
  width: auto;
  max-width: 96px;
  height: 25px;
  object-fit: contain;
  object-position: left center;
}

.service-copy {
  margin-top: 12px;
}

.service-copy h3 {
  max-width: 320px;
  margin: 0;
  font-size: 30px;
  line-height: 30px;
}

.service-small .service-copy h3 {
  font-size: 30px;
}

.service-copy p {
  max-width: 320px;
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 20px;
}

.detail-button {
  align-self: flex-end;
  margin-top: auto;
  min-height: 67px;
  padding: 20px 29px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  backdrop-filter: blur(8px);
  transition: background 180ms ease, color 180ms ease;
}

.service-card:hover .detail-button {
  color: #000;
  background: #fff;
}

.site-footer {
  padding: 80px 0 37px;
  background: #fafafa;
  border-top: 1px solid #eee;
}

.footer-grid {
  width: min(100vw, 1280px);
  margin-right: 0;
  margin-left: max(0px, calc((100vw - 1280px) / 2));
  padding-inline: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 332px;
}

.footer-grid h3 {
  margin: 0 0 24px;
  font-size: 16px;
}

.footer-grid a,
.footer-grid p {
  margin: 0 0 13px;
  color: #888;
  font-size: 16px;
  line-height: 24.8px;
}

.footer-grid > div:not(.footer-links) > a:hover {
  color: #000;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: #f4f4f4;
  border-radius: 999px;
}

.contact-pill img {
  width: 22px;
  height: 22px;
}

.footer-links {
  gap: 12px;
}

.footer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 72px;
  margin: 0;
  padding: 0 18px;
  color: #111;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
}

.footer-links span {
  font: 300 30px/1 Arial, sans-serif;
}

.footer-bottom {
  width: min(100vw, 1280px);
  margin-right: 0;
  margin-left: max(0px, calc((100vw - 1280px) / 2));
  padding-inline: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 99px;
  padding-top: 22px;
  color: #969696;
  border-top: 1px solid #eee;
  font-size: 13px;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials img {
  width: 20px;
  height: 20px;
  filter: grayscale(1);
  opacity: 0.65;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 18px;
    margin-left: 30px;
  }

  .desktop-nav .nav-link {
    font-size: 13px;
  }

  .help-pill,
  .language {
    display: none;
  }

  .hero-inner {
    gap: 20px;
    width: min(calc(100% - 48px), var(--container));
  }

  .hero h1 {
    font-size: 48px;
  }

  .button {
    min-height: 64px;
    padding: 0 28px;
  }

  .stats-intro {
    padding: 0 42px;
  }
}

@media (max-width: 860px) {
  .container,
  .hero-inner,
  .gift-wrap {
    width: min(calc(100vw - 48px), var(--container));
    margin-right: 0;
    margin-left: 24px;
  }

  .desktop-nav,
  .header-pill,
  .language {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mobile-menu.open {
    display: grid;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
    padding: 110px 0 70px;
  }

  .hero-copy {
    width: 100%;
    min-width: 0;
    max-width: 620px;
    margin-top: 0;
  }

  .hero-art {
    width: 100%;
    min-width: 0;
    max-width: 670px;
    margin-inline: auto;
  }

  .gift-wrap {
    width: min(calc(100vw - 48px), var(--container));
  }

  .gift-banner {
    border-radius: 28px;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
    padding: 20px;
    border-radius: 48px;
  }

  .stats-intro {
    width: 100%;
    min-height: 130px;
    justify-content: center;
    padding: 30px;
    text-align: center;
  }

  .stats-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
    height: auto;
  }

  .stat {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1;
  }

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

  .service-wide {
    min-height: 470px;
  }

  .service-small {
    grid-column: span 3;
  }

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

@media (max-width: 600px) {
  .container,
  .gift-wrap {
    width: min(calc(100vw - 40px), var(--container));
    margin-right: 0;
    margin-left: 20px;
  }

  .site-header {
    padding-inline: 0;
  }

  .mobile-utility {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 40px;
    padding: 0 20px;
    background: #f7f7f7;
    border-bottom: 1px solid #ededed;
    pointer-events: auto;
  }

  .mobile-utility a,
  .mobile-utility-right {
    display: flex;
    align-items: center;
  }

  .mobile-utility a {
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
  }

  .mobile-utility img,
  .mobile-utility .info-icon {
    width: 16px;
    height: 16px;
  }

  .mobile-utility-right {
    gap: 24px;
  }

  .header-inner {
    width: 100%;
    height: 82px;
    margin-left: 0;
    padding-inline: 20px 28px;
  }

  .brand {
    width: 112px;
  }

  .menu-toggle {
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .menu-toggle > span:not(.sr-only) {
    height: 1.5px;
    margin: 5px 0;
  }

  .hero {
    padding-top: 122px;
  }

  .hero-inner {
    width: calc(100vw - 40px);
    margin-right: 0;
    margin-left: 20px;
    gap: 120px;
    padding-top: 38px;
  }

  .hero-art {
    transform: none;
  }

  .hero .eyebrow {
    display: none;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 36px;
  }

  .hero-text {
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 40px;
  }

  .button {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    padding: 0 24px 0 20px;
    border-radius: 6px;
    line-height: 20px;
  }

  .button-secondary {
    min-height: 58px;
  }

  .stats {
    grid-template-columns: 1fr;
    margin-top: 60px;
    border-radius: 34px;
  }

  .stats-intro {
    grid-column: auto;
    justify-content: flex-start;
    min-height: 110px;
    text-align: left;
  }

  .stat {
    min-height: 0;
  }

  .stat strong {
    font-size: 32px;
    line-height: 32px;
  }

  .stat span {
    margin-top: 5px;
    font-size: 12px;
    line-height: 16px;
  }

  .advantages,
  .services {
    padding-top: 100px;
  }

  .section-heading h2 {
    font-size: 43px;
  }

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

  .advantage-card {
    min-height: 170px;
  }

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

  .service-wide,
  .service-small {
    grid-column: auto;
    min-height: 440px;
  }

  .service-card {
    padding: 26px;
  }

  .service-copy h3,
  .service-small .service-copy h3 {
    font-size: 30px;
  }

  .site-footer {
    padding-top: 76px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 22px;
    margin-top: 60px;
  }
}
