/* Perth Appliance Rental : fresh laundry palette (water, foam, sun) */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Core : water & clean */
  --deep: #063642;
  --navy: #063642; /* alias for legal-page inline bars */
  --teal: #0a6f82;
  --teal-bright: #0d8fa5;
  --aqua: #5eead4;
  --aqua-soft: rgba(94, 234, 212, 0.22);
  --foam: #eef9fb;
  --mist: #f4fcfd;
  --white: #ffffff;
  /* Warm accent : sunshine / dry cycle */
  --sun: #f0c14b;
  --sun-hover: #ffd863;
  --sun-deep: #c9a035;
  /* Text */
  --ink: #0f2429;
  --text: #1a353c;
  --text-soft: #3d565c;
  --text-muted: #5f767c;
  --link: #0a6f82;
  --link-hover: #0d8fa5;
  --border: #c8e8ee;
  /* Faint gold edge : same “weight” as --border on white */
  --border-sun: #e8ddc4;
  --border-strong: #9dd4e0;
  --success: #0d7a4f;
  --success-bg: #e6f7ef;
  --shadow-sm: 0 2px 12px rgba(6, 54, 66, 0.06);
  --shadow-md: 0 8px 30px rgba(6, 54, 66, 0.1);
  --shadow-lg: 0 20px 50px rgba(6, 54, 66, 0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  /* Layout: full-bleed sections, content capped ~--layout-max with extra margin on wide viewports */
  --layout-max: 1280px;
  --layout-pad-x: clamp(1.35rem, 4.5vw, 2.5rem);
  --layout-inset: max(var(--layout-pad-x), calc(50vw - var(--layout-max) / 2));
  --nav-height: 68px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 0.75rem);
}

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

/* Keyboard focus : visible rings without cluttering mouse clicks */
:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--teal-bright);
  outline-offset: 3px;
}

:focus:not(:focus-visible) {
  outline: none;
}

.skip-link {
  position: absolute;
  left: var(--layout-pad-x);
  top: -120px;
  z-index: 1000;
  padding: 0.65rem 1.1rem;
  background: var(--white);
  color: var(--deep);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--teal-bright);
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: calc(var(--nav-height) + 10px);
  outline: 3px solid var(--teal-bright);
  outline-offset: 2px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.72;
  letter-spacing: 0.011em;
  color: var(--text);
  background: var(--mist);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 700;
}

h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  line-height: 1.16;
  letter-spacing: -0.017em;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.22;
  letter-spacing: -0.012em;
}

h4 {
  font-size: 1.15rem;
  line-height: 1.28;
  letter-spacing: -0.008em;
}

p {
  color: var(--text-soft);
  line-height: 1.72;
}

a {
  color: var(--link);
}

.container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: var(--layout-inset);
}

.section {
  padding: clamp(3.85rem, 8.5vw, 6rem) 0;
}

.section-alt {
  background: var(--foam);
}

/* ---------- Nav : light, trustworthy ---------- */
nav.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  padding: 0;
  padding-inline: max(var(--layout-inset), env(safe-area-inset-left, 0px))
    max(var(--layout-inset), env(safe-area-inset-right, 0px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-panel {
  display: contents;
}

.nav-toggle {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--teal-bright);
  outline-offset: 2px;
}

.nav-toggle-bars {
  position: relative;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: background 0.2s ease;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.2s ease, top 0.2s ease;
}

.nav-toggle-bars::before {
  top: -7px;
}

.nav-toggle-bars::after {
  top: 7px;
}

.site-nav.is-open .nav-toggle-bars {
  background: transparent;
}

.site-nav.is-open .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.site-nav.is-open .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  min-width: 0;
  flex: 1;
}

.nav-brand-text {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-brand-accent {
  color: var(--teal-bright);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.55rem;
}

.nav-links a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--teal);
}

.nav-cta {
  background: linear-gradient(180deg, var(--sun) 0%, var(--sun-deep) 100%) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  box-shadow: 0 4px 16px rgba(240, 193, 75, 0.45);
  transition: transform 0.15s, box-shadow 0.2s !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(240, 193, 75, 0.55);
  color: var(--white) !important;
}

/* ---------- Hero ---------- */
.hero {
  padding: 7.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, var(--deep) 0%, var(--teal) 42%, var(--teal-bright) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, var(--aqua-soft) 0%, transparent 68%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(240, 193, 75, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Bubble hints */
.hero-inner::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.12);
  top: 12%;
  right: 8%;
  pointer-events: none;
  opacity: 0.6;
}

.hero-inner::after {
  content: "";
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  bottom: 18%;
  left: 4%;
  pointer-events: none;
}

.hero-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: var(--layout-inset);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  line-height: 1.35;
  max-width: 100%;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  line-height: 1.18;
}

.hero h1 .hero-h1-accent {
  color: var(--sun);
  text-shadow: 0 2px 24px rgba(240, 193, 75, 0.35);
  letter-spacing: 0.025em;
}

.hero-lead {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.75rem;
  max-width: 32rem;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.015em;
}

.hero-price-callout {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.35rem);
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.price-big {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 3.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.price-detail {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  justify-content: center;
  max-width: 16rem;
}

.price-detail-primary {
  display: block;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.price-detail-secondary {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, var(--sun) 0%, var(--sun-deep) 100%);
  color: var(--white);
  padding: 15px 26px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(240, 193, 75, 0.45);
  transition: transform 0.15s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(240, 193, 75, 0.5);
  color: var(--white);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 15px 26px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.35);
  transition: background 0.2s, border-color 0.2s;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.hero-trust {
  display: flex;
  gap: 1.45rem;
  margin-top: 1.85rem;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.trust-check {
  color: var(--aqua);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trust-check i {
  font-size: 0.72rem;
}

/* Hero plan card : frosted */
.hero-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.hero-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.plan-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.plan-list--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  align-items: stretch;
}

.plan-item--full {
  grid-column: 1 / -1;
}

.plan-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 0.95rem 1.1rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.plan-item:focus-visible {
  outline: 2px solid var(--aqua);
  outline-offset: 2px;
}

.plan-item:hover,
.plan-item.active {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(94, 234, 212, 0.55);
  transform: translateX(2px);
}

.plan-item.popular {
  border-color: rgba(240, 193, 75, 0.65);
  background: rgba(240, 193, 75, 0.12);
}

.plan-item-left {
  display: flex;
  flex-direction: column;
}

.plan-name {
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
}

.plan-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.76rem;
  margin-top: 3px;
}

.plan-price {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 800;
}

.plan-price span {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
}

.popular-badge {
  background: var(--sun);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 6px;
  margin-left: 6px;
  vertical-align: middle;
}

.hero-card-note {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.76rem;
  margin-top: 1rem;
  text-align: center;
  line-height: 1.5;
}

.hero-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  margin-top: 1rem;
  background: var(--white);
  color: var(--teal);
  padding: 14px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.hero-card-cta i {
  font-size: 0.85em;
  opacity: 0.9;
}

.hero-card-cta:hover {
  background: var(--foam);
  color: var(--deep);
  transform: translateY(-1px);
}

/* Trust strip : simple grid, sentence case (no faux “stats” styling) */
.trust-bar {
  background: var(--mist);
  padding: clamp(1.35rem, 3.5vw, 1.85rem) 0;
  border-bottom: 1px solid var(--border);
}

.trust-bar-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: var(--layout-inset);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem 1.75rem;
  align-items: start;
}

.trust-item {
  padding: 0.5rem 0.35rem;
}

.trust-item-title {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.trust-item-text {
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1.55;
  margin-top: 0.35rem;
  letter-spacing: 0.01em;
}

@media (max-width: 960px) {
  .trust-bar-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Why grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.2vw, 2rem);
  margin-top: 2.5rem;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.95rem 1.85rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.2s;
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--foam), #dff5f8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  border: 1px solid var(--border);
}

.why-icon i {
  font-size: 1.2rem;
  color: var(--teal);
}

.why-card h4 {
  margin-bottom: 0.45rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
}

.why-card p {
  font-size: 0.9rem;
  line-height: 1.68;
}

.section-label {
  display: inline-block;
  color: var(--teal-bright);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.section-header {
  max-width: min(52rem, 100%);
  margin-bottom: 0.65rem;
}

.section-header h2 {
  text-wrap: balance;
}

.section-header p {
  font-size: 1.05rem;
  margin-top: 0.85rem;
  max-width: min(40rem, 100%);
  line-height: 1.68;
  letter-spacing: 0.013em;
}

/* Pricing : inline washer / dryer line art */
#pricing .container {
  position: relative;
}

.appliance-icons-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  left: 0;
  top: 0;
}

.price-card-illustration {
  margin: 0.85rem 0 0.15rem;
}

.price-card-illustration__canvas {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 0.75rem;
  min-height: 5.75rem;
  background: linear-gradient(165deg, #e4f4f8, var(--foam));
  border-radius: 14px;
  border: 1px solid var(--border);
}

.price-card-illustration--dual .price-card-illustration__canvas {
  gap: 0.5rem;
  padding: 0.75rem 0.5rem;
}

/* Featured set: soft gold → aqua foam gradient, faint gold edge (same as card) */
.price-card.featured .price-card-illustration__canvas {
  border: 1px solid var(--border-sun);
  background: linear-gradient(
    165deg,
    rgba(240, 193, 75, 0.2) 0%,
    #e6f4f7 38%,
    var(--foam) 100%
  );
}

.price-appliance-svg {
  display: block;
  width: 56px;
  height: auto;
  aspect-ratio: 48 / 64;
  color: var(--teal);
  flex-shrink: 0;
}

.price-appliance-svg--pair {
  width: 48px;
}

.price-card:hover .price-appliance-svg {
  color: var(--teal-bright);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.2vw, 2rem);
  margin-top: 2.5rem;
}

.price-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.95rem 1.85rem;
  position: relative;
  transition: box-shadow 0.25s, transform 0.2s;
  background: var(--white);
}

.price-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.price-card.featured {
  border: 1px solid var(--border-sun);
  /* Tight gold halo: smaller blur/offset than before so it hugs the card */
  box-shadow:
    0 6px 22px rgba(240, 193, 75, 0.14),
    var(--shadow-md);
  z-index: 1;
}

.price-card.featured:hover {
  box-shadow:
    0 8px 26px rgba(240, 193, 75, 0.17),
    var(--shadow-md);
}

@media (min-width: 769px) {
  .pricing-grid {
    align-items: end;
  }

  .price-card.featured {
    transform: translateY(-1.5rem);
  }

  .price-card.featured:hover {
    transform: translateY(calc(-1.5rem - 3px));
  }
}

.featured-label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--sun) 0%, var(--sun-deep) 100%);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(240, 193, 75, 0.45);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.price-card-header {
  margin-bottom: 1.25rem;
}

.price-card-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
}

.price-card-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin: 0.65rem 0 0.2rem;
}

.price-dollar {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}

.price-per {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.price-term-note {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.price-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.35rem 0;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.87rem;
  color: var(--text-soft);
  line-height: 1.65;
}

.feat-check {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.feat-check i {
  font-size: 0.72rem;
}

#pricing .feat-check {
  color: var(--teal-bright);
}

.price-features .feat-check {
  margin-top: 0.38em;
}

.price-card-btn {
  display: block;
  width: 100%;
  margin-top: 1.75rem;
  padding: 13px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border: 2px solid var(--teal);
  color: var(--teal);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.price-card-btn:hover {
  background: var(--teal);
  color: var(--white);
}

.price-card.featured .price-card-btn {
  border: none;
  background: linear-gradient(180deg, var(--sun) 0%, var(--sun-deep) 100%);
  color: var(--white);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 6px 24px rgba(240, 193, 75, 0.45);
  /* Match .btn-primary / .form-submit: only lift + shadow on hover, no gradient cross-fade */
  transition: transform 0.15s, box-shadow 0.2s;
}

.price-card.featured .price-card-btn:hover {
  background: linear-gradient(180deg, var(--sun) 0%, var(--sun-deep) 100%);
  color: var(--white);
  box-shadow: 0 10px 32px rgba(240, 193, 75, 0.5);
  transform: translateY(-2px);
}

.pricing-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing-note strong {
  color: var(--text-soft);
}

.mtm-row {
  background: linear-gradient(135deg, var(--foam), #dff6f9);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.mtm-row p {
  color: var(--text);
  font-size: 0.92rem;
  margin: 0;
  font-weight: 500;
}

.mtm-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--teal);
  white-space: nowrap;
}

.mtm-price a {
  color: inherit;
  text-decoration: none;
}

/* Process : bento cards (replaces timeline) */
.section--process {
  background: linear-gradient(180deg, var(--mist) 0%, var(--foam) 45%, var(--mist) 100%);
}

.section-header--wide {
  max-width: min(58rem, 100%);
}

.process-lede {
  font-size: 1.05rem;
  color: var(--text-soft);
  margin-top: 0.75rem;
  line-height: 1.65;
  letter-spacing: 0.012em;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.15rem, 2.5vw, 2rem);
  margin-top: 2rem;
}

.process-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem 1.45rem 1.4rem 1.55rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.2s ease, border-color 0.2s;
  overflow: hidden;
}

.process-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--aqua), var(--teal-bright));
  border-radius: 4px 0 0 4px;
  opacity: 0.95;
}

.process-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--border-strong);
}

.process-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--teal);
  background: linear-gradient(145deg, #e8f8fa, var(--foam));
  border: 2px solid var(--teal-bright);
  line-height: 1;
}

.process-title {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
}

.process-blurb {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.65;
  letter-spacing: 0.01em;
  margin: 0;
  max-width: 38ch;
}

.process-blurb a {
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
}

.process-blurb a:hover {
  text-decoration: underline;
  color: var(--teal-bright);
}

.process-blurb strong {
  color: var(--text);
  font-weight: 700;
}

/* Service areas : flexible chip cloud (not a rigid pill grid) */
.section--areas {
  background: linear-gradient(165deg, var(--mist) 0%, var(--foam) 42%, var(--mist) 100%);
}

.section-header--areas {
  max-width: min(40rem, 100%);
}

.section-header--areas p {
  max-width: none;
}

.areas-panel {
  margin-top: 1.75rem;
  padding: clamp(1.35rem, 3.5vw, 2rem);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 22px;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-md);
}

.areas-panel-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin: 0 0 1rem;
}

.areas-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.areas-cloud li {
  margin: 0;
}

.areas-chip {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--deep);
  padding: 0.5rem 0.95rem;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid rgba(10, 111, 130, 0.14);
  box-shadow: 0 2px 8px rgba(6, 54, 66, 0.06);
  transition: transform 0.18s ease, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.areas-chip:hover {
  transform: translateY(-2px);
  border-color: var(--teal-bright);
  color: var(--teal);
  box-shadow: 0 8px 24px rgba(10, 111, 130, 0.12);
}

.areas-foot {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.65;
  letter-spacing: 0.01em;
}

.faq-lead {
  text-align: left;
  margin-bottom: 0;
}

.faq-lead h2 {
  margin-bottom: 0.35rem;
}

.faq-intro {
  margin-top: 0.75rem;
  max-width: min(48rem, 100%);
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.faq-list {
  width: 100%;
  max-width: min(40rem, 100%);
  margin: 2rem 0 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 0.35rem 1.25rem 0.15rem;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.15rem 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--ink);
  gap: 1rem;
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
}

.faq-q:hover {
  color: var(--teal);
}

.faq-q:focus-visible {
  outline: 2px solid var(--teal-bright);
  outline-offset: 2px;
  border-radius: 8px;
}

.faq-icon {
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--teal-bright);
  transition: transform 0.25s;
}

.faq-a {
  padding: 0 0 1.25rem;
  font-size: 0.92rem;
  color: var(--text-soft);
  display: none;
  line-height: 1.75;
  letter-spacing: 0.01em;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.stars {
  color: var(--sun-deep);
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
  letter-spacing: 2px;
}

.testi-text {
  font-size: 0.92rem;
  color: var(--text-soft);
  margin-bottom: 1.1rem;
  line-height: 1.65;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
}

.testi-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
}

.testi-suburb {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Apply */
.apply-section {
  background: linear-gradient(160deg, var(--deep) 0%, var(--teal) 55%, #085a68 100%);
  padding: clamp(3.85rem, 8.5vw, 5.75rem) 0;
  position: relative;
  overflow: hidden;
}

.apply-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 100% 0%, var(--aqua-soft), transparent 55%);
  pointer-events: none;
}

.apply-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: var(--layout-inset);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  position: relative;
  z-index: 1;
}

.apply-left .section-label {
  color: var(--aqua);
}

.apply-left h2 {
  color: var(--white);
  margin-bottom: 0.85rem;
}

.apply-left p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.35rem;
}

.apply-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.68rem;
}

/* Same icon + type rhythm as .hero-trust-item / .trust-check (list can wrap; keep icon on first line). */
.apply-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.apply-checklist .trust-check {
  flex-shrink: 0;
  margin-top: 0.2em;
}

.apply-contact-links {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

.apply-contact-links a {
  color: var(--sun);
  font-weight: 700;
  text-decoration: none;
}

.apply-contact-links a:hover {
  text-decoration: underline;
  color: var(--sun-hover);
}

.apply-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: sticky;
  top: calc(var(--nav-height) + 1rem);
}

.apply-form-card h3 {
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 1.35rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 0.9rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.32rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  font-family: var(--font-body);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

/* Date/datetime: keep native appearance so mobile controls aren’t flattened by appearance:none */
.form-group input[type="date"],
.form-group input[type="datetime-local"] {
  -webkit-appearance: auto;
  appearance: auto;
  min-height: 2.75rem;
  line-height: 1.3;
  box-sizing: border-box;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230a6f82' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 36px;
}

.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
  outline: none;
  border-color: var(--teal-bright);
  box-shadow: 0 0 0 3px var(--aqua-soft);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.55;
}

.form-required {
  font-size: 0.78rem;
  color: #c62828;
  margin-left: 2px;
}

.form-terms {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.form-terms a {
  color: var(--teal);
  font-weight: 600;
}

.form-submit {
  display: block;
  width: 100%;
  background: linear-gradient(180deg, var(--sun) 0%, var(--sun-deep) 100%);
  color: var(--white);
  padding: 15px;
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 6px 22px rgba(240, 193, 75, 0.45);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(240, 193, 75, 0.5);
  color: var(--white);
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: var(--success-bg);
  border-radius: var(--radius);
  color: var(--success);
  font-weight: 600;
}

/* Footer */
footer {
  background: var(--deep);
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: var(--layout-inset);
}

/* 50% | 50% : brand + contact | (Site | Legal) */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(2.75rem, 7vw, 5.5rem);
  row-gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}

.footer-brand-col {
  min-width: 0;
}

.footer-links-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(1.5rem, 4vw, 3rem);
  row-gap: 1.5rem;
  min-width: 0;
}

.footer-col {
  min-width: 0;
}

.footer-contact-block {
  margin-top: 1.65rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-contact-title {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-brand-text {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  margin-top: 0;
  line-height: 1.65;
}

.footer-col h5 {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  font-size: 0.87rem;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--aqua);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0.8rem;
}

.footer-contact-item:last-child {
  margin-bottom: 0;
}

.footer-contact-icon {
  flex: 0 0 1.375rem;
  width: 1.375rem;
  height: 1.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.48);
  margin-top: 0.12em;
}

.footer-contact-icon i {
  font-size: 0.87rem;
  line-height: 1;
}

/* Same treatment as .footer-links a */
a.footer-contact-link {
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  font-size: 0.87rem;
  font-weight: 500;
  line-height: 1.65;
  word-break: break-word;
  transition: color 0.2s;
}

a.footer-contact-link:hover {
  color: var(--aqua);
}

.footer-contact-text {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.87rem;
  font-weight: 500;
  line-height: 1.65;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.78rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.25rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  font-size: 0.78rem;
}

.footer-bottom-links a:hover {
  color: var(--aqua);
}

/* Before you enquire : rental requirements card */
.req-section {
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
}

.req-section-intro {
  text-align: center;
  margin-bottom: 1.5rem;
}

.req-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.05rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.req-section-subtitle {
  font-size: 1.02rem;
  color: var(--text-muted);
  margin-top: 0.45rem;
  max-width: min(42rem, 100%);
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}

.req-box {
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: 22px;
  padding: clamp(1.5rem, 4vw, 2.25rem) clamp(1.35rem, 4vw, 2.25rem);
  box-shadow: 0 10px 40px rgba(10, 111, 130, 0.1), 0 2px 8px rgba(6, 54, 66, 0.06);
}

.req-box-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.req-box-head-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--teal-bright), var(--teal));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(10, 111, 130, 0.35);
}

.req-box-head-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.req-box-head-lead {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.req-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.req-highlight {
  text-align: center;
  padding: 0.35rem 0.5rem;
}

.req-highlight-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.85rem;
  background: linear-gradient(180deg, #e0f7fa, var(--foam));
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.req-highlight-icon i {
  font-size: 1.15rem;
  color: var(--teal);
}

.req-highlight-icon--currency i {
  font-size: 1.2rem;
}

.req-highlight-title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.45rem;
}

.req-highlight-text {
  font-size: 0.84rem;
  color: var(--text-soft);
  line-height: 1.68;
  letter-spacing: 0.01em;
  margin: 0;
}

.req-highlight-text strong {
  color: var(--text);
  font-weight: 700;
}

.req-soft-follow {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.55;
  margin: 0.25rem auto 0;
  max-width: min(36rem, 100%);
}

.req-foot {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-top: 1.35rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
}

.req-foot-link {
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
}

.req-foot-link:hover {
  text-decoration: underline;
  color: var(--teal-bright);
}

/* Pilot / trust card */
.pilot-card {
  max-width: none;
  width: 100%;
  margin: 0;
}

.pilot-card h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.pilot-card .price-card-btn {
  display: inline-block;
  width: auto;
  padding: 12px 22px;
  margin-top: 1rem;
}

.text-link-accent {
  color: var(--teal);
  font-weight: 700;
}

@media (max-width: 768px) {
  .hero {
    padding: 6rem 0 3rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-inner::before,
  .hero-inner::after {
    display: none;
  }
  .hero-card {
    order: -1;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-primary,
  .btn-secondary {
    justify-content: center;
    width: 100%;
    min-height: 48px;
  }
  .hero-card-cta,
  .price-card-btn,
  .form-submit {
    min-height: 48px;
    box-sizing: border-box;
  }
  .hero-trust {
    flex-direction: column;
    gap: 0.65rem;
  }
  .plan-list--grid {
    grid-template-columns: 1fr;
  }
  .plan-item {
    min-height: 48px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .req-highlights {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .req-box-head {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .req-box-head-text {
    text-align: center;
  }
  .apply-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    row-gap: 2.25rem;
  }

  .footer-links-split {
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(1.25rem, 5vw, 2.5rem);
  }

  .form-row {
    grid-template-columns: 1fr;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
  }

  .form-group input[type="date"],
  .form-group input[type="datetime-local"] {
    min-height: 48px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .trust-bar-inner {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    text-align: center;
  }

  .nav-brand-text {
    font-size: clamp(1rem, 4.2vw, 1.2rem);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-panel {
    display: block;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    z-index: 99;
    max-height: min(70vh, 28rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open .nav-panel {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.35rem 0 1rem;
  }

  .nav-links a {
    padding: 0.85rem var(--layout-pad-x);
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }

  .nav-links a.nav-cta {
    justify-content: center;
    margin: 0.65rem var(--layout-pad-x) 0.35rem;
    border: none;
    border-radius: 999px;
    min-height: 48px;
  }

  .faq-q {
    min-height: 52px;
    padding: 1rem 0;
  }

  .mtm-row {
    flex-direction: column;
    text-align: center;
  }
  .apply-form-card {
    position: static;
    max-height: none;
    overflow: visible;
  }
}

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding: clamp(2.75rem, 7vw, 4rem) 0;
  }
}

body.nav-open {
  overflow: hidden;
}

@media (min-width: 769px) {
  body.nav-open {
    overflow: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-panel {
    transition: none;
  }

  .nav-toggle-bars,
  .nav-toggle-bars::before,
  .nav-toggle-bars::after {
    transition: none;
  }

  .why-card:hover,
  .price-card:hover,
  .process-card:hover,
  .plan-item:hover,
  .plan-item.active,
  .areas-chip:hover,
  .btn-primary:hover,
  .btn-secondary:hover,
  .hero-card-cta:hover,
  .price-card-btn:hover,
  .form-submit:hover,
  .nav-cta:hover,
  .price-card.featured .price-card-btn:hover {
    transform: none;
  }
}

.legal-wrap code,
.container code {
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 0.88em;
  background: var(--foam);
  border: 1px solid var(--border);
  padding: 0.12em 0.38em;
  border-radius: 6px;
  color: var(--ink);
}

/* Photo checklist page */
.checklist-body {
  background: var(--white);
}

.legal-wrap.checklist-doc .checklist-lede {
  font-size: 1.05rem;
  color: var(--text-soft);
  margin-bottom: 0.25rem;
}

.legal-wrap.checklist-doc h2 {
  font-size: 1.15rem;
  margin: 1.65rem 0 0.6rem;
}

.legal-wrap.checklist-doc > h2:first-of-type {
  margin-top: 1.25rem;
}

.checklist-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist-items li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.7rem;
  color: var(--text-soft);
  line-height: 1.65;
}

.checklist-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 0.6rem;
  height: 0.6rem;
  border: 2px solid var(--teal-bright);
  border-radius: 3px;
  background: var(--foam);
}

.checklist-note {
  margin-top: 1.75rem;
  margin-bottom: 0;
  padding: 1rem 1.15rem;
  background: var(--foam);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.65;
}

.checklist-actions {
  margin-top: 1.5rem;
}

/* Legal subpages : use --layout-pad-x only; --layout-inset is for full-bleed sections
   and would shrink the 720px box’s content to a sliver on wide screens (border-box). */
.legal-wrap {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
  padding: calc(var(--nav-height) + 2rem) var(--layout-pad-x) 3rem;
  font-family: var(--font-body);
  color: var(--text);
}

.legal-wrap h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
  color: var(--ink);
}

.legal-wrap h2 {
  font-size: 1.2rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--ink);
}

.legal-wrap p,
.legal-wrap li {
  color: var(--text-soft);
  margin-bottom: 0.85rem;
  line-height: 1.72;
  letter-spacing: 0.01em;
}

.legal-wrap .back {
  margin-top: 2rem;
}

.legal-top-bar {
  background: var(--navy);
  padding: 14px 0;
  display: flex;
  justify-content: center;
}

.legal-top-bar .legal-back {
  flex: 0 1 720px;
  width: 100%;
  box-sizing: border-box;
  padding: 0 var(--layout-pad-x);
}

.legal-top-bar--sticky {
  position: sticky;
  top: 0;
  z-index: 50;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.legal-back i {
  font-size: 0.85em;
  opacity: 0.9;
}

/* Photo checklist : same full-width content band as homepage (not a 720px centred column). */
.checklist-body .legal-top-bar {
  display: block;
  padding: 14px max(var(--layout-inset), env(safe-area-inset-left, 0px)) 14px
    max(var(--layout-inset), env(safe-area-inset-right, 0px));
}

.checklist-body .legal-top-bar .legal-back {
  flex: unset;
  width: auto;
  max-width: none;
  padding: 0;
}

.checklist-body .legal-wrap.checklist-doc {
  max-width: none;
  margin: 0;
  padding: calc(var(--nav-height) + 2rem)
    max(var(--layout-inset), env(safe-area-inset-left, 0px)) 3rem
    max(var(--layout-inset), env(safe-area-inset-right, 0px));
}
