@font-face {
  font-family: "MuseoSans";
  src: url("../fonts/MuseoSans_500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MuseoSans";
  src: url("../fonts/MuseoSans_700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f3f5f9;
  --card: #ffffff;
  --text: #2d3b4e;
  --muted: #667588;
  --brand: #00cf95;
  --brand-dark: #00b683;
  --navy: #112238;
  --line: #d9e3ee;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "MuseoSans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
}

.container {
  width: min(1040px, calc(100% - 42px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  border-bottom: 1px solid var(--line);
  background: #fff;
  transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.top-nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #33445d;
  display: inline-block;
  position: relative;
}

.brand-dot::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  border-radius: 2px;
  transform: rotate(45deg);
  left: 8px;
  top: 6px;
}

.brand-word {
  font-weight: 700;
  color: #31425d;
  font-size: 35px;
  line-height: 1;
  transform: scale(.5);
  transform-origin: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  transform: scale(.5);
  transform-origin: left center;
  color: #2d3b4e;
}

.inner-page main {
  padding-top: 74px;
}

.home-page .site-header.site-header-home {
  background: linear-gradient(180deg, rgba(11, 24, 42, .70), rgba(11, 24, 42, 0));
  border-bottom-color: transparent;
}

.home-page .site-header.site-header-home .brand-dot {
  background: rgba(255, 255, 255, .95);
}

.home-page .site-header.site-header-home .brand-dot::before {
  border-color: #2f405b;
  border-top: 0;
  border-left: 0;
}

.home-page .site-header.site-header-home .brand-word,
.home-page .site-header.site-header-home .nav-links a {
  color: #fff;
}

.home-page .site-header.site-header-home.is-scrolled {
  background: #fff;
  border-bottom-color: var(--line);
  box-shadow: 0 4px 14px rgba(16, 31, 53, .08);
}

.home-page .site-header.site-header-home.is-scrolled .brand-dot {
  background: #33445d;
}

.home-page .site-header.site-header-home.is-scrolled .brand-dot::before {
  border-color: #fff;
  border-top: 0;
  border-left: 0;
}

.home-page .site-header.site-header-home.is-scrolled .brand-word,
.home-page .site-header.site-header-home.is-scrolled .nav-links a {
  color: #2d3b4e;
}

.wp-hero {
  position: relative;
  min-height: clamp(700px, 86vh, 860px);
  overflow: hidden;
  background: #12223a;
}

.wp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(98deg, rgba(12, 30, 56, 0.79) 14%, rgba(12, 30, 56, 0.35) 60%),
    url("../img/wp-real/hero_photo_desktop_2.jpg") 35% 58% / cover no-repeat;
}

.wp-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 102px;
  padding-bottom: 120px;
  display: grid;
  grid-template-columns: 1fr 346px;
  gap: 44px;
  align-items: start;
}

.wp-hero-copy h1 {
  margin: 38px 0 12px;
  color: #fff;
  font-size: clamp(46px, 5.2vw, 66px);
  line-height: .96;
  letter-spacing: -0.03em;
}

.wp-hero-copy p {
  margin: 0;
  color: #dbe3ef;
  font-size: 15px;
}

.wp-hero-form {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(6, 20, 38, 0.23);
  padding: 12px;
}

.wp-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.trip-switch {
  margin-bottom: 10px;
}

.trip-switch-track {
  position: relative;
  height: 36px;
  border-radius: 999px;
  background: #cfd6df;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 3px;
}

.trip-switch-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(50% - 3px);
  height: 30px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(29, 44, 67, 0.12);
  transition: transform .24s cubic-bezier(.4, 0, .2, 1);
}

.trip-switch.is-roundtrip .trip-switch-thumb {
  transform: translateX(100%);
}

.trip-switch-btn {
  position: relative;
  z-index: 1;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #2f3f59;
  font-family: inherit;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
}

.trip-switch-btn:not(.is-active) {
  color: #4f5f76;
}

.wp-field-wide { grid-column: 1 / -1; }

label {
  display: block;
  margin: 0 0 4px;
  color: #30405c;
  font-size: 10px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 32px;
  border: 1px solid #d3dee9;
  border-radius: 4px;
  background: #fff;
  color: #263752;
  font-family: inherit;
  font-size: 11px;
  padding: 6px 9px;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #b4c5d7;
  box-shadow: 0 0 0 3px rgba(0, 207, 149, 0.14);
}

.booking-search-form .btn-primary {
  margin-top: 10px;
  width: 100%;
}

.is-roundtrip-only {
  display: none;
}

.booking-search-form.is-roundtrip .is-roundtrip-only {
  display: block;
}

.btn-primary,
.btn-ghost {
  border: 0;
  border-radius: 4px;
  min-height: 34px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  font-size: 11px;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover { background: var(--brand-dark); }

.btn-primary.full { width: 100%; }

.btn-ghost {
  border: 1px solid #c7d5e3;
  background: #fff;
  color: #2c415e;
}

.wp-services {
  width: min(1140px, calc(100vw - 120px));
  margin-left: auto;
  margin-right: auto;
  margin-top: -230px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 26px rgba(17, 33, 56, 0.08);
  position: relative;
  z-index: 12;
}

.wp-service-card,
.wp-reward-card,
.wp-driver-card,
.wp-destination-card,
.wp-b2b-item,
.summary-card,
.tips-card,
.confirm-box,
.admin-login-card,
.admin-table-wrap,
.empty-box,
.result-card,
.checkout-main {
  background: var(--card);
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(20, 38, 61, 0.1);
}

.wp-service-card {
  overflow: visible;
  border: 0;
  box-shadow: none;
  background: transparent;
  display: flex;
  flex-direction: column;
}

.wp-media {
  width: 100%;
  display: block;
}

.wp-service-card .wp-media {
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
}

.service-body {
  padding: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-body h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1;
  color: #2d3b4e;
  font-weight: 700;
  transform: none;
}

.service-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.22;
  transform: none;
}

.service-actions {
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.service-btn {
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transform: none;
}

.service-btn-dark {
  background: #2f405b;
  color: #fff;
  border-radius: 4px;
  padding: 12px 26px;
}

.service-btn-link {
  color: #5d6c80;
  position: relative;
  padding-right: 14px;
}

.service-btn-link::after {
  content: "›";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-54%);
  font-size: 14px;
}

.wp-rewards-wrap {
  margin-top: 26px;
  position: relative;
  padding: 26px 24px;
}

.wp-rewards-bg {
  position: absolute;
  border-radius: 14px;
  z-index: 0;
}

.wp-rewards-bg-left {
  left: 0;
  top: 0;
  width: 40%;
  height: 74%;
  background: rgba(176, 149, 237, 0.48);
}

.wp-rewards-bg-right {
  right: 0;
  bottom: 0;
  width: 40%;
  height: 74%;
  background: rgba(129, 223, 201, 0.48);
}

.wp-rewards-panel {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(20, 38, 61, 0.1);
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.wp-reward-left {
  border-right: 1px solid #e8edf4;
  padding-right: 28px;
}

.reward-left-media {
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  width: 100%;
  transition: transform .25s ease, filter .25s ease;
}

.reward-left-content {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 16px;
  align-items: end;
}

.reward-left-content h4 {
  margin: 0;
  font-size: 38px;
  line-height: 1;
  transform: scale(.5);
  transform-origin: left top;
  color: #2d3b4e;
}

.reward-left-content h4 span {
  background: #d5c7f4;
  border-radius: 6px;
  padding: 2px 6px;
}

.reward-left-content p {
  grid-column: 1 / 2;
  margin: -6px 0 0;
  color: #4e5f77;
  font-size: 30px;
  line-height: 1.18;
  transform: scale(.5);
  transform-origin: left top;
}

.reward-left-content .reward-cta {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  align-self: center;
}

.wp-reward-right {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  margin-left: 4px;
}

.reward-right-media {
  height: 100%;
  min-height: 222px;
  object-fit: cover;
  transition: transform .28s ease, filter .28s ease;
}

.reward-right-overlay {
  position: absolute;
  inset: 0;
  padding: 18px 18px 16px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  color: #fff;
  background: linear-gradient(180deg, rgba(14, 27, 44, .22), rgba(14, 27, 44, .78));
}

.reward-right-overlay h4 {
  margin: 0 0 6px;
  font-size: 44px;
  line-height: 1;
  transform: scale(.5);
  transform-origin: left top;
}

.reward-right-overlay p {
  margin: 0;
  max-width: 355px;
  font-size: 30px;
  line-height: 1.18;
  transform: scale(.5);
  transform-origin: left top;
}

.reward-cta {
  text-decoration: none;
  background: #45c994;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 11px 22px;
  border-radius: 4px;
  white-space: nowrap;
}

.wp-reward-left:hover .reward-left-media,
.wp-reward-right:hover .reward-right-media {
  transform: scale(1.03);
  filter: contrast(1.04) saturate(1.05);
}

.wp-reward-right:hover .reward-right-overlay {
  background: linear-gradient(180deg, rgba(14, 27, 44, .32), rgba(14, 27, 44, .84));
}

.wp-metrics,
.wp-testimonials,
.wp-driver-section,
.wp-destinations,
.wp-leader-section,
.wp-b2b-grid,
.wp-guides-section,
.wp-map-section {
  margin-top: 38px;
}

.wp-metrics,
.wp-driver-section,
.wp-destinations,
.wp-leader-section,
.wp-guides-section,
.wp-map-section {
  text-align: center;
}

.wp-metrics h2,
.wp-driver-section h2,
.wp-destinations h2,
.wp-leader-section h2,
.wp-guides-section h2,
.wp-map-section h2 {
  margin: 0 0 14px;
  font-size: clamp(16px, 3vw, 43px);
  line-height: 1.12;
}

.wp-rating-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.wp-rating-logos div {
  font-size: 10px;
  color: #59687b;
}

.wp-rating-logos strong {
  font-size: 10px;
  margin-right: 3px;
}

.wp-rating-logos span {
  color: #2f425d;
  font-weight: 700;
}

.wp-testimonials { text-align: left; }

.wp-ugc-collage {
  position: relative;
  padding: 24px 18px 14px;
  overflow: visible;
}

.wp-ugc-accent {
  position: absolute;
  border-radius: 16px;
  z-index: 0;
}

.wp-ugc-accent-left {
  left: -14px;
  top: 8px;
  width: 48%;
  height: 57%;
  background: rgba(155, 226, 209, 0.66);
}

.wp-ugc-accent-right {
  right: -12px;
  bottom: -8px;
  width: 47%;
  height: 56%;
  background: rgba(248, 203, 136, 0.62);
}

.wp-ugc-mosaic {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 186px 186px 132px;
  gap: 16px;
}

.ugc-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  border: 3px solid #fff;
  box-shadow: 0 10px 24px rgba(20, 38, 61, 0.12);
}

.ugc-a { grid-column: 1 / 3; grid-row: 1 / 3; }
.ugc-b { grid-column: 3 / 4; grid-row: 1 / 2; }
.ugc-c { grid-column: 4 / 5; grid-row: 1 / 2; }
.ugc-d { grid-column: 1 / 2; grid-row: 3 / 4; }
.ugc-e { grid-column: 2 / 3; grid-row: 3 / 4; }
.ugc-f { grid-column: 3 / 5; grid-row: 2 / 4; }

.wp-ugc-reviews {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: 0 8px;
}

.wp-ugc-reviews p {
  margin: 0 0 6px;
  color: #637286;
  font-size: 12px;
  line-height: 1.4;
}

.wp-ugc-reviews small {
  color: #7d8ca0;
  font-size: 13px;
  font-weight: 700;
}

.wp-driver-slider {
  display: grid;
  grid-template-columns: 30px 1fr 30px;
  gap: 8px;
  align-items: center;
}

.driver-arrow {
  border: 0;
  background: transparent;
  font-size: 18px;
  color: #708199;
  cursor: pointer;
}

.wp-driver-card {
  display: grid;
  grid-template-columns: 126px 1fr;
  align-items: center;
  gap: 12px;
  text-align: left;
  border: 1px solid #e4ecf6;
  padding: 14px;
}

.wp-driver-photo {
  width: 100%;
  max-height: 126px;
  object-fit: cover;
  border-radius: 4px;
}

.wp-driver-copy h3 {
  margin: 0 0 5px;
  font-size: 13px;
}

.wp-driver-copy p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 10px;
}

.wp-driver-copy small {
  color: #7d8ca0;
  font-size: 9px;
}

.wp-driver-benefits {
  margin-top: 9px;
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 0;
  background: #dff8ed;
  border-radius: 6px;
  overflow: hidden;
}

.wp-driver-benefits div {
  font-size: 9px;
  padding: 10px 8px;
  text-align: center;
  color: #3a536d;
  border-right: 1px solid #cef0e0;
  line-height: 1.35;
}

.wp-driver-benefits div:last-child { border-right: 0; }

.wp-driver-benefits span {
  display: inline-block;
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  border-radius: 50%;
  background: #fff;
  color: #4f6378;
  margin-bottom: 4px;
  font-weight: 700;
}

.wp-destination-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.wp-destination-card {
  overflow: hidden;
  text-align: left;
  position: relative;
}

.wp-destination-media {
  width: 100%;
  height: 78px;
  object-fit: cover;
  display: block;
}

.wp-destination-card span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 7px;
  font-size: 9px;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(13, 28, 46, 0.8));
}

.wp-link-more {
  display: inline-block;
  margin-top: 10px;
  color: #445671;
  text-decoration: none;
  font-size: 9px;
  font-weight: 700;
}

.wp-logo-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  color: #97a4b6;
}

.wp-logo-row span {
  font-size: 10px;
  font-weight: 700;
}

.wp-b2b-grid {
  display: grid;
  gap: 16px;
}

.wp-b2b-item {
  display: grid;
  grid-template-columns: 44% 56%;
  overflow: hidden;
  border: 1px solid #e5edf7;
}

.wp-b2b-item.reverse {
  grid-template-columns: 56% 44%;
}

.wp-b2b-item.reverse > img { order: 2; }

.wp-b2b-media {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.wp-b2b-item > div {
  padding: 18px;
  display: grid;
  align-content: center;
  gap: 6px;
}

.wp-b2b-item h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.2;
}

.wp-b2b-item p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.wp-b2b-item a {
  margin-top: 3px;
  color: #1f3657;
  text-decoration: none;
  font-size: 9px;
  font-weight: 700;
}

.wp-guides-tabs {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.wp-guides-tabs button {
  border: 1px solid #d4dfeb;
  background: #fff;
  border-radius: 10px;
  padding: 4px 9px;
  color: #30425e;
  font-size: 9px;
  font-family: inherit;
  cursor: pointer;
}

.wp-guides-tabs .is-nav {
  width: 20px;
  padding: 4px 0;
  border-radius: 50%;
}

.wp-map-box {
  width: min(680px, 100%);
  border-radius: 6px;
  border: 1px solid #e1e9f2;
  display: block;
  margin: 0 auto;
}

.site-footer {
  margin-top: 56px;
  color: #d9e3f0;
  background: #0f1f36;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 24px;
  padding: 28px 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-logo {
  height: 18px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 10px;
}

.footer-brand-col p {
  margin: 0;
  color: #aebcd0;
  font-size: 10px;
}

.footer-badges {
  margin-top: 10px;
  display: flex;
  gap: 6px;
}

.badge {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 3px;
  padding: 3px 6px;
  font-size: 9px;
  color: #d7e2f0;
}

.footer-links-col strong {
  display: block;
  margin-bottom: 8px;
  font-size: 10px;
  color: #fff;
}

.footer-links-col a {
  display: block;
  color: #aebcd0;
  text-decoration: none;
  font-size: 9px;
  margin-bottom: 5px;
}

.footer-bottom-row {
  text-align: center;
  padding: 13px 0 18px;
}

.footer-socials {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 8px;
}

.footer-socials span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c9d5e4;
  opacity: 0.8;
}

.footer-bottom-row p {
  margin: 0;
  font-size: 9px;
  color: #aebcd0;
}

.section-spacing { padding: 34px 0 56px; }
.section-title { margin: 0 0 8px; }
.muted { color: var(--muted); }

.result-list {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.result-card {
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.result-card h3 { margin: 0 0 8px; }
.result-card p { margin: 3px 0; color: var(--muted); }

.result-price { text-align: right; }

.result-price strong {
  display: block;
  font-size: 24px;
  margin-bottom: 10px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 18px;
}

.checkout-main,
.summary-card,
.tips-card,
.confirm-box,
.admin-login-card,
.admin-table-wrap,
.empty-box {
  border-radius: 10px;
}

.checkout-main { padding: 24px; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.extras-list {
  display: grid;
  gap: 8px;
}

.extra-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.extra-row input {
  max-width: 95px;
  margin: 0;
  font-size: 14px;
  min-height: 36px;
}

.summary-card { overflow: hidden; }

.summary-banner {
  height: 130px;
  background: linear-gradient(0deg, rgba(26, 39, 61, 0.3), rgba(26, 39, 61, 0.3)), url("../img/checkout-reference.png") center 18% / cover no-repeat;
}

.summary-body { padding: 16px; }

.summary-total {
  font-weight: 800;
  color: var(--brand);
  font-size: 24px;
}

.tips-card {
  margin-top: 14px;
  padding: 18px;
}

.tips-card ul {
  margin: 0;
  padding-left: 18px;
}

.tips-card li { margin-bottom: 10px; }

.confirm-box,
.admin-login-card {
  max-width: 680px;
  margin: 24px auto;
  padding: 24px;
}

.admin-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-table-wrap {
  margin-top: 14px;
  padding: 4px 10px 10px;
  overflow: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.admin-table th,
.admin-table td {
  padding: 12px 10px;
  border-bottom: 1px solid #e6edf5;
  font-size: 14px;
  text-align: left;
}

.empty-box,
.error-box {
  padding: 14px;
  border-radius: 10px;
}

.error-box {
  background: #fff0f0;
  border: 1px solid #f2c2c2;
  color: #ad2b2b;
  margin-bottom: 12px;
}

.empty-box {
  background: #f6f8fb;
  border: 1px solid #dce6f2;
}

@media (max-width: 1024px) {
  .container { width: calc(100% - 24px); }
  .wp-hero { min-height: 700px; }
  .wp-hero-inner { grid-template-columns: 1fr; gap: 20px; padding-top: 78px; }
  .wp-hero-copy h1 { margin-top: 6px; }
  .wp-hero-form { width: min(420px, 100%); }
  .wp-hero-bg {
    background:
      linear-gradient(98deg, rgba(12, 30, 56, 0.79) 14%, rgba(12, 30, 56, 0.35) 60%),
      url("../img/wp-real/hero_photo_desktop_2.jpg") 42% 50% / cover no-repeat;
  }
  .wp-services,
  .wp-rewards-panel,
  .wp-ugc-reviews,
  .wp-driver-slider,
  .wp-destination-grid,
  .wp-driver-benefits,
  .wp-b2b-item,
  .wp-b2b-item.reverse,
  .footer-main-grid,
  .checkout-grid,
  .grid-2 { grid-template-columns: 1fr; }
  .wp-services {
    width: auto;
    margin-top: -132px;
    padding: 22px;
    gap: 20px;
  }
  .wp-rewards-wrap {
    padding: 14px 8px;
  }
  .wp-rewards-bg-left,
  .wp-rewards-bg-right {
    width: 52%;
    height: 68%;
  }
  .wp-reward-left {
    border-right: 0;
    border-bottom: 1px solid #e8edf4;
    padding-right: 0;
    padding-bottom: 18px;
  }
  .wp-reward-right {
    min-height: 220px;
  }
  .wp-ugc-collage {
    padding: 18px 10px 10px;
  }
  .wp-ugc-accent-left,
  .wp-ugc-accent-right {
    width: 52%;
    height: 60%;
  }
  .wp-ugc-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 160px);
    gap: 12px;
  }
  .ugc-a { grid-column: 1 / 2; grid-row: 1 / 3; }
  .ugc-b { grid-column: 2 / 3; grid-row: 1 / 2; }
  .ugc-c { grid-column: 2 / 3; grid-row: 2 / 3; }
  .ugc-d { grid-column: 1 / 2; grid-row: 3 / 4; }
  .ugc-e { grid-column: 1 / 2; grid-row: 4 / 5; }
  .ugc-f { grid-column: 2 / 3; grid-row: 3 / 5; }
  .wp-service-card .wp-media { height: 164px; }
  .wp-b2b-item.reverse > img { order: initial; }
  .wp-b2b-media { height: 200px; }
  .wp-driver-benefits div { border-right: 0; border-top: 1px solid #cef0e0; }
  .wp-driver-benefits div:first-child { border-top: 0; }
  .wp-driver-slider { grid-template-columns: 1fr; }
  .driver-arrow { display: none; }
}

@media (max-width: 680px) {
  .top-nav { min-height: 60px; }
  .inner-page main { padding-top: 60px; }
  .brand-word,
  .nav-links a {
    transform: none;
    font-size: 12px;
  }
  .brand-dot {
    width: 20px;
    height: 20px;
  }
  .brand-dot::before {
    width: 7px;
    height: 7px;
    left: 5px;
    top: 4px;
  }
  .nav-links { gap: 10px; }
  .wp-hero { min-height: 640px; }
  .wp-hero-bg {
    background:
      linear-gradient(98deg, rgba(12, 30, 56, 0.79) 14%, rgba(12, 30, 56, 0.35) 60%),
      url("../img/wp-real/hero_photo_desktop_2.jpg") 48% 40% / cover no-repeat;
  }
  .wp-form-grid { grid-template-columns: 1fr; }
  .wp-field-wide { grid-column: auto; }
  .wp-hero-copy h1 { font-size: 36px; }
  .wp-driver-card { grid-template-columns: 1fr; text-align: center; }
  .service-body h3,
  .service-body p,
  .service-btn {
    transform: none;
    font-size: 18px;
  }
  .service-body p {
    margin-top: 0;
    font-size: 14px;
  }
  .service-btn-dark {
    padding: 10px 18px;
    font-size: 14px;
  }
  .service-btn-link,
  .service-btn-link::after {
    font-size: 14px;
  }
  .reward-left-content h4,
  .reward-left-content p,
  .reward-right-overlay h4,
  .reward-right-overlay p {
    transform: none;
  }
  .reward-left-content h4 { font-size: 34px; }
  .reward-left-content p { font-size: 16px; margin-top: 0; }
  .reward-left-content {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .reward-left-content .reward-cta {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
  }
  .reward-right-overlay h4 { font-size: 34px; }
  .reward-right-overlay p {
    font-size: 15px;
    max-width: 100%;
  }
  .result-card { flex-direction: column; align-items: flex-start; }
  .result-price { text-align: left; width: 100%; }
}
