:root {
  --awz-blue: #063f7a;
  --awz-blue-2: #0d5a9c;
  --awz-blue-soft: #eaf3fb;
  --ink: #173047;
  --text: #516273;
  --muted: #70808f;
  --line: #dbe5ec;
  --line-strong: #c0d1dc;
  --white: #ffffff;
  --paper: #f6f9fb;
  --paper-warm: #fbf8f1;
  --sage: #eaf3ee;
  --sage-dark: #58766c;
  --sun: #d59b45;
  --sun-soft: #fff2dc;
  --error: #a33127;
  --success: #2e7757;
  --shadow: 0 18px 42px rgba(23, 48, 71, 0.12);
  --shadow-soft: 0 10px 24px rgba(23, 48, 71, 0.08);
  --radius: 8px;
  --container: 1180px;
  --sans: "Segoe UI", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

p,
h1,
h2,
h3,
ul,
ol,
dl,
dd,
figure {
  margin-top: 0;
}

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

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid rgba(213, 155, 69, 0.72);
  outline-offset: 3px;
}

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

.skip-link:focus {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 900;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--sun);
  color: #221600;
  font-weight: 850;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 78px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(23, 48, 71, 0.1);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 32px rgba(23, 48, 71, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--awz-blue);
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 58px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--awz-blue);
  color: var(--white);
  font-weight: 900;
  line-height: 1;
}

.brand-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.brand-copy strong {
  overflow: hidden;
  color: var(--awz-blue);
  font-size: 17px;
  line-height: 1.08;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-copy small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  white-space: nowrap;
}

.main-nav,
.header-action {
  display: none;
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 2px 0;
  border-radius: 99px;
  background: var(--awz-blue);
}

.main-nav {
  position: fixed;
  inset: 78px 12px auto 12px;
  z-index: 280;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.main-nav a {
  min-height: 44px;
  padding: 9px 10px;
  border-radius: var(--radius);
  color: #2d475d;
  font-size: 15px;
  font-weight: 760;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  background: var(--awz-blue-soft);
  color: var(--awz-blue);
}

.nav-cta {
  background: var(--awz-blue);
  color: var(--white) !important;
  text-align: center;
}

.hero {
  padding: 34px 0 38px;
  background: var(--paper);
}

.hero-grid {
  display: grid;
  gap: 26px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--awz-blue-2);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.12;
  overflow-wrap: break-word;
  hyphens: auto;
}

h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: 38px;
  letter-spacing: 0;
  hyphens: none;
}

.headline-mobile {
  display: none;
}

h2 {
  margin-bottom: 16px;
  font-size: 31px;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  font-size: 20px;
}

.hero-lead,
.section-heading p,
.intro-copy,
.split-copy p,
.price-grid p,
.buyer-panel p,
.discretion-grid p,
.request-copy p,
.final-cta p,
.site-footer p {
  color: var(--text);
}

.hero-lead {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 19px;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--awz-blue);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(6, 63, 122, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--awz-blue-2);
}

.button-secondary {
  border-color: var(--line-strong);
  background: var(--white);
  color: var(--awz-blue);
}

.button-light {
  background: var(--white);
  color: var(--awz-blue);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.68);
  color: var(--white);
}

.trust-list {
  display: grid;
  gap: 8px;
  max-width: 720px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding-left: 24px;
  color: #314a60;
  font-weight: 720;
}

.trust-list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 10px;
  height: 10px;
  border: 2px solid var(--sun);
  border-radius: 50%;
  background: var(--white);
}

.hero-media {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.hero-media img {
  border-bottom: 1px solid var(--line);
}

.hero-media figcaption {
  display: grid;
  gap: 4px;
  padding: 18px;
  background: var(--white);
}

.hero-media figcaption span {
  color: var(--awz-blue-2);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-media figcaption strong {
  font-size: 18px;
  line-height: 1.2;
}

.hero-media figcaption p {
  margin: 0;
  color: var(--text);
}

.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.strip-grid {
  display: grid;
  gap: 1px;
}

.strip-grid article {
  display: grid;
  gap: 5px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.strip-grid article:last-child {
  border-bottom: 0;
}

.strip-grid span {
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.strip-grid strong {
  color: #263e53;
  font-size: 16px;
  line-height: 1.4;
}

.section {
  padding: 70px 0;
}

.section:nth-of-type(even) {
  background: var(--white);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.section-heading.compact {
  margin-bottom: 0;
}

.section-heading p {
  font-size: 18px;
}

.path-grid {
  display: grid;
  gap: 18px;
}

.path-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.seller-card {
  background: var(--white);
}

.search-card {
  background: var(--sage);
}

.path-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--awz-blue-soft);
  color: var(--awz-blue);
  font-weight: 900;
}

.path-card ul {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: 0 0 4px;
  list-style: none;
}

.path-card li {
  position: relative;
  padding-left: 20px;
  color: var(--text);
}

.path-card li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sun);
}

.intro-block {
  background: var(--paper-warm) !important;
}

.intro-grid {
  display: grid;
  gap: 22px;
}

.intro-copy {
  max-width: 760px;
  font-size: 18px;
}

.process {
  background: var(--white) !important;
}

.process-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.process-list span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--awz-blue);
  color: var(--white);
  font-weight: 900;
}

.process-list p {
  margin-bottom: 0;
  color: var(--text);
}

.split-media {
  background: var(--sage) !important;
}

.split-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.media-card {
  margin: 0;
  border: 1px solid rgba(88, 118, 108, 0.25);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.split-copy {
  min-width: 0;
}

.note-box {
  padding: 18px;
  margin-top: 20px;
  border-left: 4px solid var(--sun);
  border-radius: var(--radius);
  background: var(--white);
}

.note-box strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 18px;
}

.note-box p {
  margin-bottom: 0;
}

.object-grid,
.document-grid,
.buyer-cards,
.price-points,
.discretion-steps {
  display: grid;
  gap: 14px;
}

.object-grid article,
.document-grid article,
.buyer-cards article,
.price-points article,
.discretion-steps article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.object-grid p,
.document-grid p,
.buyer-cards p {
  color: var(--text);
}

.object-grid a {
  color: var(--awz-blue);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.motives {
  background: var(--paper-warm) !important;
}

.motives-grid,
.price-grid,
.buyers-grid,
.discretion-grid,
.awz-grid,
.faq-grid,
.request-grid {
  display: grid;
  gap: 28px;
}

.motive-list {
  display: grid;
  gap: 12px;
}

.motive-list article {
  padding: 18px;
  border: 1px solid rgba(213, 155, 69, 0.24);
  border-radius: var(--radius);
  background: var(--white);
}

.motive-list span {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--awz-blue);
  font-weight: 900;
}

.motive-list p {
  margin-bottom: 0;
  color: var(--text);
}

.price-points article,
.discretion-steps article {
  display: grid;
  gap: 6px;
}

.price-points strong,
.discretion-steps strong {
  color: var(--awz-blue);
  font-size: 18px;
}

.price-points span,
.discretion-steps span {
  color: var(--text);
}

.buyers {
  background: var(--awz-blue-soft) !important;
}

.buyer-panel {
  padding: 24px;
  border: 1px solid #cddfec;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.buyer-cards article {
  background: rgba(255, 255, 255, 0.86);
}

.documents {
  background: var(--white) !important;
}

.document-grid span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--sun);
  font-weight: 900;
}

.document-grid strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 18px;
}

.discretion {
  background: var(--sage) !important;
}

.regions {
  background: var(--white) !important;
}

.region-layout {
  display: grid;
  gap: 20px;
}

.map-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.map-shape {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.map-shape span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px;
  border: 1px solid #cddfec;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--awz-blue);
  font-weight: 850;
}

.map-card p {
  margin-bottom: 0;
  color: var(--text);
}

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

.region-list a {
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 760;
}

.region-list a:hover,
.region-list a:focus-visible {
  border-color: var(--awz-blue-2);
  background: var(--awz-blue-soft);
  color: var(--awz-blue);
}

.platform-map {
  background: var(--paper) !important;
}

.topic-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.topic-filter button {
  min-height: 42px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 780;
}

.topic-filter button.is-active,
.topic-filter button:hover,
.topic-filter button:focus-visible {
  border-color: var(--awz-blue);
  background: var(--awz-blue);
  color: var(--white);
}

.topic-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.topic-grid a {
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 760;
}

.topic-grid a:hover,
.topic-grid a:focus-visible {
  border-color: var(--sun);
  background: var(--sun-soft);
}

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

.contact-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.contact-card img {
  width: 82px;
  height: 82px;
  border: 4px solid var(--white);
  border-radius: 50%;
  object-fit: cover;
}

.contact-card div {
  display: grid;
  gap: 3px;
}

.contact-card strong {
  color: var(--ink);
  font-size: 18px;
}

.contact-card span,
.contact-card a {
  color: var(--text);
}

.contact-card a {
  font-weight: 780;
}

.faq-section {
  background: var(--paper-warm) !important;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  position: relative;
  width: 100%;
  min-height: 58px;
  padding: 16px 52px 16px 18px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 850;
  text-align: left;
}

.faq-item button::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--awz-blue);
  line-height: 25px;
  text-align: center;
  transform: translateY(-50%);
}

.faq-item button[aria-expanded="true"]::after {
  content: "-";
}

.faq-item div {
  padding: 0 18px 18px;
}

.faq-item p {
  margin-bottom: 0;
  color: var(--text);
}

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

.request-summary {
  margin-top: 22px;
  padding: 18px;
  border-left: 4px solid var(--awz-blue);
  border-radius: var(--radius);
  background: var(--awz-blue-soft);
}

.request-summary strong {
  display: block;
  margin-bottom: 6px;
  color: var(--awz-blue);
}

.request-summary p {
  margin-bottom: 0;
}

.request-form {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 840;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 10px 12px;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--awz-blue-2);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(13, 90, 156, 0.14);
}

.field-error {
  min-height: 18px;
  margin: 0;
  color: var(--error);
  font-size: 13px;
  font-weight: 720;
}

.field-hint {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.checkbox-field label {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 14px;
  line-height: 1.45;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  padding: 0;
  margin-top: 2px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-button {
  width: 100%;
  margin-top: 16px;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--success);
  font-weight: 780;
}

.form-status.is-error {
  color: var(--error);
}

.form-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.form-note a {
  color: var(--awz-blue);
  font-weight: 780;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.final-cta {
  padding: 52px 0;
  background: var(--awz-blue);
  color: var(--white);
}

.final-grid {
  display: grid;
  gap: 24px;
  align-items: center;
}

.final-cta .eyebrow,
.final-cta h2,
.final-cta p {
  color: var(--white);
}

.final-cta p {
  margin-bottom: 0;
  opacity: 0.9;
}

.site-footer {
  padding: 46px 0 82px;
  background: #f0f5f7;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--awz-blue);
  font-size: 18px;
  font-weight: 900;
}

.site-footer h2 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 16px;
}

.site-footer a {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--awz-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mobile-sticky {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 260;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: var(--radius);
  background: var(--awz-blue);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(6, 63, 122, 0.24);
}

body.show-sticky .mobile-sticky {
  display: flex;
}

@media (min-width: 560px) {
  .container {
    width: min(calc(100% - 56px), var(--container));
  }

  .strip-grid,
  .object-grid,
  .document-grid,
  .buyer-cards,
  .price-points,
  .discretion-steps,
  .topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .field.full {
    grid-column: 1 / -1;
  }
}

@media (min-width: 760px) {
  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 36px;
  }

  .hero {
    padding: 52px 0 56px;
  }

  .intro-grid,
  .split-grid,
  .motives-grid,
  .price-grid,
  .buyers-grid,
  .discretion-grid,
  .awz-grid,
  .faq-grid,
  .request-grid,
  .final-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

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

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .region-layout {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
  }

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

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

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

  .mobile-sticky {
    right: 20px;
    bottom: 20px;
    left: auto;
    width: auto;
    min-width: 190px;
    padding: 0 18px;
  }
}

@media (min-width: 1040px) {
  .site-header {
    padding: 0 28px;
  }

  .nav-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .main-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 78px;
    padding: 0 9px;
    border-radius: 0;
    font-size: 14px;
    white-space: nowrap;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible,
  .main-nav a.is-active {
    background: transparent;
    color: var(--awz-blue);
  }

  .nav-cta {
    min-height: 42px !important;
    padding: 0 14px !important;
    border-radius: var(--radius) !important;
    color: var(--white) !important;
  }

  .header-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--awz-blue);
    font-size: 14px;
    font-weight: 850;
  }

  .hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
  }

  .object-grid,
  .document-grid,
  .buyer-cards,
  .price-points,
  .discretion-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .strip-grid article {
    padding: 22px 18px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .strip-grid article:last-child {
    border-right: 0;
  }

  .process-list {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 10px;
  }

  .process-list li {
    grid-template-columns: 1fr;
    align-content: start;
  }

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

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

  .brand-mark {
    width: 50px;
  }

  .brand-copy strong {
    max-width: 210px;
    font-size: 15px;
  }

  h1 {
    font-size: 28px;
  }

  .headline-wide {
    display: none;
  }

  .headline-mobile {
    display: inline;
  }

  h2 {
    font-size: 27px;
  }

  .hero-actions,
  .final-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 54px 0;
  }

  .path-card,
  .request-form {
    padding: 18px;
  }

  .region-list,
  .map-shape {
    grid-template-columns: 1fr;
  }
}
