:root {
  --ink: #10232a;
  --muted: #5c7178;
  --line: #d9e8eb;
  --paper: #f8fcfc;
  --soft: #eaf6f7;
  --brand: #0c8b9a;
  --brand-dark: #096979;
  --green: #146c63;
  --gold: #e6b857;
  --sky: #d8eef5;
  --shadow: 0 22px 54px rgba(16, 35, 42, 0.13);
  --font-sans: "Manrope", Arial, sans-serif;
  --font-display: "Source Serif 4", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(248, 252, 252, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 190px;
}

.brand-logo,
.mini-logo {
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
  background: transparent;
  border-radius: 8px;
}

.brand-logo {
  width: clamp(154px, 18vw, 220px);
  height: 58px;
}

.mini-logo {
  width: 120px;
  height: 54px;
}

.brand-logo img,
.mini-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.main-nav a:hover,
.contact-card a:hover,
.site-footer a:hover {
  color: var(--brand);
}

.header-action,
.button,
.search-panel button,
.payment-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
}

.header-action,
.button.primary,
.search-panel button,
.payment-form button {
  color: white;
  background: linear-gradient(135deg, var(--brand), #2288c7);
}

.header-action:hover,
.button.primary:hover,
.search-panel button:hover,
.payment-form button:hover {
  background: linear-gradient(135deg, var(--brand-dark), #126a9f);
}

.pay-here-action {
  background: linear-gradient(135deg, #f47d00, #e6b857);
}

.pay-here-action:hover {
  background: linear-gradient(135deg, #d96f00, #d49c2d);
}

.button.secondary {
  color: var(--green);
  background: #ffffff;
  border-color: var(--line);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 440px);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(48px, 8vw, 96px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(248, 252, 252, 0.96) 0%, rgba(236, 248, 250, 0.86) 48%, rgba(216, 238, 245, 0.28) 100%),
    var(--sky);
  overflow: hidden;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(248, 252, 252, 0.94) 0%, rgba(248, 252, 252, 0.72) 44%, rgba(248, 252, 252, 0.34) 100%),
    linear-gradient(180deg, rgba(248, 252, 252, 0.3), rgba(248, 252, 252, 0.76));
  pointer-events: none;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--sky);
}

.hero-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1.1s ease, transform 5s ease;
}

.hero-slideshow img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-shadow: 0 1px 18px rgba(255, 255, 255, 0.78);
}

.eyebrow {
  margin: 0 0 12px;
  color: #087887;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(46px, 6.2vw, 82px);
  line-height: 0.94;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.18;
}

.hero-text,
.split-section p,
.contact-section p,
.partner-panel p {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-weather {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin: 26px 0 4px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(217, 232, 235, 0.9);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(16, 35, 42, 0.12);
  backdrop-filter: blur(10px);
}

.hero-weather-title {
  padding: 0 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-weather-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green), var(--brand));
  border-radius: 8px;
}

.hero-weather-chip.time-chip {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(217, 232, 235, 0.92);
}

.search-panel {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 4px;
}

.form-heading strong,
.form-heading small {
  display: block;
}

.form-heading strong {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.form-heading small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  background: #fbfefe;
  border: 1px solid var(--line);
  border-radius: 8px;
}

textarea {
  min-height: 88px;
  padding: 12px 14px;
  line-height: 1.45;
  resize: vertical;
}

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

.form-status {
  margin: 0;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  border-radius: 8px;
}

.form-status[data-state="pending"] {
  color: var(--muted);
  background: rgba(15, 23, 42, 0.05);
}

.form-status[data-state="success"] {
  color: #14532d;
  background: rgba(22, 163, 74, 0.12);
}

.form-status[data-state="error"] {
  color: #7f1d1d;
  background: rgba(220, 38, 38, 0.1);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.stats-strip div {
  padding: 26px clamp(18px, 4vw, 48px);
  background: #ffffff;
}

.stats-strip strong,
.stats-strip span {
  display: block;
}

.stats-strip strong {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.04;
}

.stats-strip span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 15px;
}

.tools-section {
  padding: clamp(52px, 7vw, 86px) clamp(18px, 5vw, 72px);
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.tool-card {
  display: grid;
  gap: 10px;
  min-height: 150px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(242, 251, 252, 0.94)),
    #ffffff;
  border: 1px solid rgba(217, 232, 235, 0.92);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(16, 35, 42, 0.07);
}

.tool-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(16, 35, 42, 0.11);
}

.tool-card strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1;
}

.tool-card span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.weather-section {
  padding: clamp(52px, 7vw, 86px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(135deg, #f8fcfc, rgba(216, 238, 245, 0.62)),
    #f8fcfc;
  border-bottom: 1px solid var(--line);
}

.weather-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.weather-card {
  display: grid;
  gap: 8px;
  min-height: 180px;
  padding: clamp(24px, 4vw, 36px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(242, 251, 252, 0.92)),
    #ffffff;
  border: 1px solid rgba(217, 232, 235, 0.9);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(16, 35, 42, 0.08);
}

.weather-location {
  color: #087887;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.weather-temp {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 88px);
  font-weight: 700;
  line-height: 0.92;
}

.weather-note {
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
}

.commute-section {
  padding: clamp(52px, 7vw, 90px) clamp(18px, 5vw, 72px);
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.commute-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.85fr) minmax(260px, 1.4fr) minmax(170px, 0.75fr) auto;
  gap: 14px;
  align-items: end;
  padding: clamp(20px, 3vw, 28px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(242, 251, 252, 0.92)),
    #ffffff;
  border: 1px solid rgba(217, 232, 235, 0.92);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(16, 35, 42, 0.08);
}

.commute-card button {
  min-height: 48px;
  padding: 0 18px;
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, var(--brand), #2288c7);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.commute-card button:hover {
  background: linear-gradient(135deg, var(--brand-dark), #126a9f);
}

.commute-card p {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.airport-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(52px, 7vw, 90px) clamp(18px, 5vw, 72px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(16, 35, 42, 0.96), rgba(8, 120, 135, 0.9)),
    #10232a;
}

.airport-section div {
  max-width: 760px;
}

.airport-section .eyebrow {
  color: #9ce7e6;
}

.airport-section h2 {
  margin-bottom: 14px;
}

.airport-section p {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.75;
}

.jobs-section {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(180deg, #ffffff, rgba(216, 238, 245, 0.28)),
    #ffffff;
  border-bottom: 1px solid var(--line);
}

.jobs-section .section-heading p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.75;
}

.job-link-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.job-link {
  display: grid;
  gap: 8px;
  min-height: 130px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(217, 232, 235, 0.92);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(16, 35, 42, 0.07);
}

.job-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(16, 35, 42, 0.11);
}

.job-link strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.16;
}

.job-link span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.jobs-note {
  max-width: 860px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.media-section {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(180deg, #ffffff, rgba(216, 238, 245, 0.34)),
    #ffffff;
}

.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 18px;
  align-items: stretch;
}

.logo-feature,
.video-feature {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  box-shadow: 0 16px 42px rgba(16, 35, 42, 0.08);
}

.logo-feature {
  display: grid;
  grid-template-rows: minmax(240px, 1fr) auto;
}

.logo-feature > div:last-child {
  padding: 26px;
}

.logo-art {
  height: 360px;
  overflow: hidden;
  background: transparent;
}

.logo-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 20px;
  mix-blend-mode: multiply;
}

.service-name {
  margin-bottom: 6px;
  color: #0b8f3a;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1;
}

.tagline {
  margin-bottom: 0;
  color: #bf4328;
  font-family: var(--font-display);
  font-size: 26px;
  font-style: italic;
}

.video-feature {
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: 14px;
  background: #10232a;
}

.video-wrap {
  position: relative;
  width: 100%;
}

.video-feature video,
.motion-preview {
  display: block;
  width: 100%;
  max-height: 560px;
  border-radius: 6px;
  background: #10232a;
}

.motion-preview {
  height: auto;
}

.video-label {
  position: absolute;
  right: clamp(12px, 3vw, 28px);
  bottom: 58px;
  left: clamp(12px, 3vw, 28px);
  display: grid;
  gap: 3px;
  padding: 14px 18px;
  text-align: center;
  background: rgba(248, 252, 252, 0.94);
  border: 1px solid rgba(217, 232, 235, 0.84);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(16, 35, 42, 0.18);
  pointer-events: none;
}

.video-label strong {
  color: #123754;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
}

.video-label span {
  color: #0b8f3a;
  font-size: clamp(15px, 2.1vw, 24px);
  font-weight: 800;
  line-height: 1.1;
}

.section,
.split-section,
.contact-section {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.muted {
  background:
    linear-gradient(180deg, rgba(216, 238, 245, 0.46), rgba(234, 246, 247, 0.92)),
    var(--soft);
}

.location-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.location-card,
.feature-grid article,
.partner-panel,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.location-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  overflow: hidden;
  color: white;
  background-position: center;
  background-size: cover;
  position: relative;
}

.location-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(16, 35, 42, 0.1), rgba(13, 60, 70, 0.78));
}

.location-card > * {
  position: relative;
}

.location-card p {
  max-width: 360px;
  line-height: 1.6;
}

.location-card a {
  width: max-content;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 800;
  font-size: 14px;
}

.parramatta {
  background-image: url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1200&q=80");
}

.sydney {
  background-image: url("https://images.unsplash.com/photo-1506973035872-a4ec16b8e8d9?auto=format&fit=crop&w=1200&q=80");
}

.strathfield {
  background-image: url("https://images.unsplash.com/photo-1560185007-c5ca9d2c014d?auto=format&fit=crop&w=1200&q=80");
}

.homebush {
  background-image: url("https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?auto=format&fit=crop&w=1200&q=80");
}

.westmead {
  background-image: url("https://images.unsplash.com/photo-1560184897-ae75f418493e?auto=format&fit=crop&w=1200&q=80");
}

.feature-grid article {
  padding: 26px;
}

.feature-grid p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: white;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green), var(--brand));
  border-radius: 8px;
}

.split-section,
.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
}

.split-section {
  background:
    linear-gradient(135deg, #10232a, #0b5965 62%, #087887),
    var(--ink);
  color: white;
}

.split-section p {
  color: rgba(255, 255, 255, 0.76);
}

.partner-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  background:
    linear-gradient(135deg, #ffffff, #f2fbfc 72%),
    #ffffff;
}

.partner-panel p {
  margin-bottom: 0;
}

.contact-section {
  background: #ffffff;
}

.contact-card {
  display: grid;
  gap: 12px;
  min-width: min(100%, 390px);
  padding: 24px;
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer span:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.payment-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
}

.payment-modal.is-open {
  display: block;
}

.payment-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 35, 42, 0.58);
}

.payment-dialog {
  position: relative;
  width: min(580px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  margin: 20px auto;
  padding: clamp(22px, 4vw, 34px);
  background: #ffffff;
  border: 1px solid rgba(217, 232, 235, 0.95);
  border-radius: 8px;
  box-shadow: 0 28px 72px rgba(16, 35, 42, 0.28);
}

.payment-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 38px;
  height: 38px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  background: var(--soft);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.payment-intro {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

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

.payment-tab {
  min-height: 44px;
  padding: 8px 10px;
  color: var(--green);
  font: inherit;
  font-weight: 800;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.payment-tab.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), #2288c7);
  border-color: transparent;
}

.payment-form {
  display: none;
  gap: 14px;
}

.quote-builder {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(242, 251, 252, 0.94)),
    #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.quote-dates {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.quote-builder button {
  min-height: 48px;
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  background: linear-gradient(135deg, #f47d00, #e6b857);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.quote-builder button:hover {
  background: linear-gradient(135deg, #d96f00, #d49c2d);
}

.quote-summary {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
  padding: 18px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(16, 35, 42, 0.98), rgba(8, 120, 135, 0.92)),
    var(--ink);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(16, 35, 42, 0.18);
}

.quote-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.quote-price-row strong {
  font-family: var(--font-display);
  font-size: clamp(38px, 7vw, 58px);
  line-height: 0.95;
}

.quote-price-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  color: #10232a;
  font-size: 15px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
}

.quote-summary dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.quote-summary dl > div {
  display: grid;
  gap: 3px;
}

.quote-summary dt {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-summary dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  line-height: 1.45;
}

.secure-payment-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  margin-top: 4px;
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand), #2288c7);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.secure-payment-button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.payment-form.is-active {
  display: grid;
}

.payment-form button {
  width: 100%;
  margin-top: 4px;
  border: 0;
}

.payment-form button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.payment-status {
  margin: 18px 0 0;
  padding: 12px 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  background: rgba(15, 23, 42, 0.05);
  border-radius: 8px;
}

.payment-status[data-state="error"] {
  color: #7f1d1d;
  background: rgba(220, 38, 38, 0.1);
}

.payment-status[data-state="success"] {
  color: #14532d;
  background: rgba(22, 163, 74, 0.12);
}

.owner-payment-setup {
  margin-top: 16px;
  padding: 14px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px dashed var(--line);
  border-radius: 8px;
}

.owner-payment-setup summary {
  color: var(--green);
  font-weight: 800;
  cursor: pointer;
}

.owner-payment-setup label {
  margin-top: 14px;
}

.owner-payment-setup button {
  min-height: 42px;
  margin-top: 12px;
  padding: 0 14px;
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand), #2288c7);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.owner-payment-setup p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 860px) {
  .site-header,
  .main-nav,
  .airport-section,
  .split-section,
  .partner-panel,
  .contact-section,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    gap: 12px;
  }

  .hero,
  .stats-strip,
  .tools-grid,
  .weather-grid,
  .commute-card,
  .job-link-grid,
  .location-grid,
  .media-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: calc(100svh - 76px);
    padding-top: clamp(44px, 9vw, 72px);
    padding-bottom: clamp(44px, 9vw, 72px);
    background:
      linear-gradient(180deg, rgba(248, 252, 252, 0.96), rgba(232, 247, 249, 0.8)),
      var(--sky);
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(248, 252, 252, 0.78), rgba(248, 252, 252, 0.52)),
      linear-gradient(90deg, rgba(248, 252, 252, 0.74), rgba(248, 252, 252, 0.24));
  }

  .hero-slideshow img {
    object-position: center;
  }

  .search-panel {
    background: rgba(255, 255, 255, 0.9);
  }

  h1 {
    font-size: clamp(42px, 11vw, 58px);
    line-height: 0.96;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: static;
  }

  .main-nav {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-logo {
    width: min(100%, 230px);
  }

  .header-action,
  .button,
  .search-panel button,
  .payment-form button {
    width: 100%;
  }

  .payment-tabs {
    grid-template-columns: 1fr;
  }

  .quote-dates {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .hero-weather {
    width: 100%;
  }

  .hero-weather-title,
  .hero-weather-chip {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero {
    min-height: 100svh;
    padding-inline: 18px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(248, 252, 252, 0.72), rgba(248, 252, 252, 0.48)),
      linear-gradient(90deg, rgba(248, 252, 252, 0.62), rgba(248, 252, 252, 0.18));
  }

  .hero-text {
    font-size: 17px;
    line-height: 1.62;
  }

  .search-panel {
    padding: 18px;
  }
}
