:root {
  --brand-navy: #0B1825;
  --brand-navy-2: #11243A;
  --brand-navy-3: #173450;
  --brand-blue: #2D7FCE;
  --brand-blue-soft: #D9ECFF;
  --white: #FFFFFF;
  --off-white: #F7FAFD;
  --silver: #E7EEF7;
  --ink: #0B1825;
  --text: #304056;
  --muted: #657489;
  --border: rgba(11, 24, 37, 0.12);
  --dark-border: rgba(255, 255, 255, 0.18);
  --shadow: 0 28px 80px rgba(11, 24, 37, 0.18);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

p {
  color: var(--text);
  font-weight: 500;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 9999;
  padding: 10px 14px;
  color: var(--brand-navy);
  background: var(--white);
}

.skip-link:focus {
  left: 10px;
  top: 10px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--white);
  background: rgba(11, 24, 37, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.26));
}

.brand strong {
  display: block;
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.brand small {
  display: block;
  margin-top: -2px;
  color: rgba(255,255,255,0.78);
  font-size: 0.74rem;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.94rem;
  color: rgba(255,255,255,0.84);
}

.main-nav a {
  font-weight: 800;
  transition: color .2s ease, background .2s ease, transform .2s ease, border-color .2s ease;
}

.main-nav a:hover {
  color: var(--white);
}

.nav-cta {
  padding: 10px 16px;
  color: var(--brand-navy) !important;
  background: var(--white);
  border: 1px solid var(--white);
  border-radius: 999px;
  font-weight: 900;
}

.nav-cta:hover {
  color: var(--white) !important;
  background: transparent;
  border-color: var(--white);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
  transition: transform .2s ease, opacity .2s ease;
}

.section {
  padding: 92px 0;
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 8%, rgba(45, 127, 206, 0.28), transparent 30%),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(135deg, var(--brand-navy), var(--brand-navy-2));
}

.section-dark p,
.section-dark li,
.section-dark span {
  color: rgba(248, 250, 253, 0.82);
}

.section-white {
  background: var(--white);
}

.hero {
  min-height: calc(100vh - 78px);
  padding: 74px 0 82px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  align-items: center;
  gap: 54px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--brand-blue-soft) !important;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.eyebrow.dark {
  color: var(--brand-blue) !important;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(2.65rem, 6vw, 5.6rem);
  line-height: 0.97;
  font-weight: 950;
  letter-spacing: -0.07em;
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 32px;
  color: rgba(248,250,253,0.86) !important;
  font-size: 1.17rem;
  font-weight: 600;
}

.hero-actions,
.cta-actions,
.store-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.btn,
.store-badge {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 950;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.btn {
  padding: 0 24px;
  border: 1.5px solid transparent;
}

.btn-light {
  color: var(--brand-navy);
  background: var(--white);
  border-color: var(--white);
}

.btn-light:hover {
  color: var(--white);
  background: var(--brand-navy);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.18);
}

.btn-dark {
  color: var(--white);
  background: var(--brand-navy);
  border-color: var(--brand-navy);
}

.btn-dark:hover {
  color: var(--brand-navy);
  background: var(--white);
  border-color: var(--brand-navy);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(11,24,37,0.12);
}

.btn-outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
  color: var(--brand-navy);
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 690px;
  margin-top: 34px;
}

.hero-trust div {
  padding: 16px;
  border: 1px solid var(--dark-border);
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
}

.hero-trust strong,
.hero-trust span {
  display: block;
}

.hero-trust strong {
  margin-bottom: 2px;
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 950;
}

.hero-trust span {
  color: rgba(248,250,253,0.76);
  font-size: 0.82rem;
  line-height: 1.45;
  font-weight: 650;
}

.hero-visual {
  position: relative;
  isolation: isolate;
  min-height: 680px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 44px -48px -34px 78px;
  z-index: -2;
  border-radius: 46% 54% 45% 55% / 46% 43% 57% 54%;
  background: linear-gradient(135deg, rgba(45,127,206,0.18), rgba(255,255,255,0.13));
}

.photo-frame {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(11, 24, 37, 0.13);
  mix-blend-mode: multiply;
}

.hero-photo {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 35px 90px rgba(0,0,0,0.35);
}

.floating-card {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  background: rgba(11, 24, 37, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.28);
}

.order-card {
  left: -26px;
  bottom: 88px;
  max-width: 330px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 22px;
}

.order-card strong,
.order-card small {
  display: block;
}

.order-card strong {
  font-weight: 950;
}

.order-card small {
  color: rgba(248,250,253,0.72);
  font-size: 0.82rem;
  font-weight: 650;
}

.status-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  border-radius: 50%;
  background: #5CE1A4;
  box-shadow: 0 0 0 7px rgba(92,225,164,0.15);
}

.phone-card {
  right: -28px;
  top: 108px;
  width: 210px;
  padding: 22px 18px 20px;
  border-radius: 28px;
}

.phone-top {
  width: 48px;
  height: 5px;
  margin: 0 auto 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.38);
}

.phone-card p,
.phone-card strong,
.phone-card span {
  display: block;
  margin: 0;
}

.phone-card p {
  color: rgba(248,250,253,0.72);
  font-size: 0.8rem;
  font-weight: 700;
}

.phone-card strong {
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.phone-card span {
  margin-top: 7px;
  color: rgba(248,250,253,0.72);
  font-size: 0.78rem;
  font-weight: 650;
}

.trust-strip {
  padding: 46px 0;
  background: var(--off-white);
}

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

.trust-grid article {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(11,24,37,0.06);
}

.trust-grid span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--brand-blue);
  font-weight: 950;
}

.trust-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--brand-navy);
  font-size: 1.04rem;
  font-weight: 950;
}

.trust-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.split-grid,
.app-grid,
.coverage-grid {
  display: grid;
  grid-template-columns: minmax(350px, 0.95fr) minmax(0, 1.05fr);
  gap: 70px;
}

.align-centre {
  align-items: center;
}

.image-stack,
.merchant-photo-wrap {
  position: relative;
}

.image-stack img,
.partner-image img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.stack-note {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 340px;
  padding: 18px 20px;
  color: var(--white);
  background: rgba(11, 24, 37, 0.86);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 22px;
  backdrop-filter: blur(16px);
}

.stack-note strong,
.stack-note span {
  display: block;
}

.stack-note strong {
  color: var(--white);
  font-weight: 950;
}

.stack-note span {
  color: rgba(248,250,253,0.78);
  font-size: 0.9rem;
  font-weight: 650;
}

.content-block > p:not(.eyebrow),
.section-heading p:last-child,
.coverage-copy p:not(.eyebrow) {
  max-width: 650px;
  color: var(--text);
  font-size: 1.05rem;
}

.content-block h2,
.section-heading h2,
.coverage-copy h2,
.cta-panel h2 {
  margin-bottom: 18px;
  color: var(--brand-navy);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -0.055em;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.feature-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid #E5EBF3;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(11, 24, 37, 0.06);
}

.feature-list span,
.step-number,
.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: var(--white);
  background: var(--brand-navy);
  font-weight: 950;
}

.feature-list h3,
.step-card h3,
.value-grid h3,
.partner-copy h3 {
  margin-bottom: 6px;
  color: var(--brand-navy);
  font-size: 1.06rem;
  font-weight: 950;
}

.feature-list p,
.step-card p,
.value-grid p,
.partner-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.app-section {
  background: linear-gradient(180deg, var(--white), var(--off-white));
  padding-top: 36px;
}

.app-grid {
  align-items: center;
}

.store-row {
  margin-top: 28px;
}

.store-badge {
  gap: 12px;
  min-width: 218px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--brand-navy);
  border: 1.5px solid var(--brand-navy);
}

.store-badge:hover {
  color: var(--brand-navy);
  background: var(--white);
  border-color: var(--brand-navy);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(11,24,37,0.12);
}

.store-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
}

.store-badge span {
  display: grid;
  line-height: 1.1;
}

.store-badge small {
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.store-badge strong {
  font-size: 1.08rem;
  font-weight: 950;
}

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

.phone-shell {
  position: relative;
  width: min(100%, 370px);
  min-height: 640px;
  padding: 38px 22px 24px;
  color: var(--brand-navy);
  background: var(--white);
  border: 14px solid var(--brand-navy);
  border-radius: 46px;
  box-shadow: 0 30px 90px rgba(11,24,37,0.18);
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 96px;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--brand-navy);
}

.app-location {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.app-location strong {
  display: block;
  color: var(--brand-navy);
  font-size: 1rem;
}

.phone-shell h3 {
  margin-bottom: 18px;
  color: var(--brand-navy);
  font-size: 1.45rem;
  font-weight: 950;
}

.vendor-card {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 14px;
  border: 1px solid #E5EBF3;
  border-radius: 20px;
  background: var(--off-white);
}

.vendor-dot {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-blue));
}

.vendor-card strong,
.vendor-card small,
.vendor-card em {
  display: block;
}

.vendor-card strong {
  color: var(--brand-navy);
  font-size: 0.95rem;
  font-weight: 950;
}

.vendor-card small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.vendor-card em {
  color: var(--brand-blue);
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 950;
}

.tracking-panel {
  margin-top: 28px;
  padding: 20px;
  color: var(--white);
  background: var(--brand-navy);
  border-radius: 24px;
}

.track-line {
  display: block;
  width: 100%;
  height: 8px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-blue) 60%, rgba(255,255,255,0.2) 60%);
}

.tracking-panel strong,
.tracking-panel small {
  display: block;
  color: var(--white);
}

.tracking-panel small {
  color: rgba(248,250,253,0.76);
  font-weight: 700;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.centred {
  text-align: center;
  margin-inline: auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step-card,
.value-grid article {
  min-height: 220px;
  padding: 28px;
  border: 1px solid #E5EBF3;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(11,24,37,0.07);
}

.step-number {
  margin-bottom: 28px;
}

.light-heading h2,
.light-heading p:last-child {
  color: var(--white) !important;
}

.light-heading p:last-child {
  opacity: 0.84;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.partner-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 28px 70px rgba(0,0,0,0.18);
}

.partner-image img {
  height: 360px;
  border-radius: 0;
  box-shadow: none;
}

.partner-image .photo-frame {
  border-radius: 0;
}

.partner-copy {
  padding: 28px;
}

.partner-copy h3 {
  color: var(--white);
  font-size: 1.55rem;
  line-height: 1.15;
}

.partner-copy p,
.partner-copy li {
  color: rgba(248,250,253,0.78);
}

.partner-copy ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 24px;
  padding-left: 20px;
  font-weight: 650;
}

.coverage-section {
  background: var(--off-white);
}

.coverage-grid {
  align-items: center;
}

.city-check {
  padding: 30px;
  border: 1px solid #E5EBF3;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: 0 20px 60px rgba(11,24,37,0.08);
}

.city-check label,
.lead-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-navy);
  font-weight: 950;
}

.city-input-row {
  display: flex;
  gap: 12px;
}

.city-input-row input,
.lead-form input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1.5px solid #D9E2EC;
  border-radius: 999px;
  color: var(--brand-navy);
  background: var(--white);
  font: inherit;
  font-weight: 650;
}

.city-input-row input:focus,
.lead-form input:focus {
  outline: 3px solid rgba(45, 127, 206, 0.2);
  border-color: var(--brand-blue);
}

.city-result,
.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.story-section {
  padding-top: 20px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.value-grid.compact {
  grid-template-columns: 1fr;
  margin-top: 28px;
}

.value-grid.compact article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  min-height: auto;
  padding: 20px;
}

.final-cta {
  color: var(--white);
  background: var(--brand-navy);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 44px;
  align-items: center;
  padding: 44px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 80% 20%, rgba(45,127,206,0.28), transparent 26%),
    linear-gradient(135deg, var(--brand-navy), var(--brand-navy-2));
  box-shadow: 0 28px 80px rgba(0,0,0,0.2);
}

.cta-panel h2,
.cta-panel p {
  color: var(--white) !important;
}

.cta-panel p:not(.eyebrow) {
  opacity: 0.84;
  font-weight: 600;
}

.lead-form {
  display: grid;
  gap: 10px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
}

.lead-form label {
  color: var(--white);
}

.lead-form input {
  border-color: rgba(255,255,255,0.24);
}

.lead-form .btn {
  margin-top: 10px;
}

.lead-form .form-note {
  color: rgba(248,250,253,0.76);
}

.site-footer {
  padding: 62px 0 30px;
  color: var(--brand-navy);
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.9fr;
  gap: 42px;
}

.footer-brand img {
  background: var(--brand-navy);
  border-radius: 16px;
}

.footer-brand strong {
  color: var(--brand-navy);
}

.footer-brand small {
  color: var(--muted);
}

.site-footer p {
  max-width: 360px;
  margin: 20px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.site-footer h3 {
  margin-bottom: 14px;
  color: var(--brand-navy);
  font-size: 0.95rem;
  font-weight: 950;
}

.site-footer a:not(.brand) {
  display: block;
  margin-bottom: 9px;
  color: var(--text);
  font-weight: 750;
}

.site-footer a:not(.brand):hover {
  color: var(--brand-blue);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid #E5EBF3;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
}

@media (max-width: 1050px) {
  .hero-grid,
  .split-grid,
  .app-grid,
  .coverage-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

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

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

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .nav-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 16px;
    border-radius: 20px;
    background: var(--brand-navy);
    box-shadow: 0 20px 50px rgba(0,0,0,0.24);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 14px;
    border-radius: 12px;
  }

  .nav-cta {
    text-align: center;
  }

  .section {
    padding: 70px 0;
  }

  .hero {
    padding-top: 56px;
  }

  .hero h1 {
    letter-spacing: -0.055em;
  }

  .hero-trust,
  .steps-grid,
  .trust-grid,
  .partner-grid,
  .value-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-photo,
  .image-stack img {
    height: 520px;
  }

  .floating-card {
    position: static;
    margin-top: 14px;
  }

  .phone-card {
    width: 100%;
  }

  .city-input-row,
  .footer-bottom {
    flex-direction: column;
  }

  .cta-panel {
    padding: 28px;
  }
}

@media (max-width: 560px) {
  .brand span {
    display: none;
  }

  .hero-actions,
  .store-row {
    align-items: stretch;
  }

  .btn,
  .store-badge {
    width: 100%;
  }

  .hero-photo,
  .image-stack img,
  .partner-image img {
    height: 420px;
  }

  .feature-list article,
  .value-grid.compact article {
    grid-template-columns: 1fr;
  }

  .phone-shell {
    min-height: 560px;
  }
}

/* Final polish additions */
.light-copy h2,
.light-copy p:not(.eyebrow) {
  color: var(--white) !important;
}

.light-copy p:not(.eyebrow) {
  opacity: 0.84;
  font-weight: 650;
}

.coverage-section {
  background:
    radial-gradient(circle at 84% 22%, rgba(45,127,206,0.22), transparent 28%),
    linear-gradient(135deg, var(--brand-navy), var(--brand-navy-2));
}

.city-check-dark {
  color: var(--white);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 26px 70px rgba(0,0,0,0.24);
}

.city-check-dark label {
  color: var(--white);
}

.city-check-dark .city-result {
  color: rgba(248,250,253,0.8);
  font-weight: 650;
}

.btn-availability {
  color: var(--brand-navy);
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 16px 34px rgba(0,0,0,0.18);
}

.btn-availability:hover {
  color: var(--white);
  background: transparent;
  border-color: var(--white);
  transform: translateY(-2px);
}

.partner-form {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.16);
}

.partner-form label {
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
}

.partner-form input,
.partner-form select,
.legal-contact-card input {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  color: var(--brand-navy);
  background: var(--white);
  font: inherit;
  font-weight: 650;
}

.partner-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--brand-navy) 50%), linear-gradient(135deg, var(--brand-navy) 50%, transparent 50%);
  background-position: calc(100% - 20px) 22px, calc(100% - 15px) 22px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.partner-form input:focus,
.partner-form select:focus {
  outline: 3px solid rgba(217,236,255,0.28);
  border-color: var(--white);
}

.partner-form .btn {
  margin-top: 8px;
}

.partner-result {
  color: rgba(248,250,253,0.76) !important;
}

.footer-grid {
  grid-template-columns: 1.25fr 0.65fr 0.65fr 0.85fr;
}

.legal-hero {
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 88px 0;
}

.legal-hero h1 {
  max-width: 840px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.legal-hero p {
  max-width: 760px;
  color: rgba(248,250,253,0.84) !important;
  font-size: 1.08rem;
  font-weight: 650;
}

.legal-content {
  padding: 80px 0;
  background: var(--white);
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 50px;
  align-items: start;
}

.legal-article {
  display: grid;
  gap: 28px;
}

.legal-article section {
  padding-bottom: 26px;
  border-bottom: 1px solid #E5EBF3;
}

.legal-article h2 {
  margin-bottom: 12px;
  color: var(--brand-navy);
  font-size: 1.55rem;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.legal-article h3 {
  margin: 20px 0 8px;
  color: var(--brand-navy);
  font-size: 1.04rem;
  font-weight: 950;
}

.legal-article p,
.legal-article li {
  color: var(--text);
  font-weight: 550;
}

.legal-article ul,
.legal-article ol {
  padding-left: 22px;
}

.legal-side-card,
.not-found-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--off-white);
  border: 1px solid #E5EBF3;
  box-shadow: 0 18px 46px rgba(11,24,37,0.07);
}

.legal-side-card h2,
.not-found-card h1 {
  color: var(--brand-navy);
  font-weight: 950;
}

.legal-side-card p {
  color: var(--muted);
  font-weight: 600;
}

.legal-side-card a {
  display: block;
  margin-top: 10px;
  color: var(--brand-blue);
  font-weight: 850;
}

.not-found-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 10%, rgba(45,127,206,0.28), transparent 30%),
    linear-gradient(135deg, var(--brand-navy), var(--brand-navy-2));
}

.not-found-card {
  width: min(100%, 720px);
  text-align: center;
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 28px 80px rgba(0,0,0,0.24);
}

.not-found-card img {
  width: 86px;
  margin: 0 auto 20px;
}

.not-found-card h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  line-height: 1;
}

.not-found-card p {
  max-width: 520px;
  margin: 0 auto 26px;
  color: rgba(248,250,253,0.82);
  font-size: 1.05rem;
  font-weight: 650;
}

@media (max-width: 1050px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 820px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
