:root {
  --site-bg: #f5f1e7;
  --site-panel: #fffdf7;
  --site-ink: #213127;
  --site-muted: #5d6b61;
  --site-line: #d9d1bf;
  --site-accent: #4d8b57;
  --site-accent-dark: #2f5f39;
  --site-shadow: 0 24px 60px rgba(45, 55, 45, 0.12);
}

html {
  font-size: 16px;
  min-height: 100%;
}

body.site-body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(112, 167, 98, 0.16), transparent 32%),
    linear-gradient(180deg, #f7f4ec 0%, #efe7d6 100%);
  color: var(--site-ink);
  font-family: Georgia, "Times New Roman", serif;
}

body.site-body.legacy-form-body {
  background: #f5f5f5;
  font-family: Roboto, Arial, sans-serif;
}

a {
  color: inherit;
}

.shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 0;
  background: rgba(255, 253, 247, 0.94);
  border-bottom: 1px solid rgba(217, 209, 191, 0.85);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--site-accent-dark);
  font-weight: 700;
}

.site-brand__mark {
  width: 2.9rem;
  height: 2.9rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: linear-gradient(135deg, #355e3b 0%, #4d8b57 55%, #8fc17f 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.site-brand__copy {
  display: grid;
  gap: 0.15rem;
}

.site-brand__name {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-brand__tagline {
  color: var(--site-muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-header__meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.site-header__links {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--site-muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-header__links a {
  text-decoration: none;
}

.site-country-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.8rem;
  border-radius: 1.1rem;
  border: 1px solid #d8dece;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(45, 55, 45, 0.08);
  text-decoration: none;
}

.site-country-badge__flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 0.85rem;
  background: #edf5ef;
  font-size: 1.15rem;
}

.site-country-badge__copy {
  display: grid;
  gap: 0.1rem;
}

.site-country-badge__label {
  color: var(--site-muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-country-badge__name {
  color: var(--site-ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-country-badge--uk .site-country-badge__flag,
.legacy-form-header__pill--uk {
  background: #eef3ff;
}

.site-country-badge--us .site-country-badge__flag,
.legacy-form-header__pill--us {
  background: #eef6ff;
}

.site-country-badge--au .site-country-badge__flag,
.legacy-form-header__pill--au {
  background: #eef6f3;
}

.site-country-badge--nz .site-country-badge__flag,
.legacy-form-header__pill--nz {
  background: #f0f5ff;
}

.site-country-badge--za .site-country-badge__flag,
.legacy-form-header__pill--za {
  background: #eef9f1;
}

.site-footer {
  padding: 1.5rem 0 2.5rem;
  color: var(--site-muted);
  font-size: 0.95rem;
}

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

.site-footer__culture {
  color: #6b7280;
  font-size: 0.84rem;
  font-weight: 700;
}

.legacy-form-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(12px);
  padding-left: 0;
  padding-right: 0;
}

.legacy-form-header__inner,
.legacy-form-footer__inner {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.legacy-form-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.legacy-form-header__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding-top: 0;
  margin-bottom: 0;
}

.legacy-form-header__logo {
  display: block;
  width: auto;
  max-width: min(248px, calc(100vw - 2rem));
  max-height: 72px;
}

.legacy-form-header__text {
  color: #243024;
  font-size: 1.25rem;
  font-weight: 700;
}

.legacy-form-header__meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.legacy-form-header__pill,
.legacy-form-header__service {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.legacy-form-header__pill {
  gap: 0.45rem;
  border: 1px solid #deeadf;
  color: #25603a;
  text-decoration: none;
}

.legacy-form-header__service {
  background: #f5f7fa;
  color: #334155;
}

.legacy-form-header__flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

.legacy-form-header__pill-copy {
  display: grid;
  gap: 0.05rem;
}

.legacy-form-header__pill-code {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.1;
}

.legacy-form-header__pill-name {
  color: #4b5563;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.1;
}

.legacy-form-header__link {
  color: var(--site-accent-dark);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

#header-logo .navbar-brand {
  margin-right: 0;
}

#site-logo {
  max-width: min(248px, calc(100vw - 2rem));
}

#site-logo-1 {
  width: min(248px, calc(100vw - 2rem));
  max-width: 100%;
}

.legacy-form-footer {
  background: linear-gradient(180deg, #f8fafc 0%, #eef3f0 100%);
  border-top: 1px solid #e5e7eb;
  padding: 1.4rem 0 2rem;
}

.legacy-form-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.legacy-form-footer__brand {
  display: grid;
  justify-items: start;
  gap: 0.55rem;
}

.legacy-form-footer__aside {
  display: grid;
  justify-items: end;
  gap: 0.55rem;
}

.legacy-form-footer__logo {
  display: block;
  max-height: 44px;
  width: auto;
}

.legacy-form-footer__copy {
  margin: 0;
  color: #777;
  font-size: 0.8rem;
}

.legacy-form-footer__culture {
  color: #6b7280;
  font-size: 0.78rem;
  font-weight: 700;
}

.legacy-form-footer__links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.legacy-form-footer__links a {
  color: #334155;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.selection-shell {
  padding: 2rem 0 4rem;
}

.selection-hero {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.selection-kicker {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--site-accent-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.selection-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 0.95;
}

.selection-copy {
  margin: 1rem 0 0;
  max-width: 34rem;
  color: var(--site-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.selection-panel {
  background: rgba(255, 253, 247, 0.92);
  border: 1px solid rgba(217, 209, 191, 0.9);
  border-radius: 1.25rem;
  box-shadow: var(--site-shadow);
  overflow: hidden;
}

.selection-section {
  padding: 1.5rem;
}

.selection-section + .selection-section {
  border-top: 1px solid var(--site-line);
}

.section-heading {
  display: flex;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1.25rem;
}

.section-heading h2 {
  margin: 0;
  font-size: 1.35rem;
}

.section-heading p {
  margin: 0.35rem 0 0;
  color: var(--site-muted);
}

.section-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: var(--site-accent-dark);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  flex: 0 0 auto;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.country-card,
.module-card {
  text-decoration: none;
  border: 1px solid var(--site-line);
  background: var(--site-panel);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.country-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.15rem;
  border-radius: 1rem;
}

.country-card:hover,
.module-card:hover,
.country-card.is-active {
  transform: translateY(-2px);
  border-color: rgba(77, 139, 87, 0.7);
  box-shadow: 0 18px 40px rgba(45, 55, 45, 0.1);
}

.country-code {
  color: var(--site-accent-dark);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.country-name {
  font-size: 1.2rem;
  font-weight: 700;
}

.module-list {
  display: grid;
  gap: 1rem;
}

.module-card--stacked {
  display: grid;
  gap: 0.9rem;
}

.city-service-copy {
  margin: 0;
  color: var(--site-muted);
  line-height: 1.7;
}

.module-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-radius: 1rem;
}

.module-label {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
}

.module-slug {
  display: block;
  margin-top: 0.3rem;
  color: var(--site-muted);
  font-size: 0.92rem;
}

.module-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: var(--site-accent);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
}

.location-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 0 0 1.5rem;
}

.location-overview-card {
  padding: 1.2rem;
  border-radius: 1rem;
  border: 1px solid var(--site-line);
  background: var(--site-panel);
  box-shadow: 0 12px 28px rgba(45, 55, 45, 0.06);
}

.location-overview-card__label {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--site-accent-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-overview-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.25rem;
  line-height: 1.2;
}

.location-overview-card p {
  margin: 0;
  color: var(--site-muted);
  line-height: 1.65;
}

.locations-link--rich {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.locations-link__title {
  font-size: 1rem;
  font-weight: 700;
}

.locations-link__meta {
  color: var(--site-muted);
  font-size: 0.9rem;
}

.locations-link__action {
  color: var(--site-accent-dark);
  font-size: 0.85rem;
  font-weight: 700;
}

.location-hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.location-seo-section {
  margin-top: 1.75rem;
}

.empty-state {
  border: 1px dashed var(--site-line);
  border-radius: 1rem;
  padding: 1.25rem;
  color: var(--site-muted);
  background: rgba(255, 255, 255, 0.45);
}

.journey-shell {
  padding: 2rem 0 4rem;
}

.journey-hero {
  max-width: 40rem;
  margin-bottom: 1.5rem;
}

.journey-shell--locations-index .journey-hero,
.journey-shell--location-detail-page .journey-hero,
.journey-panel--locations ~ .country-seo,
.journey-panel--location-detail ~ .country-seo {
  max-width: none;
}

.journey-shell--locations-index .selection-copy,
.journey-shell--location-detail-page .selection-copy,
.journey-panel--locations ~ .country-seo .country-seo__inner,
.journey-panel--location-detail ~ .country-seo .country-seo__inner {
  max-width: none;
}

.selection-hero--city,
.selection-hero--city .selection-copy,
.selection-shell .country-seo__inner {
  max-width: none;
}

.journey-shell--service-start .country-seo__inner,
.journey-shell--service-start .service-overview-grid,
.journey-shell--service-start .selection-copy {
  max-width: none;
}

.journey-shell--compare-page .journey-hero,
.journey-shell--compare-page .selection-copy {
  max-width: none;
}

.selection-shell .location-overview-grid {
  margin-bottom: 0;
}

.journey-panel {
  max-width: 42rem;
  background: linear-gradient(180deg, rgba(255, 253, 247, 0.98) 0%, rgba(252, 248, 239, 0.95) 100%);
  border: 1px solid rgba(217, 209, 191, 0.95);
  border-radius: 1.5rem;
  box-shadow: var(--site-shadow);
  padding: 1.75rem;
}

.journey-meta {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(217, 209, 191, 0.85);
}

.journey-form {
  display: grid;
  gap: 0.75rem;
}

.journey-inputs {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
}

.journey-inputs--with-alt {
  align-items: start;
}

.journey-actions {
  display: grid;
  gap: 0.5rem;
  justify-items: stretch;
}

.journey-alt-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  color: var(--site-accent-dark);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.journey-alt-link:hover,
.journey-alt-link:focus,
.journey-alt-link:active {
  color: var(--site-accent-dark);
  text-decoration: underline;
}

.journey-input {
  width: 100%;
  min-height: 3.5rem;
  border-radius: 999px;
  border: 1px solid var(--site-line);
  padding: 0 1.15rem;
  font-size: 1rem;
  color: var(--site-ink);
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.journey-input:focus {
  outline: 2px solid rgba(77, 139, 87, 0.25);
  border-color: var(--site-accent);
}

.journey-input--box,
.review-textarea,
.extras-card__select,
.phone-entry__country,
.phone-entry__number,
.journey-address-select,
.field input,
.field select,
.field textarea {
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.journey-input--box:focus,
.review-textarea:focus,
.extras-card__select:focus,
.phone-entry__country:focus,
.phone-entry__number:focus,
.journey-address-select:focus,
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: rgba(77, 139, 87, 0.75);
  box-shadow: 0 0 0 4px rgba(77, 139, 87, 0.14);
}

.journey-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  border: 0;
  border-radius: 999px;
  padding: 0 1.4rem;
  background: var(--site-accent-dark);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.journey-submit--lookup {
  width: 100%;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1.4rem;
  background: var(--site-accent-dark);
  color: #fff;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
}

.cta-button--secondary {
  background: var(--site-accent);
}

.journey-validation {
  color: #9a2f2f;
  font-size: 0.95rem;
  min-height: 1.3rem;
}

.journey-validation--inline {
  min-height: 0;
  margin: 0.4rem 0 0;
}

.journey-panel--compare {
  max-width: 68rem;
  display: grid;
  gap: 1.5rem;
}

.compare-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--site-line);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.7);
}

.compare-summary__actions {
  display: grid;
  justify-items: end;
  gap: 0.45rem;
}

.compare-summary__meta {
  display: grid;
  justify-items: end;
  gap: 0.15rem;
}

.compare-summary__label {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--site-muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-summary__count {
  font-weight: 700;
  color: var(--site-accent-dark);
}

.compare-summary__hint {
  color: var(--site-muted);
  font-size: 0.92rem;
}

.compare-back {
  color: var(--site-accent-dark);
  text-decoration: none;
  font-weight: 700;
}

.compare-group {
  display: grid;
  gap: 1rem;
  padding: 1.15rem;
  border: 1px solid rgba(217, 209, 191, 0.9);
  border-radius: 1.25rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 247, 239, 0.82) 100%);
}

.compare-filters {
  display: grid;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(217, 209, 191, 0.9);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.78);
}

.compare-filters__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.compare-filters__head strong {
  display: block;
  color: var(--site-ink);
  font-size: 1rem;
}

.compare-filters__reset {
  white-space: nowrap;
}

.compare-filters__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.compare-filters__field {
  display: grid;
  gap: 0.45rem;
}

.compare-filters__field span {
  color: var(--site-ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.compare-group__head {
  position: relative;
  display: grid;
  gap: 0.35rem;
  padding-bottom: 0.9rem;
  padding-right: 11rem;
  border-bottom: 1px solid rgba(217, 209, 191, 0.72);
}

.compare-group__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 1.8rem;
  padding: 0 0.7rem;
  border-radius: 999px;
  background: rgba(77, 139, 87, 0.12);
  color: var(--site-accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.compare-group h2 {
  margin: 0;
  font-size: 1.32rem;
}

.compare-group__head p {
  margin: 0;
  color: var(--site-muted);
}

.compare-group__count {
  position: absolute;
  top: 0;
  right: 0;
  text-align: right;
  font-size: 0.92rem;
  white-space: nowrap;
}

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

.compare-card {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--site-line);
  border-radius: 1.2rem;
  background: var(--site-panel);
  box-shadow: 0 14px 34px rgba(45, 55, 45, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.compare-card:hover,
.service-choice-card:hover,
.extras-card:hover,
.locations-link:hover {
  transform: translateY(-2px);
  border-color: rgba(77, 139, 87, 0.55);
  box-shadow: 0 20px 42px rgba(45, 55, 45, 0.1);
}

.compare-card__header {
  display: grid;
  gap: 0.4rem;
}

.compare-card__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 1.7rem;
  padding: 0 0.65rem;
  border-radius: 999px;
  background: rgba(77, 139, 87, 0.12);
  color: var(--site-accent-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.compare-card__size {
  font-size: 1.15rem;
  font-weight: 700;
}

.compare-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.compare-card__price {
  color: var(--site-accent-dark);
  font-size: 1.65rem;
  font-weight: 700;
}

.compare-card__price-note {
  color: var(--site-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.compare-card__body {
  display: grid;
  gap: 0.6rem;
  color: var(--site-muted);
}

.compare-card__detail {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(217, 209, 191, 0.65);
}

.compare-card__detail span {
  color: var(--site-muted);
  font-size: 0.92rem;
}

.compare-card__detail strong {
  color: var(--site-ink);
  font-size: 0.95rem;
  text-align: right;
}

.compare-card__form,
.compare-card__submit {
  width: 100%;
}

.compare-card__form {
  margin-top: 0.1rem;
}

.compare-card__submit {
  min-height: 3.25rem;
  margin-top: 0.2rem;
}

.compare-card__submit {
  min-height: 3.25rem;
}

.compare-card__media {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 10rem;
  border-radius: 0.85rem;
  background: rgba(245, 241, 231, 0.85);
  overflow: hidden;
}

.compare-card__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.service-choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.service-choice-card {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--site-line);
  border-radius: 1.2rem;
  background: var(--site-panel);
  box-shadow: 0 14px 34px rgba(45, 55, 45, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.service-choice-card__body {
  display: grid;
  gap: 0.6rem;
}

.service-choice-card__body h2,
.service-choice-card__body p {
  margin: 0;
}

.service-choice-card__body p {
  color: var(--site-muted);
}

.service-choice-card__submit {
  width: 100%;
}

.service-choice-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  text-decoration: none;
}

.service-choice-card__link:hover,
.service-choice-card__link:focus,
.service-choice-card__link:active {
  color: #fff;
  text-decoration: none;
}

.extras-form {
  display: grid;
  gap: 1.5rem;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.extras-card {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--site-line);
  border-radius: 1.2rem;
  background: var(--site-panel);
  box-shadow: 0 14px 34px rgba(45, 55, 45, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.extras-card__copy {
  display: grid;
  gap: 0.5rem;
}

.extras-card__copy h3,
.extras-card__copy p {
  margin: 0;
}

.extras-card__price {
  color: var(--site-accent-dark);
  font-size: 1.15rem;
  font-weight: 700;
}

.extras-card__price-note {
  color: var(--site-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.extras-card__note {
  color: #9a2f2f;
}

.extras-card__controls {
  display: grid;
  gap: 0.45rem;
}

.extras-card__select {
  min-height: 3rem;
  border-radius: 0.85rem;
  border: 1px solid var(--site-line);
  padding: 0 0.9rem;
  font: inherit;
  color: var(--site-ink);
  background: #fff;
}

.extras-grid--items .extras-card--item {
  gap: 1.15rem;
  border-color: rgba(77, 139, 87, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(250, 247, 239, 0.92) 100%);
}

.extras-grid--items .extras-card__copy {
  gap: 0.65rem;
}

.extras-grid--items .extras-card__copy > div {
  display: grid;
  gap: 0.35rem;
}

.extras-grid--items .extras-card__copy h3 {
  font-size: 1.08rem;
}

.extras-grid--items .extras-card__controls {
  padding-top: 0.9rem;
  border-top: 1px solid rgba(217, 209, 191, 0.7);
}

.extras-notes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.extras-note {
  padding: 1rem 1.1rem;
  border: 1px solid var(--site-line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.7);
}

.extras-note h3,
.extras-note p {
  margin: 0;
}

.extras-note h3 {
  margin-bottom: 0.55rem;
  font-size: 1rem;
}

.extras-actions {
  display: flex;
  justify-content: flex-end;
}

.journey-panel--review {
  max-width: 78rem;
}

.journey-panel--review .compare-summary {
  margin-bottom: 1.5rem;
}

.journey-panel--locations,
.journey-panel--location-detail {
  max-width: 78rem;
}

.review-form {
  display: grid;
  gap: 1.5rem;
}

.review-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.9fr);
  gap: 2.25rem;
  align-items: start;
}

.location-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 1.5rem;
  align-items: start;
}

.location-detail-content {
  display: grid;
  gap: 1rem;
}

.location-detail-sidebar {
  position: sticky;
  top: 1rem;
}

.review-stack {
  display: grid;
  gap: 1rem;
}

.review-section {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  border: 1px solid var(--site-line);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(45, 55, 45, 0.04);
}

.review-section h2 {
  margin: 0;
  font-size: 1.2rem;
}

.review-fields {
  display: grid;
  gap: 0.9rem;
}

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

.review-field {
  display: grid;
  gap: 0.45rem;
  color: var(--site-muted);
  font-size: 0.92rem;
}

.review-field > span:first-child,
.field label {
  font-weight: 700;
  color: var(--site-accent-dark);
}

.review-field--lookup {
  align-content: end;
}

.review-address-lookup--span-2 {
  grid-column: span 2;
}

.journey-input--box,
.review-textarea {
  min-height: 3.25rem;
  border-radius: 0.9rem;
}

.review-textarea {
  width: 100%;
  min-height: 7.5rem;
  border: 1px solid var(--site-line);
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--site-ink);
  background: #fff;
  resize: vertical;
}

.review-summary {
  position: sticky;
  top: 1rem;
}

.review-section--summary {
  gap: 1.2rem;
}

.review-summary__description {
  margin-top: -0.35rem;
}

.review-summary__table {
  display: grid;
  gap: 0.7rem;
  margin: 0;
}

.review-summary__table div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.review-summary__permit-picker {
  align-items: center;
}

.review-permit-select {
  min-width: 12rem;
}

.review-summary__table dt,
.review-summary__table dd {
  margin: 0;
}

.review-summary__table dd {
  font-weight: 700;
}

.review-summary__total {
  padding-top: 0.7rem;
  border-top: 1px solid var(--site-line);
  font-size: 1.1rem;
}

.review-voucher__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
}

.phone-entry {
  display: grid;
  grid-template-columns: minmax(120px, 150px) minmax(0, 1fr);
  gap: 0.75rem;
}

.phone-entry__country,
.phone-entry__number {
  width: 100%;
}

.review-check {
  display: flex;
  gap: 0.75rem;
  align-items: start;
  padding: 0.95rem 1rem;
  border: 1px solid var(--site-line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
  color: var(--site-muted);
  font-size: 0.95rem;
}

.review-check input {
  margin-top: 0.2rem;
}

.review-submit {
  width: 100%;
}

.review-message {
  margin: 0;
}

.checkout-embed {
  min-height: 34rem;
}

.quote-page,
.quote-submitted {
  max-width: 960px;
  padding: 1.85rem;
}

.wasteonix-quote-page {
  padding-top: 48px;
}

.wasteonix-quote-hero {
  padding: 0;
  overflow: visible;
  margin-bottom: 24px;
}

.wasteonix-quote-hero .wasteonix-hero-grid {
  padding: 72px 0 190px;
}

.quote-page--wasteonix {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin-top: 0;
  padding: 0;
}

body.wasteonix-body .journey-shell__inner.quote-page--wasteonix {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  padding: 0;
  margin-bottom: 0;
}

body.wasteonix-body .journey-shell__inner.quote-page--wasteonix::before {
  display: none;
}

.quote-page__intro,
.quote-submitted {
  display: grid;
  gap: 0.9rem;
}

.quote-page .journey-shell__title,
.quote-submitted .journey-shell__title {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.quote-submitted {
  justify-items: start;
}

.quote-submitted .secondary-link {
  margin-top: 0.35rem;
}

.wasteonix-quote-page--submitted .wasteonix-quote-hero {
  margin-bottom: 24px;
}

.quote-submitted--wasteonix {
  max-width: 1080px;
  padding: 0;
}

body.wasteonix-body .journey-shell__inner.quote-submitted--wasteonix {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  margin-bottom: 0;
}

body.wasteonix-body .journey-shell__inner.quote-submitted--wasteonix::before {
  display: none;
}

.quote-submitted__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.locations-groups {
  display: grid;
  gap: 1rem;
}

.locations-group {
  padding: 1.1rem;
  border: 1px solid var(--site-line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.7);
}

.locations-group__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  margin-bottom: 1rem;
}

.locations-group__header h2 {
  margin: 0;
  font-size: 1.1rem;
}

.locations-group__header span {
  color: var(--site-muted);
  font-size: 0.9rem;
}

.locations-grid,
.locations-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
}

.locations-link {
  display: block;
  padding: 0.9rem 1rem;
  border: 1px solid var(--site-line);
  border-radius: 0.9rem;
  background: var(--site-panel);
  text-decoration: none;
  font-weight: 600;
}

.location-map {
  width: 100%;
  min-height: 22rem;
  border: 0;
  border-radius: 1rem;
}

.journey-submit--secondary {
  background: var(--site-accent);
}

.quote-form {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.quote-form-page {
  display: block;
  margin: 0;
}

.quote-form--wasteonix {
  position: relative;
  z-index: 2;
  margin-top: 0;
}

.quote-form__section {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--site-line);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.7);
}

.quote-form__section--featured {
  padding: 1.6rem;
  border-color: rgba(226, 232, 240, 0.92);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.14);
  border-radius: 28px;
}

.quote-form__section--featured .journey-shell__eyebrow {
  margin: 0 0 0.35rem;
}

.quote-form__section--featured .journey-shell__title {
  margin: 0;
}

.quote-form__section--featured .journey-shell__subtitle {
  margin: 0 0 0.45rem;
}

.quote-form__section-head {
  display: grid;
  gap: 0.45rem;
}

.quote-form__section-head h2 {
  margin: 0;
  font-size: 1.15rem;
}

.quote-form__section-head p {
  margin: 0;
  color: var(--site-muted);
  line-height: 1.7;
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

.field--span-2 {
  grid-column: span 2;
}

.field--actions {
  align-content: end;
}

.field label {
  font-weight: 700;
  color: var(--site-ink);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--site-line);
  border-radius: 14px;
  padding: 0.85rem 0.95rem;
  font: inherit;
  color: var(--site-ink);
  background: #fff;
}

.field textarea {
  resize: vertical;
}

.checkbox-field {
  display: flex;
  gap: 0.75rem;
  align-items: start;
  padding: 0.95rem 1rem;
  border: 1px solid var(--site-line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
  color: var(--site-muted);
}

.checkbox-field input {
  margin-top: 0.2rem;
}

.quote-form__actions {
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(217, 209, 191, 0.85);
}

.file-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.file-grid input[type="file"] {
  border: 1px dashed rgba(77, 139, 87, 0.45);
  border-radius: 14px;
  padding: 0.85rem 0.95rem;
  background: rgba(255, 255, 255, 0.85);
}

.secondary-link {
  color: var(--site-accent);
  font-weight: 600;
  text-decoration: none;
}

.secondary-link:hover,
.secondary-link:focus,
.secondary-link:active,
.compare-back:hover,
.compare-back:focus,
.compare-back:active {
  color: var(--site-accent-dark);
  text-decoration: none;
}

.journey-address-select {
  width: 100%;
  min-height: 3.25rem;
  border: 1px solid var(--site-line);
  border-radius: 0.9rem;
  padding: 0 0.95rem;
  font: inherit;
  color: var(--site-ink);
  background: #fff;
}

.review-address-lookup--start {
  margin-top: 0.75rem;
}

.journey-selected-address {
  margin-top: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--site-line);
  border-radius: 0.9rem;
  background: #fff;
  color: var(--site-ink);
  font-weight: 500;
}

.country-seo {
  margin-top: 2rem;
}

.country-seo__inner {
  max-width: 52rem;
  padding: 1.5rem;
  border: 1px solid var(--site-line);
  border-radius: 1rem;
  background: rgba(255, 253, 247, 0.7);
}

.country-seo__inner h2 {
  margin: 0 0 0.9rem;
  font-size: 1.5rem;
}

.country-seo__inner p {
  margin: 0;
  color: var(--site-muted);
  line-height: 1.75;
}

.country-seo__inner p + p {
  margin-top: 0.9rem;
}

.country-seo__inner p + p:last-child {
  margin-bottom: 0;
}

.service-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.service-overview-card {
  padding: 1rem 1.1rem;
  border: 1px solid var(--site-line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.8);
}

.service-overview-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
}

.service-overview-card p {
  margin: 0;
}

.seo-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: var(--site-muted);
  font-size: 0.95rem;
}

.seo-breadcrumbs a {
  color: var(--site-accent);
  text-decoration: none;
}

.seo-breadcrumbs span[aria-current="page"] {
  color: var(--site-ink);
  font-weight: 600;
}

.wasteonix-body {
  background: #fff;
  color: #1e1e1e;
  font-family: "Montserrat", Arial, sans-serif;
}

.wasteonix-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.wasteonix-navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #e2e8f0;
}

.wasteonix-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

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

.wasteonix-brand-logo {
  display: block;
  flex-shrink: 0;
  height: 56px;
  width: auto;
  max-width: min(100%, 240px);
  max-height: 56px;
  object-fit: contain;
}

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

.wasteonix-brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #063b2f, #1f7a63, #2ecc71);
  color: #fff;
  font-weight: 900;
  letter-spacing: -2px;
}

.wasteonix-brand-name {
  font-weight: 900;
  letter-spacing: 4px;
  font-size: 22px;
  line-height: 1;
}

.wasteonix-brand-name span {
  color: #1f7a63;
}

.wasteonix-brand-tagline {
  margin-top: 5px;
  color: #64748b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.wasteonix-nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
}

.wasteonix-nav-links a {
  text-decoration: none;
}

.wasteonix-nav-links a:hover {
  color: #1f7a63;
}

.wasteonix-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 16px;
  padding: 15px 22px;
  font-family: inherit;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s ease;
}

.wasteonix-btn-dark {
  background: #063b2f;
  color: #fff;
}

.wasteonix-btn-dark:hover {
  background: #1f7a63;
  transform: translateY(-1px);
}

.wasteonix-btn-lime {
  background: #2ecc71;
  color: #071512;
  box-shadow: 0 16px 40px rgba(46, 204, 113, 0.22);
}

.wasteonix-btn-lime:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.wasteonix-btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.wasteonix-btn-outline:hover {
  background: rgba(255, 255, 255, 0.18);
}

.wasteonix-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(46, 204, 113, 0.32), transparent 36%),
    radial-gradient(circle at 8% 88%, rgba(31, 122, 99, 0.55), transparent 34%),
    #071512;
}

.wasteonix-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
  padding: 96px 0;
}

.wasteonix-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  margin-bottom: 26px;
  border-radius: 999px;
  border: 1px solid rgba(46, 204, 113, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: #d8ffe6;
  font-size: 13px;
  font-weight: 700;
}

.wasteonix-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(46px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -3px;
  font-weight: 900;
}

.wasteonix-hero h1 span {
  color: #a3e635;
}

.wasteonix-hero p {
  max-width: 670px;
  margin: 28px 0 0;
  color: #d9e5e1;
  font-size: 18px;
  line-height: 1.75;
}

.wasteonix-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.wasteonix-platform-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(2, 16, 13, 0.12);
}

.wasteonix-dashboard {
  padding: 24px;
  color: #1e1e1e;
  border-radius: 26px;
  background: #fff;
}

.wasteonix-dash-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
}

.wasteonix-dash-label {
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.wasteonix-dash-title {
  margin-top: 6px;
  font-size: 24px;
  font-weight: 900;
}

.wasteonix-active-pill {
  height: max-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: #dcfce7;
  color: #166534;
  font-size: 11px;
  font-weight: 900;
}

.wasteonix-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 22px 0;
}

.wasteonix-metric,
.wasteonix-flow-item,
.wasteonix-selector-panel,
.wasteonix-service-card {
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #fff;
}

.wasteonix-metric {
  padding: 17px;
}

.wasteonix-metric-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: #dff7ea;
  color: #1f7a63;
  font-weight: 900;
}

.wasteonix-metric small {
  display: block;
  margin-bottom: 5px;
  color: #64748b;
  font-weight: 800;
}

.wasteonix-flow {
  padding: 18px;
  border-radius: 22px;
  background: #f8fafc;
}

.wasteonix-flow-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-weight: 900;
}

.wasteonix-flow-top span:last-child {
  color: #1f7a63;
  font-size: 13px;
}

.wasteonix-flow-item {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
  padding: 13px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.wasteonix-flow-item:last-child {
  margin-bottom: 0;
}

.wasteonix-num {
  min-width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #063b2f;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.wasteonix-flow-item strong {
  display: block;
  font-size: 14px;
}

.wasteonix-flow-item small {
  color: #64748b;
  line-height: 1.5;
}

.wasteonix-trust-bar {
  padding: 24px 0;
  color: #fff;
  background: #063b2f;
}

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

.wasteonix-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
}

.wasteonix-section {
  padding: 92px 0;
}

.wasteonix-grey {
  background: #f8fafc;
}

.wasteonix-section-head {
  max-width: 700px;
  margin-bottom: 44px;
}

.wasteonix-section-head--wide {
  max-width: none;
}

.wasteonix-kicker {
  margin: 0 0 14px;
  color: #1f7a63;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.wasteonix-section-head h2,
.wasteonix-final-cta h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -2px;
  font-weight: 900;
}

.wasteonix-lead,
.wasteonix-partner-box p,
.wasteonix-final-cta p {
  color: #475569;
  font-size: 18px;
  line-height: 1.8;
}

.wasteonix-selector-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
}

.wasteonix-selector-panel {
  padding: 26px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.wasteonix-panel-head {
  display: flex;
  gap: 16px;
  align-items: start;
  margin-bottom: 22px;
}

.wasteonix-panel-head h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
}

.wasteonix-panel-head p {
  margin: 8px 0 0;
  color: #64748b;
}

.wasteonix-panel-step {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: #063b2f;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.wasteonix-country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.wasteonix-country-card,
.wasteonix-module-card {
  text-decoration: none;
  transition: 0.2s ease;
}

.wasteonix-country-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #fff;
}

.wasteonix-country-card:hover,
.wasteonix-country-card.is-active,
.wasteonix-module-card:hover,
.wasteonix-service-card:hover,
.wasteonix-partner-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(2, 16, 13, 0.12);
}

.wasteonix-country-card.is-active {
  border-color: #2ecc71;
}

.wasteonix-country-code,
.wasteonix-module-slug {
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.wasteonix-country-name,
.wasteonix-module-label {
  font-size: 18px;
  font-weight: 800;
}

.wasteonix-module-list {
  display: grid;
  gap: 14px;
}

.wasteonix-module-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  background: #fff;
}

.wasteonix-module-card--stacked {
  display: grid;
  gap: 14px;
}

.wasteonix-module-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-decoration: none;
}

.wasteonix-module-arrow {
  color: #1f7a63;
  font-size: 13px;
  font-weight: 900;
}

.wasteonix-city-subservice-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  padding-top: 6px;
  border-top: 1px solid #e2e8f0;
}

.wasteonix-empty-state {
  padding: 18px;
  border: 1px dashed #cbd5e1;
  border-radius: 18px;
  color: #64748b;
  background: #fff;
}

.wasteonix-service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.wasteonix-service-card {
  padding: 26px;
  border-radius: 26px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.wasteonix-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #dff7ea;
  color: #1f7a63;
  font-weight: 900;
}

.wasteonix-service-card h3,
.wasteonix-step-card h3,
.wasteonix-partner-box h2 {
  margin: 0;
}

.wasteonix-service-card p {
  margin: 12px 0 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
}

.wasteonix-seo-copy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.wasteonix-seo-copy-card {
  padding: 28px;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.wasteonix-seo-copy-card h3 {
  margin: 0 0 14px;
  color: #071512;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
}

.wasteonix-seo-copy-card p {
  margin: 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.85;
}

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

.wasteonix-step-card {
  padding: 28px;
  border-radius: 26px;
  background: #071512;
  color: #fff;
}

.wasteonix-big-num {
  margin-bottom: 38px;
  color: #a3e635;
  font-size: 48px;
  font-weight: 900;
}

.wasteonix-step-card p {
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.7;
}

.wasteonix-partner-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 50px;
  border: 1px solid #e2e8f0;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
  transition: 0.2s ease;
}

.wasteonix-final-cta {
  padding: 92px 0;
  color: #fff;
  text-align: center;
  background: #071512;
}

.wasteonix-final-cta p {
  max-width: 650px;
  margin: 24px auto 34px;
  color: #cbd5e1;
}

.wasteonix-final-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.wasteonix-journey-inputs {
  grid-template-columns: minmax(0, 1fr) auto;
}

.wasteonix-journey-input {
  min-height: 58px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  font-family: "Montserrat", Arial, sans-serif;
}

.wasteonix-breadcrumbs {
  margin-bottom: 24px;
}

.wasteonix-country-page,
.wasteonix-city-page,
.wasteonix-business-page,
.wasteonix-start-page {
  padding-top: 48px;
}

.wasteonix-start-page--service,
.wasteonix-quote-page {
  padding-top: 0;
}

.wasteonix-service-hero {
  padding: 0;
}

.wasteonix-service-hero .wasteonix-hero-grid {
  padding: 72px 0 132px;
}

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

.wasteonix-service-point {
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.wasteonix-service-point strong,
.wasteonix-service-point span {
  display: block;
}

.wasteonix-service-point strong {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.wasteonix-service-point span {
  margin-top: 8px;
  color: #d9e5e1;
  font-size: 14px;
  line-height: 1.65;
}

.wasteonix-country-hero {
  padding: 0;
}

.wasteonix-country-hero .wasteonix-hero-grid {
  padding: 72px 0 56px;
}

.wasteonix-start-search-panel {
  position: relative;
  z-index: 2;
  margin-top: -74px;
}

.wasteonix-start-links {
  margin-top: 22px;
}

.wasteonix-country-page .wasteonix-selector-panel {
  margin-top: 28px;
}

.wasteonix-country-page .wasteonix-service-overview {
  margin-top: 42px;
}

.wasteonix-footer {
  padding: 28px 0;
  color: #64748b;
  font-size: 13px;
}

.wasteonix-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-weight: 700;
}

.wasteonix-footer-brand {
  display: flex;
  align-items: center;
}

.wasteonix-footer-logo {
  display: block;
  flex-shrink: 0;
  height: 42px;
  width: auto;
  max-width: min(100%, 190px);
  max-height: 42px;
  object-fit: contain;
}

.wasteonix-footer-fallback {
  color: inherit;
}

.wasteonix-footer-aside {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.wasteonix-footer-culture {
  color: #94a3b8;
  font-size: 12px;
  font-weight: 800;
}

.wasteonix-footer-links {
  display: flex;
  gap: 24px;
}

@media (max-width: 767.98px) {
  .selection-shell {
    padding-top: 1.25rem;
  }

  .site-header__inner,
  .site-header__meta {
    justify-content: center;
    text-align: center;
  }

  .site-header__links {
    justify-content: center;
    width: 100%;
  }

  .site-footer__inner,
  .legacy-form-footer__aside,
  .wasteonix-footer-aside {
    justify-content: center;
    justify-items: center;
    text-align: center;
    width: 100%;
  }

  .site-country-badge {
    width: 100%;
    justify-content: center;
  }

  .selection-section {
    padding: 1.15rem;
  }

  .legacy-form-header__inner,
  .legacy-form-footer__inner {
    width: min(100% - 28px, 1120px);
  }

  .legacy-form-header__inner,
  .legacy-form-footer__inner {
    justify-content: center;
    text-align: center;
  }

  .legacy-form-header__meta,
  .legacy-form-footer__links,
  .legacy-form-footer__brand {
    justify-content: center;
    justify-items: center;
  }

  .legacy-form-header__pill {
    justify-content: center;
    width: 100%;
  }

  .module-card {
    flex-direction: column;
    align-items: start;
  }

  .journey-inputs {
    grid-template-columns: 1fr;
  }

  .journey-actions {
    justify-items: stretch;
  }

  .compare-summary {
    display: grid;
    align-items: start;
  }

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

  .compare-filters__head {
    display: grid;
  }

  .compare-filters__grid {
    grid-template-columns: 1fr;
  }

  .compare-summary__actions,
  .compare-summary__meta {
    justify-items: start;
  }

  .review-grid,
  .location-detail-grid,
  .review-fields--two,
  .review-voucher__row,
  .phone-entry,
  .quote-form__grid,
  .file-grid {
    grid-template-columns: 1fr;
  }

  .field--span-2 {
    grid-column: span 1;
  }

  .review-summary {
    position: static;
  }

  .location-detail-sidebar {
    position: static;
  }

  .quote-page,
  .quote-submitted {
    padding: 1.2rem;
  }

  .quote-page--wasteonix {
    max-width: 100%;
    margin-top: 0;
    padding: 0;
  }

  .quote-submitted__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }


  .quote-form--wasteonix {
    margin-top: 0;
  }

  .quote-page__intro,
  .quote-submitted {
    gap: 0.7rem;
  }

  .quote-page .journey-shell__title,
  .quote-submitted .journey-shell__title {
    font-size: clamp(1.65rem, 7vw, 2.1rem);
  }

  .quote-form {
    gap: 1rem;
    margin-top: 1rem;
  }

  .quote-form__section {
    padding: 1rem;
    gap: 0.85rem;
  }

  .quote-form__section--featured {
    padding: 1.15rem;
  }

  .quote-form__section-head h2 {
    font-size: 1.02rem;
  }

  .quote-form__section-head p {
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .field input,
  .field select,
  .field textarea,
  .phone-entry__country,
  .phone-entry__number,
  .file-grid input[type="file"] {
    font-size: 16px;
  }

  .quote-form__actions {
    margin-top: 0;
    padding-top: 0.9rem;
  }

  .quote-form__actions .cta-button {
    width: 100%;
  }

  .checkbox-field {
    padding: 0.9rem;
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .secondary-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
}

@media (max-width: 900px) {
  .quote-form__grid,
  .phone-entry,
  .file-grid {
    grid-template-columns: 1fr;
  }

  .field--span-2 {
    grid-column: span 1;
  }
}

@media (max-width: 1050px) {
  .wasteonix-hero-grid,
  .wasteonix-selector-grid,
  .wasteonix-partner-box {
    grid-template-columns: 1fr;
  }

  .wasteonix-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wasteonix-seo-copy-grid {
    grid-template-columns: 1fr;
  }

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

  .wasteonix-nav-links {
    display: none;
  }
}

@media (max-width: 640px) {
  .wasteonix-container {
    width: min(100% - 28px, 1180px);
  }

  .wasteonix-hero-grid {
    padding: 70px 0;
  }

  .wasteonix-service-hero .wasteonix-hero-grid {
    padding: 70px 0 110px;
  }

  .wasteonix-quote-hero .wasteonix-hero-grid {
    padding: 70px 0 152px;
  }

  .wasteonix-service-grid,
  .wasteonix-steps-grid,
  .wasteonix-trust-grid,
  .wasteonix-metrics,
  .wasteonix-seo-copy-grid,
  .wasteonix-country-grid,
  .wasteonix-journey-inputs,
  .wasteonix-service-points {
    grid-template-columns: 1fr;
  }

  .wasteonix-brand-name {
    font-size: 18px;
    letter-spacing: 3px;
  }

  .wasteonix-brand-logo {
    height: 44px;
    max-width: min(100%, 180px);
    max-height: 44px;
  }

  .wasteonix-footer-logo {
    height: 36px;
    max-width: min(100%, 160px);
    max-height: 36px;
  }

  .wasteonix-nav-inner .wasteonix-btn {
    display: none;
  }

  .wasteonix-section {
    padding: 70px 0;
  }

  .wasteonix-selector-panel,
  .wasteonix-partner-box {
    padding: 30px;
  }

  .wasteonix-start-search-panel {
    margin-top: -56px;
  }
}

.error-page {
  padding: 4rem 0 5rem;
}

.error-page__panel {
  max-width: 56rem;
  margin: 0 auto;
  padding: 2rem;
  border: 1px solid #dee2e6;
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 0.75rem 2rem rgba(15, 23, 42, 0.06);
}

.error-page__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6c757d;
}

.error-page__title {
  margin: 0 0 1rem;
  font-size: 2rem;
  line-height: 1.1;
}

.error-page__message {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: #495057;
}

.error-page__detail {
  margin: 0 0 0.75rem;
  color: #6c757d;
}

.error-page__detail code {
  color: #212529;
}

.error-page__actions {
  margin-top: 1.5rem;
}
