:root {
  --bg: #f2f3f5;
  --surface: #ffffff;
  --ink: #131722;
  --ink-soft: #5f6677;
  --line: #d9dce3;
  --brand: #f5be12;
  --brand-strong: #e4ad03;
  --card: #212327;
  --card-strong: #181a1f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 24%, rgba(245, 190, 18, 0.2), transparent 40%),
    linear-gradient(160deg, #f7f7f8 0%, #eff1f5 100%);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2200;
  padding: 10px 12px;
  border-radius: 10px;
  background: #111827;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(245, 190, 18, 0.65);
  outline-offset: 2px;
}

.page-shell {
  width: 100%;
  margin: 0 auto;
  padding: 120px 20px 0;
}

.container-fluid {
  width: 100%;
  max-width: 100%;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f5be12;
  color: #111827;
  font-size: 16px;
  box-shadow: 0 12px 22px rgba(17, 22, 30, 0.22);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1500;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #e4ad03;
}

.ux-toast {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translate(-50%, 22px);
  min-width: 260px;
  width: 92vw;
  max-width: 560px;
  padding: 11px 14px;
  border-radius: 10px;
  background: rgba(17, 24, 39, 0.96);
  color: #ffffff;
  font-size: 14px;
  text-align: center;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 2000;
}

.ux-toast.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  z-index: 1000;
  margin-bottom: 0;
  padding: 22px 34px 8px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f5be12 0%, #f7c63a 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(17, 22, 30, 0.14);
}

.topbar.container-fluid {
  top: -4px;
  left: 0;
  transform: none;
  width: 100%;
  border-radius: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px 6px 18px;
  border-radius: 12px;
  background: transparent;
  text-decoration: none;
  justify-self: start;
  transform: translateY(-8px);
}

.brand-mark {
  width: 56px;
  height: 42px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  background: none;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: clamp(19px, 1.5vw, 29px);
  line-height: 1;
  white-space: nowrap;
}

.menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(10px, 1.8vw, 30px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  position: relative;
  border: 1px solid rgba(27, 32, 44, 0.18);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 252, 0.82));
  box-shadow: 0 8px 18px rgba(17, 22, 30, 0.14);
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(17, 22, 30, 0.2);
}

.menu-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(17, 22, 30, 0.2), 0 8px 18px rgba(17, 22, 30, 0.14);
}

.menu-toggle span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2.4px;
  border-radius: 999px;
  background: #1b202c;
  transition: top 0.2s ease, transform 0.2s ease, opacity 0.16s ease, background 0.2s ease;
}

.menu-toggle span:nth-child(1) {
  top: 15px;
}

.menu-toggle span:nth-child(2) {
  top: 22px;
}

.menu-toggle span:nth-child(3) {
  top: 29px;
}

.menu a {
  text-decoration: none;
  text-transform: uppercase;
  color: #1b202c;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.4px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.menu a:hover,
.menu a.active {
  color: #ffffff;
  border-bottom-color: #f39f05;
}

.app-download-section {
  margin: 22px 0 30px;
  padding: clamp(18px, 2.5vw, 28px);
  border-radius: 22px;
  display: grid;
  grid-template-columns: minmax(180px, 290px) minmax(0, 1fr);
  gap: clamp(16px, 3vw, 42px);
  align-items: center;
  background: transparent;
  border: 0;
}

.app-download-phone {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: min(220px, 100%);
  height: clamp(320px, 38vw, 470px);
  border-radius: 38px;
  border: 8px solid #b5bcc6;
  background: #c7ccd4;
  position: relative;
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 14px;
  border-radius: 999px;
  background: #b5bcc6;
}

.phone-notch::before,
.phone-notch::after {
  content: "";
  position: absolute;
  top: 4px;
  width: 18px;
  height: 4px;
  border-radius: 999px;
  background: #99a4b1;
}

.phone-notch::before {
  left: 12px;
}

.phone-notch::after {
  right: 12px;
}

.phone-side {
  position: absolute;
  width: 4px;
  border-radius: 999px;
  background: #9ca5b2;
}

.phone-side-left {
  left: -11px;
  top: 70px;
  height: 26px;
}

.phone-side-right {
  right: -11px;
  top: 118px;
  height: 66px;
}

.app-download-content h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.08;
  color: #04070d;
}

.app-download-content p {
  margin: 14px 0 0;
  color: #526179;
  font-size: 18px;
  line-height: 1.55;
  max-width: 48ch;
}

.app-download-group {
  margin-top: 20px;
}

.app-download-group h3 {
  margin: 0 0 10px;
  color: #243246;
  font-size: 30px;
  font-weight: 700;
}

.app-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-badge {
  display: inline-block;
  border-radius: 10px;
  text-decoration: none;
  line-height: 0;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.store-badge img {
  width: 210px;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.store-badge:hover,
.store-badge:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.store-badge.disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.social {
  display: flex;
  gap: 8px;
}

.social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #131722;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, color 0.2s ease;
}

.social a i {
  display: inline-block;
  animation: icon-bob 2.8s ease-in-out infinite;
}

.social a:nth-child(2) i {
  animation-delay: 0.2s;
}

.social a:nth-child(3) i {
  animation-delay: 0.4s;
}

.social a:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.15fr minmax(340px, 400px);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.about-section {
  position: relative;
  scroll-margin-top: 110px;
  margin-top: 30px;
  padding: clamp(18px, 2.8vw, 30px);
  border-radius: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(18px, 2.8vw, 30px);
  background: linear-gradient(135deg, #ffffff 0%, #fff9e7 100%);
  border: 1px solid rgba(27, 32, 44, 0.08);
  box-shadow: 0 16px 32px rgba(17, 22, 30, 0.1);
}

.about-section::before {
  content: "";
  position: absolute;
  inset: auto -8% -56% auto;
  width: clamp(260px, 34vw, 420px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 190, 18, 0.22), rgba(245, 190, 18, 0));
  pointer-events: none;
}

.about-content {
  border-right: 1px solid rgba(245, 190, 18, 0.55);
  padding-right: clamp(14px, 2.3vw, 24px);
}

.page-heading {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(130deg, #f39f05 0%, #ffc40c 58%, #ffd748 100%);
  box-shadow: 0 14px 26px rgba(169, 117, 6, 0.22);
}

.page-heading .about-eyebrow,
.page-heading .services-eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

.page-heading .about-title,
.page-heading .services-title,
.page-heading .about-subtitle {
  color: #ffffff;
}

.about-eyebrow,
.about-title,
.about-subtitle,
.about-lead,
.about-list,
.about-footnote {
  position: relative;
  z-index: 1;
}

.about-eyebrow {
  margin: 0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.about-title {
  margin: 8px 0 0;
  color: #ffffff;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
}

.about-subtitle {
  margin: 0 0 2px;
  color: #232b3b;
  font-size: clamp(19px, 1.8vw, 24px);
  font-weight: 600;
}

.about-lead {
  margin: 12px 0 0;
  max-width: 70ch;
  color: #3b4458;
  font-size: 16px;
  line-height: 1.58;
}

.about-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(35, 43, 59, 0.11);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.about-list i {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #1a2130;
  font-size: 13px;
  background: #f5be12;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  animation: icon-pulse-soft 2.6s ease-in-out infinite;
}

.about-list span {
  color: #2f3749;
  font-size: 15px;
  line-height: 1.5;
}

.about-list li:hover,
.about-list li:focus-within {
  border-color: rgba(243, 159, 5, 0.6);
  background: #fff6d8;
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(17, 22, 30, 0.12);
}

.about-list li:hover i,
.about-list li:focus-within i {
  background: #1f2229;
  color: #f2c316;
  animation: none;
  transform: scale(1.08);
}

.about-footnote {
  margin: 14px 0 0;
  color: #1d2434;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
}

.about-visual {
  position: relative;
  border-radius: 18px;
  padding: 14px 14px 10px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(145deg, #2a2c30 0%, #1a1c21 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: #f7f8fb;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.about-badges i {
  color: #f5be12;
}

.about-visual img {
  width: 100%;
  max-width: 460px;
  margin: 10px auto 0;
  display: block;
  object-fit: contain;
  transform: translateY(4px) scale(1.08);
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.35));
}

.services-section {
  margin-top: 30px;
  padding: clamp(18px, 2.8vw, 30px);
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #fff9e7 100%);
  border: 1px solid rgba(27, 32, 44, 0.08);
  box-shadow: 0 16px 32px rgba(17, 22, 30, 0.1);
}

.services-eyebrow {
  margin: 0;
  color: #6a7388;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.services-title {
  margin: 8px 0 0;
  color: #121722;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
}

.services-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(27, 32, 44, 0.08);
  border-radius: 24px;
  padding: 14px 14px 12px;
  box-shadow: 0 10px 20px rgba(17, 22, 30, 0.08);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 84px;
  height: 84px;
  margin: 4px auto 10px;
  color: var(--brand);
  font-size: 52px;
  line-height: 1;
  border-radius: 50%;
  background: #1f2229;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  animation: icon-bob 3.1s ease-in-out infinite;
}

.service-card h2 {
  margin: 0;
  color: #1a2232;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.3;
}

.service-card p {
  margin: 10px 0 0;
  color: #3b4458;
  font-size: 15px;
  line-height: 1.56;
}

.service-card:hover,
.service-card:focus-within {
  border-color: rgba(243, 159, 5, 0.6);
  background: #fff6d8;
  transform: translateY(-2px);
  box-shadow: 0 16px 26px rgba(17, 22, 30, 0.14);
}

.service-card:hover .service-icon,
.service-card:focus-within .service-icon {
  background: #f2c316;
  color: #1f2229;
  animation: none;
  transform: scale(1.08);
}

.choose-section {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 16px 26px;
  align-items: start;
}

.choose-title {
  margin: 0;
  color: #121826;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0.2px;
}

.choose-list {
  display: grid;
  gap: 18px;
}

.choose-item {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.choose-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #f5f7fb;
  font-size: 38px;
  background: #23252b;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  animation: icon-bob 3s ease-in-out infinite;
}

.choose-copy h3 {
  margin: 0;
  color: #0f1624;
  font-size: clamp(26px, 2.2vw, 40px);
  font-weight: 700;
  line-height: 1.02;
}

.choose-copy p {
  margin: 6px 0 0;
  color: #252d3d;
  font-size: clamp(15px, 1.25vw, 20px);
  line-height: 1.4;
}

.choose-item:hover,
.choose-item:focus-within {
  background: #fff6d8;
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(18, 24, 38, 0.12);
}

.choose-item:hover .choose-icon,
.choose-item:focus-within .choose-icon {
  background: #f39f05;
  color: #121826;
  animation: none;
  transform: scale(1.04);
}

.site-footer {
  margin-top: 34px;
  padding: 22px 0 0;
  border-radius: 20px 20px 0 0;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 30px rgba(14, 18, 24, 0.2);
  overflow: hidden;
}

.site-footer.container-fluid {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.footer-links {
  display: grid;
  justify-items: center;
  gap: 28px;
  padding: 10px 14px 22px;
}

.footer-links a {
  color: #ffffff;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 500;
  text-decoration: none;
  line-height: 1.15;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #f5be12;
}

.footer-bottom-bar {
  background: linear-gradient(130deg, #f39f05 0%, #ffc40c 58%, #ffd748 100%);
  padding: 12px 14px;
}

.footer-copyright {
  margin: 0;
  color: #111111;
  font-size: clamp(20px, 1.45vw, 24px);
  font-weight: 500;
  letter-spacing: 0.1px;
  text-align: center;
}

.footer-copyright strong {
  font-weight: 800;
}

.footer-copyright a {
  color: #111111;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-copyright a:hover,
.footer-copyright a:focus-visible {
  color: #b06c00;
}

.choose-item:hover .choose-copy h3,
.choose-item:focus-within .choose-copy h3 {
  color: #111827;
}

.choose-item:hover .choose-copy p,
.choose-item:focus-within .choose-copy p {
  color: #3d2a00;
}

.testimonials-section {
  margin-top: 34px;
}

.testimonials-title {
  margin: 0;
  color: #121826;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: 0.2px;
}

.testimonial-carousel {
  margin-top: 16px;
  max-width: 1120px;
  position: relative;
}

.testimonial-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.testimonial-viewport::-webkit-scrollbar {
  display: none;
}

.testimonial-track {
  display: flex;
  gap: 18px;
}

.testimonial-page {
  flex: 0 0 50%;
  display: flex;
  scroll-snap-align: start;
}

.testimonial-page .testimonial-card {
  width: 100%;
}

.testimonial-card {
  margin-top: 0;
  width: auto;
  max-width: none;
  height: 460px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(27, 32, 44, 0.12);
  box-shadow: 0 16px 28px rgba(17, 22, 30, 0.16), 0 30px 56px rgba(17, 22, 30, 0.12);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  overflow: hidden;
}

.testimonial-card:hover,
.testimonial-card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 22px 36px rgba(17, 22, 30, 0.22), 0 42px 72px rgba(17, 22, 30, 0.17);
}

.testimonial-top-band {
  height: 92px;
  background: #f2c316;
}

.testimonial-avatar {
  width: 104px;
  height: 104px;
  margin: -54px 0 0 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #f2c316;
  font-size: 58px;
  background: #f3f4f6;
  border: 3px solid #ffffff;
  box-shadow: -6px 6px 0 #1f2229;
}

.testimonial-content {
  padding: 18px 28px 28px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  row-gap: 10px;
  height: calc(100% - 142px);
}

.testimonial-content h3 {
  margin: 0;
  color: #1e2431;
  font-size: clamp(30px, 2.2vw, 40px);
  font-weight: 600;
  line-height: 1.12;
  min-height: 2.24em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonial-content p {
  margin: 0;
  color: #363d4c;
  font-size: clamp(20px, 1.4vw, 24px);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonial-quote {
  display: inline-block;
  margin-top: 0;
  color: #2a2f3a;
  font-size: 34px;
}

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  position: static;
  justify-content: flex-start;
}

.testimonial-dot {
  width: 14px;
  height: 14px;
  min-width: 14px;
  min-height: 14px;
  border-radius: 999px;
  border: 1px solid rgba(27, 32, 44, 0.24);
  padding: 0;
  cursor: pointer;
  background: rgba(27, 32, 44, 0.24);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  opacity: 1;
  text-indent: -999px;
}

.testimonial-dot.active,
.testimonial-dot[aria-current="true"] {
  background: #f2c316;
  border-color: #f2c316;
  transform: scale(1.08);
  box-shadow: 0 0 0 4px rgba(242, 195, 22, 0.26);
}

.testimonial-dot:hover {
  background: rgba(27, 32, 44, 0.44);
  border-color: rgba(27, 32, 44, 0.5);
}

.testimonial-dot:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(26, 34, 50, 0.22);
}

.testimonial-arrow {
  width: 46px;
  opacity: 1;
}

.testimonial-arrow.carousel-control-prev {
  left: -12px;
}

.testimonial-arrow.carousel-control-next {
  right: -12px;
}

.testimonial-arrow-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: #1d2431;
  background: #f2c316;
  border: 1px solid rgba(29, 36, 49, 0.12);
  box-shadow: 0 10px 18px rgba(17, 22, 30, 0.2);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.testimonial-arrow:hover .testimonial-arrow-icon {
  background: #e4ad03;
  transform: translateY(-1px);
}

.testimonial-arrow:focus-visible {
  outline: none;
}

.testimonial-arrow:focus-visible .testimonial-arrow-icon {
  box-shadow: 0 0 0 3px rgba(242, 195, 22, 0.35), 0 10px 18px rgba(17, 22, 30, 0.2);
}


.queries-section {
  margin-top: 34px;
}

.queries-title {
  margin: 0;
  color: #121826;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: 0.2px;
}

.queries-subtitle {
  margin: 6px 0 0;
  color: #495267;
  font-size: clamp(16px, 1.3vw, 19px);
}

.queries-wrap {
  margin-top: 14px;
  max-width: 980px;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
}

.queries-card {
  margin-top: 0;
  max-width: 100%;
  padding: 24px 20px 20px;
  border-radius: 18px;
  background: linear-gradient(145deg, #262a33 0%, #1b1f28 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 30px rgba(14, 18, 24, 0.22);
}

.queries-visual {
  align-self: stretch;
  border-radius: 14px;
  overflow: hidden;
  background: transparent;
  border: none;
  box-shadow: none;
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 8px;
}

.queries-visual img {
  width: 100%;
  height: auto;
  max-height: 420px;
  display: block;
  object-fit: contain;
  object-position: center;
}

.queries-content {
  min-width: 0;
}

.queries-card h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 600;
}

.queries-form {
  display: grid;
  gap: 12px;
}

.queries-form input,
.queries-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  background: #ffffff;
  color: #2a2e37;
  font-family: inherit;
  font-size: 17px;
  padding: 0 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.queries-form input {
  height: 48px;
}

.queries-form textarea {
  height: 104px;
  resize: none;
  padding-top: 12px;
}

.queries-form input::placeholder,
.queries-form textarea::placeholder {
  color: #6a7183;
}

.queries-form input:focus,
.queries-form textarea:focus {
  outline: none;
  border-color: #f2c316;
  box-shadow: 0 0 0 3px rgba(242, 195, 22, 0.18);
}

.queries-form button {
  width: 114px;
  height: 42px;
  border: 0;
  background: #f2c316;
  color: #111111;
  border-radius: 10px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.queries-form button:hover {
  background: #e8b806;
  transform: translateY(-1px);
  box-shadow: 0 8px 14px rgba(232, 184, 6, 0.3);
}


.hero-copy {
  position: relative;
  padding: clamp(12px, 2.4vw, 28px);
  border-radius: 30px;
  overflow: hidden;
  min-height: 640px;
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.45), transparent 34%),
    linear-gradient(130deg, #f39f05 0%, #ffc40c 58%, #ffd748 100%);
  box-shadow: 0 24px 42px rgba(169, 117, 6, 0.3);
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: auto -22% -40% 12%;
  height: 55%;
  border-radius: 55% 45% 0 0;
  background: rgba(255, 255, 255, 0.24);
}

.eyebrow,
h1,
.subtitle,
.hero-points,
.call-box,
.hero-art {
  position: relative;
  z-index: 2;
}

.hero-title-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(12px, 2.6vw, 28px);
}

.hero-title-text {
  min-width: 0;
}

.hero-logo-video {
  width: clamp(88px, 13vw, 168px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 16px;
  background: transparent;
  border: none;
  box-shadow: none;
  mix-blend-mode: screen;
  flex-shrink: 0;
}

.eyebrow {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
}

h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(26px, 3.6vw, 46px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0.5px;
  max-width: none;
  white-space: nowrap;
}

.subtitle {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.93);
  max-width: 47ch;
  font-size: 17px;
  line-height: 1.55;
}

.hero-points {
  margin-top: 20px;
  display: grid;
  gap: 8px;
}

.hero-points p {
  margin: 0;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: #ffffff;
  font-weight: 600;
}

.call-box {
  margin-top: 26px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  border-radius: 14px;
  text-decoration: none;
  color: #151922;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
}

.call-box span {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.9px;
}

.call-box strong {
  font-size: clamp(25px, 3.2vw, 42px);
  line-height: 1;
}

.hero-art {
  margin-top: -18px;
  display: grid;
  justify-items: center;
  gap: 0;
}

.taxi-pill {
  display: none;
}

.car-showcase {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.car-carousel {
  position: relative;
  width: min(760px, 100%);
  height: clamp(190px, 25vw, 270px);
  overflow: visible;
}

.car-carousel::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: clamp(180px, 32vw, 320px);
  height: clamp(20px, 4vw, 34px);
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(20, 24, 31, 0.4) 0%, rgba(20, 24, 31, 0) 72%);
  pointer-events: none;
}

.car-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transform-origin: center bottom;
  opacity: 0;
  transform: translateX(12px) scale(1);
  transition: opacity 0.45s ease, transform 0.45s ease, filter 0.45s ease;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.24));
}

.car-slide.active {
  opacity: 1;
  transform: translateX(0) translateY(-1px) scale(1);
  animation: car-float 3.2s ease-in-out infinite;
  filter: drop-shadow(0 20px 26px rgba(0, 0, 0, 0.3));
}

@keyframes car-float {
  0%,
  100% {
    transform: translateX(0) translateY(-1px) scale(1);
  }
  50% {
    transform: translateX(0) translateY(-3px) scale(1);
  }
}

.car-name {
  margin: 0;
  margin-top: -4px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(20, 24, 31, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 18px rgba(20, 24, 31, 0.22);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-align: center;
  white-space: nowrap;
}

.booking-card {
  --booking-accent: var(--brand);
  --booking-accent-strong: var(--brand-strong);
  --booking-accent-soft: rgba(245, 190, 18, 0.18);
  --booking-accent-ring: rgba(245, 190, 18, 0.22);
  padding: 28px 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, #242730 0%, #171a22 100%);
  box-shadow:
    0 20px 30px rgba(18, 18, 24, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.booking-card h2 {
  margin: 0 0 18px;
  text-align: center;
  color: #ffffff;
  font-size: clamp(30px, 1.9vw, 40px);
  font-weight: 700;
  letter-spacing: 0.3px;
}

.form-tagline {
  margin: -8px 0 14px;
  text-align: center;
  color: rgba(236, 240, 248, 0.9);
  font-size: 14px;
  line-height: 1.45;
}

.trip-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.trip-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 44px;
  border: 1px solid var(--booking-accent-ring);
  border-radius: 10px;
  padding: 0 8px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #f4f6fb;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.trip-tab i {
  font-size: 13px;
  display: inline-block;
  animation: icon-pulse-soft 2.4s ease-in-out infinite;
}

@keyframes icon-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

@keyframes icon-pulse-soft {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.07);
  }
}

@media (prefers-reduced-motion: reduce) {
  .social a i,
  .about-list i,
  .service-icon,
  .choose-icon,
  .trip-tab i {
    animation: none;
  }
}

.trip-tab:hover {
  border-color: var(--booking-accent);
}

.trip-tab.active {
  color: #1a202b;
  background: var(--booking-accent);
  border-color: transparent;
}

.trip-tab:hover i,
.trip-tab.active i {
  animation: none;
}

.booking-form {
  display: block;
}

.trip-panel {
  display: grid;
  gap: 11px;
}

.trip-panel[hidden] {
  display: none;
}

.js-enabled .vehicle-select-native {
  position: static;
  width: 100%;
  height: 48px;
  margin: 0;
  padding: 0 14px;
  border: 1px solid #e3e7ee;
  overflow: visible;
  clip: auto;
}

.vehicle-picker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.vehicle-option {
  width: 100%;
  min-height: 90px;
  padding: 8px 6px;
  border: 1px solid var(--booking-accent-ring);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.vehicle-option img {
  width: 100%;
  max-width: 90px;
  height: 44px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.28));
}

.vehicle-option span {
  color: #f1f4fa;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-align: center;
  line-height: 1.2;
}

.vehicle-option:hover {
  border-color: var(--booking-accent);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.vehicle-option.active {
  border-color: var(--booking-accent);
  background: var(--booking-accent-soft);
  box-shadow: 0 8px 16px var(--booking-accent-ring);
}

.vehicle-option:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--booking-accent-ring);
}

.car-confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(8, 11, 16, 0.65);
  backdrop-filter: blur(3px);
}

.car-confirm-dialog {
  --modal-accent: var(--brand);
  --modal-accent-strong: var(--brand-strong);
  width: min(420px, 100%);
  border-radius: 14px;
  padding: 18px 16px 14px;
  background: linear-gradient(180deg, #242730 0%, #1b1e26 100%);
  border: 1px solid var(--modal-accent);
  box-shadow: 0 18px 34px rgba(10, 12, 18, 0.36);
  text-align: center;
}

.car-confirm-dialog h3 {
  margin: 0;
  color: #ffffff;
  font-size: 24px;
}

.car-confirm-dialog img {
  width: min(180px, 80%);
  height: 90px;
  margin-top: 10px;
  object-fit: contain;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.34));
}

.car-confirm-dialog p {
  margin: 10px 0 0;
  color: #e9edf5;
  font-size: 16px;
}

.car-confirm-details {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.car-confirm-details li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.car-confirm-details span {
  color: #d6deec;
  font-size: 13px;
  font-weight: 600;
}

.car-confirm-details strong {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.car-confirm-actions {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.car-confirm-btn {
  min-width: 108px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.car-confirm-btn.secondary {
  color: #f1f4fb;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.car-confirm-btn.primary {
  color: #1a202b;
  background: var(--modal-accent);
}

.car-confirm-btn.primary:hover {
  background: var(--modal-accent-strong);
}

.booking-form input,
.booking-form select,
.booking-form button {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 16px;
}

.booking-form input,
.booking-form select {
  padding: 0 14px;
  color: #22293a;
  background: #f6f7f9;
  border: 1px solid #e3e7ee;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.booking-form input::placeholder {
  color: #848b99;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--booking-accent);
  box-shadow: 0 0 0 3px var(--booking-accent-ring);
  background: #ffffff;
}

.choice-row {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.choice-row label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f2f4f8;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
}

.choice-row input[type="radio"] {
  width: 17px;
  height: 17px;
  accent-color: var(--booking-accent);
}

.choice-row input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: var(--booking-accent);
}

.bottom-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 4px;
}

.booking-form button {
  background: var(--booking-accent);
  color: #1a202b;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.booking-form button:hover {
  background: var(--booking-accent-strong);
  transform: translateY(-1px);
  box-shadow: 0 8px 16px var(--booking-accent-ring);
}

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

@media (max-width: 1100px) {
  .topbar {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
    top: 10px;
    width: calc(100% - 20px);
    padding: 14px 16px 6px;
  }

  .brand {
    padding: 4px 6px;
    transform: translateY(-2px);
  }

  .menu-toggle {
    display: block;
  }

  .menu {
    display: flex;
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px;
    border-radius: 12px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.08);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.25s ease, opacity 0.2s ease;
  }

  .topbar.menu-open .menu {
    max-height: 320px;
    opacity: 1;
    pointer-events: auto;
  }

  .menu a {
    width: 100%;
    font-size: 14px;
    padding: 7px 0;
  }

  .app-download-section {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .app-download-content p {
    max-width: 60ch;
  }

  .app-badge-row {
    justify-content: center;
  }

  .social {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    justify-content: flex-start;
    padding-top: 2px;
  }

  .topbar.menu-open .social {
    display: flex;
    padding-bottom: 8px;
  }

  .topbar.menu-open .menu-toggle span:nth-child(1) {
    top: 22px;
    transform: rotate(45deg);
  }

  .topbar.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: translateX(6px);
  }

  .topbar.menu-open .menu-toggle span:nth-child(3) {
    top: 22px;
    transform: rotate(-45deg);
  }

  .topbar.menu-open .menu-toggle {
    background: #1b202c;
    border-color: rgba(255, 255, 255, 0.24);
  }

  .topbar.menu-open .menu-toggle span {
    background: #ffffff;
  }

  body.menu-open-lock {
    overflow: hidden;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 560px;
  }

  .booking-card {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }

  .about-section {
    margin-top: 24px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-content {
    border-right: 0;
    border-bottom: 1px solid rgba(245, 190, 18, 0.5);
    padding-right: 0;
    padding-bottom: 12px;
  }

  .about-visual {
    min-height: 260px;
  }

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

  .testimonial-card {
    max-width: 100%;
  }

  .queries-card {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .topbar {
    padding-bottom: 3px;
  }

  .page-shell {
    padding: 110px 12px 0;
  }

  .menu {
    padding: 10px;
  }

  .app-download-section {
    margin: 18px 0 24px;
    padding: 14px;
    gap: 14px;
  }

  .phone-mockup {
    width: min(180px, 60vw);
    height: 280px;
  }

  .app-download-content h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .app-download-content p {
    font-size: 16px;
    margin-top: 10px;
  }

  .app-download-group {
    margin-top: 16px;
  }

  .app-download-group h3 {
    font-size: 27px;
    margin-bottom: 8px;
  }

  .store-badge {
    border-radius: 8px;
  }

  .store-badge img {
    width: 180px;
    border-radius: 8px;
  }

  .hero-copy {
    min-height: 0;
    border-radius: 20px;
    padding: 16px 12px 14px;
  }

  .eyebrow {
    font-size: 22px;
  }

  h1 {
    font-size: clamp(28px, 8.8vw, 40px);
  }

  .subtitle {
    font-size: 15px;
  }

  .hero-title-row {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero-logo-video {
    width: clamp(80px, 24vw, 120px);
    display: block;
    margin: 8px auto 0;
    mix-blend-mode: screen;
    opacity: 1;
    visibility: visible;
  }

  .call-box strong {
    font-size: clamp(22px, 8vw, 34px);
  }

  .car-carousel {
    width: min(560px, 100%);
    height: clamp(150px, 44vw, 200px);
  }

  .car-showcase {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .hero-art {
    margin-top: -12px;
  }

  .car-slide.active {
    transform: translateX(0) translateY(-2px) scale(1.03);
    animation: car-float-mobile 3s ease-in-out infinite;
  }

  @keyframes car-float-mobile {
    0%,
    100% {
      transform: translateX(0) translateY(-2px) scale(1.03);
    }
    50% {
      transform: translateX(0) translateY(-4px) scale(1.03);
    }
  }

  .booking-card {
    border-radius: 12px;
    padding: 18px 14px;
  }

  .booking-card h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .form-tagline {
    margin: -6px 0 12px;
    font-size: 13px;
  }

  .trip-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 8px;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .trip-tab {
    height: 40px;
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 13px;
  }

  .booking-form input,
  .booking-form select,
  .booking-form button {
    height: 44px;
    font-size: 15px;
  }

  .vehicle-picker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vehicle-option {
    min-height: 84px;
  }

  .vehicle-option img {
    max-width: 84px;
    height: 40px;
  }

  .choice-row label {
    font-size: 16px;
  }

  .bottom-row {
    grid-template-columns: 1fr;
  }

  .booking-form button {
    font-size: 16px;
  }

  .about-section {
    border-radius: 16px;
    padding: 16px 14px;
  }

  .about-eyebrow {
    font-size: 12px;
  }

  .about-title {
    font-size: clamp(24px, 9vw, 34px);
  }

  .about-subtitle {
    font-size: 17px;
  }

  .about-lead {
    font-size: 15px;
  }

  .about-list li {
    padding: 9px 10px;
  }

  .about-list i {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .about-list span,
  .about-footnote {
    font-size: 14px;
  }

  .about-visual {
    padding: 10px 10px 8px;
    min-height: 220px;
  }

  .about-badges {
    gap: 6px;
  }

  .about-badges span {
    height: 28px;
    padding: 0 9px;
    font-size: 11px;
  }

  .about-visual img {
    transform: translateY(3px) scale(1.06);
  }

  .services-section {
    margin-top: 16px;
    border-radius: 16px;
    padding: 16px 14px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .services-title {
    font-size: clamp(24px, 9vw, 34px);
  }

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

  .service-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(27, 32, 44, 0.08);
    box-shadow: 0 10px 18px rgba(17, 22, 30, 0.08);
    border-radius: 20px;
    padding: 12px 10px 10px;
  }

  .service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 8px;
    font-size: 44px;
  }

  .service-card h2 {
    font-size: clamp(26px, 7.2vw, 34px);
  }

  .service-card p {
    margin-top: 8px;
    font-size: 16px;
    line-height: 1.4;
  }

  .choose-section {
    margin-top: 22px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .choose-title {
    font-size: clamp(30px, 9vw, 46px);
    line-height: 0.98;
  }

  .choose-list {
    gap: 12px;
  }

  .choose-item {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
  }

  .choose-icon {
    width: 72px;
    height: 72px;
    font-size: 30px;
  }

  .choose-copy h3 {
    font-size: clamp(22px, 6.4vw, 30px);
  }

  .choose-copy p {
    margin-top: 5px;
    font-size: clamp(16px, 4.8vw, 19px);
    line-height: 1.4;
  }

  .site-footer {
    margin-top: 22px;
    padding: 14px 0 0;
    border-radius: 14px 14px 0 0;
  }

  .site-footer.container-fluid {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .footer-links {
    gap: 18px;
    padding: 4px 12px 18px;
  }

  .footer-links a {
    font-size: clamp(24px, 7.5vw, 32px);
  }

  .footer-bottom-bar {
    padding: 10px 10px;
  }

  .footer-copyright {
    font-size: clamp(14px, 4vw, 18px);
  }

  .testimonials-section {
    margin-top: 22px;
  }

  .testimonials-title {
    font-size: clamp(24px, 8.2vw, 32px);
  }

  .testimonial-carousel {
    margin-top: 14px;
  }

  .testimonial-viewport {
    padding-bottom: 4px;
  }

  .testimonial-track {
    gap: 12px;
  }

  .testimonial-page {
    flex-basis: 100%;
  }

  .testimonial-card {
    margin-top: 0;
    height: 400px;
    border-radius: 14px;
  }

  .testimonial-top-band {
    height: 78px;
  }

  .testimonial-avatar {
    width: 92px;
    height: 92px;
    margin: -46px 0 0 18px;
    font-size: 50px;
    box-shadow: -5px 5px 0 #1f2229;
  }

  .testimonial-content {
    padding: 12px 18px 18px;
    height: calc(100% - 124px);
    row-gap: 8px;
  }

  .testimonial-content h3 {
    font-size: clamp(24px, 7.2vw, 30px);
    min-height: 2.2em;
  }

  .testimonial-content p {
    font-size: clamp(16px, 4.8vw, 19px);
    -webkit-line-clamp: 5;
  }

  .testimonial-quote {
    margin-top: 8px;
    font-size: 30px;
  }

  .queries-section {
    margin-top: 22px;
  }

  .queries-title {
    font-size: clamp(24px, 8.2vw, 32px);
  }

  .queries-subtitle {
    margin-top: 8px;
    font-size: clamp(15px, 4.8vw, 18px);
  }

  .queries-card {
    padding: 16px 12px 12px;
    border-radius: 14px;
  }

  .queries-wrap {
    margin-top: 14px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .queries-visual {
    max-width: 100%;
  }

  .queries-visual img {
    max-height: 260px;
  }

  .queries-card h3 {
    font-size: clamp(22px, 8vw, 28px);
  }

  .queries-form {
    gap: 10px;
  }

  .queries-form input,
  .queries-form textarea {
    font-size: 16px;
    padding: 0 12px;
  }

  .queries-form input {
    height: 44px;
  }

  .queries-form textarea {
    height: 96px;
    padding-top: 10px;
  }

  .queries-form button {
    width: 102px;
    height: 40px;
    font-size: 15px;
  }
}

@media (min-width: 1280px) {
  .page-shell {
    max-width: 1360px;
    padding: 128px 24px 0;
  }

  .topbar.container-fluid {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1360px, calc(100% - 48px));
    border-radius: 16px;
    padding: 18px 30px 8px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1.22fr) minmax(420px, 460px);
    gap: clamp(30px, 3.4vw, 56px);
  }

  .car-carousel {
    width: min(860px, 100%);
    height: clamp(220px, 24vw, 300px);
  }

  .vehicle-option img {
    max-width: 124px;
    height: 64px;
  }

  .hero-copy {
    min-height: 700px;
    border-radius: 32px;
  }

  .booking-card {
    border-radius: 20px;
    padding: 30px 24px;
  }

  .testimonials-section {
    margin-top: 40px;
  }

  .testimonial-carousel {
    max-width: 1120px;
  }

  .testimonial-card {
    height: 500px;
  }

  .queries-section {
    margin-top: 40px;
  }

  .queries-wrap {
    max-width: 1120px;
    grid-template-columns: 420px minmax(0, 1fr);
    gap: 22px;
  }

  .queries-card {
    padding: 28px 24px 24px;
  }

  .queries-visual img {
    max-height: 480px;
  }

  .site-footer {
    margin-top: 40px;
    padding: 26px 0 0;
  }

.site-footer.container-fluid {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

/* Compact, professional typography pass */
body {
  font-size: 14px;
  line-height: 1.55;
}

.brand-text {
  font-size: clamp(16px, 1.1vw, 22px);
  letter-spacing: 0.6px;
}

.menu a,
.hero-points p,
.service-card p,
.choose-copy p,
.about-lead,
.queries-subtitle,
.app-download-content p,
.booking-form input,
.booking-form select,
.booking-form button,
.queries-form input,
.queries-form textarea,
.queries-form button {
  font-size: 14px;
}

h1,
.about-title,
.services-title,
.choose-title,
.testimonials-title,
.queries-title,
#app-download-title {
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.12;
}

.booking-card h2 {
  font-size: clamp(22px, 2.1vw, 30px);
}

.app-download-group h3 {
  font-size: 22px;
}

.store-badge-text small {
  font-size: 9px;
}

.store-badge-text strong {
  font-size: 16px;
}

@media (max-width: 768px) {
  h1,
  .about-title,
  .services-title,
  .choose-title,
  .testimonials-title,
  .queries-title,
  #app-download-title {color: (24px, 7vw, 32px);
    font-size: clamp(24px, 7vw, 32px);
  }

  .app-download-group h3 {
    font-size: 20px;
  }
}

/* Force footer to span full viewport width, regardless of page-shell padding. */
.site-footer.container-fluid {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
