:root {
  --primary-blue: #026265;
  --deep-navy: #07494B;
  --dark-navy: #041314;
  --light-blue: #1C9A9D;
  --brand-gold: #D9A514;
  --brand-gold-light: #F0C43C;
  --white: #FFFFFF;
  --main-bg: #F6F7F8;
  --soft-gray: #F3F4F6;
  --light-gray: #F3F4F6;
  --text-dark: #1E293B;
  --border-gray: #E5E7EB;
  --muted: #64748B;
  --max: 1160px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-dark);
  background: var(--main-bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--dark-navy);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

a {
  color: inherit;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid var(--border-gray);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  width: 190px;
  min-width: 190px;
  text-decoration: none;
  line-height: 0;
  flex-shrink: 0;
}

.brand img {
  width: 190px;
  height: 52px;
  max-height: 52px;
  object-fit: contain;
  object-position: left center;
}

.navlinks {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: clamp(16px, 2.2vw, 30px);
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 800;
}

.navlinks a {
  position: relative;
  padding: 10px 0;
  text-decoration: none;
  white-space: nowrap;
  transition: color .18s ease;
}

.navlinks a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--primary-blue);
  transform: translateX(-50%);
  transition: width .18s ease;
}

.navlinks a:hover,
.navlinks a:focus-visible,
.navlinks a.active {
  color: var(--primary-blue);
}

.navlinks a:hover::after,
.navlinks a:focus-visible::after,
.navlinks a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

.mobile-menu {
  position: relative;
  display: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.mobile-menu summary {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span,
.mobile-menu summary::before,
.mobile-menu summary::after {
  content: "";
  position: absolute;
  left: 11px;
  width: 22px;
  height: 2px;
  background: var(--primary-blue);
  transition: transform .18s ease, top .18s ease, opacity .18s ease;
}

.mobile-menu summary::before {
  top: 14px;
}

.mobile-menu summary span {
  top: 21px;
}

.mobile-menu summary::after {
  top: 28px;
}

.mobile-menu[open] summary::before {
  top: 21px;
  transform: rotate(45deg);
}

.mobile-menu[open] summary span {
  opacity: 0;
}

.mobile-menu[open] summary::after {
  top: 21px;
  transform: rotate(-45deg);
}

.mobile-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 40;
  width: min(280px, calc(100vw - 32px));
  padding: 8px;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 20px 48px rgba(15, 23, 42, .16);
}

.mobile-panel a {
  display: block;
  padding: 12px;
  border-radius: 6px;
  color: var(--text-dark);
  font-weight: 800;
  text-decoration: none;
}

.mobile-panel a:hover,
.mobile-panel a:focus-visible {
  background: var(--soft-gray);
  color: var(--primary-blue);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  padding: 2px;
  border: 1px solid var(--border-gray);
  border-radius: 999px;
  background: var(--light-gray);
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  min-height: 24px;
  padding: 4px 7px;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-size: 10px;
  font-weight: 900;
}

.lang-switch a.active {
  background: var(--primary-blue);
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--primary-blue);
  border-radius: var(--radius);
  background: var(--primary-blue);
  color: var(--white);
  text-decoration: none;
  font-weight: 850;
  line-height: 1.15;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.btn:hover {
  background: var(--deep-navy);
  border-color: var(--deep-navy);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(2, 98, 101, .18);
}

.btn.alt {
  background: var(--white);
  color: var(--primary-blue);
  border-color: rgba(43, 196, 193, .42);
  box-shadow: none;
}

.btn.alt:hover {
  background: var(--light-gray);
  border-color: var(--primary-blue);
  color: var(--deep-navy);
}

.header-cta {
  min-height: 34px;
  padding: 8px 12px;
  font-size: 13px;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 64px 0 54px;
  color: var(--white);
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--deep-navy) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  background: linear-gradient(180deg, rgba(246, 247, 248, 0), var(--main-bg));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr);
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 8px 10px;
  border: 1px solid rgba(43, 196, 193, .42);
  border-radius: 999px;
  background: rgba(255, 255, 255, .09);
  color: #CFE0FF;
  font-size: 13px;
  font-weight: 850;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--light-blue);
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  margin: 18px 0 16px;
  color: var(--white);
  font-size: clamp(42px, 7vw, 76px);
  line-height: .98;
}

h2 {
  margin: 0;
  color: var(--text-dark);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
}

h3 {
  margin: 0 0 10px;
  color: var(--text-dark);
  font-size: 20px;
}

p {
  line-height: 1.6;
}

.lead {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: 19px;
}

.hero-note {
  max-width: 650px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 800;
}

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

.hero-card,
.quote {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(12px);
}

.scan-row,
.dispatch-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 14px;
  align-items: center;
  padding: 15px;
  border-radius: var(--radius);
  background: rgba(2, 8, 23, .62);
  border: 1px solid rgba(255, 255, 255, .14);
}

.scan-row .barcode {
  display: none;
}

.scan-row b,
.scan-row span,
.dispatch-row b,
.dispatch-row span {
  display: block;
}

.scan-row span,
.dispatch-row span {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.tag,
.dispatch-row em {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--white);
  background: var(--primary-blue);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

section {
  padding: 74px 0;
  scroll-margin-top: 94px;
  background: var(--main-bg);
}

section:nth-of-type(even):not(.hero):not(.page-hero) {
  background: var(--main-bg);
}

section:nth-of-type(odd):not(.hero):not(.page-hero) {
  background: var(--soft-gray);
}

section:nth-of-type(3n):not(.hero):not(.page-hero) {
  background: var(--white);
}

.page-hero {
  padding: 78px 0 56px;
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--deep-navy) 100%);
}

.page-hero h1 {
  color: var(--white);
}

.page-hero .lead {
  color: rgba(255, 255, 255, .84);
}

.band {
  background: var(--soft-gray);
  border-top: 1px solid var(--border-gray);
  border-bottom: 1px solid var(--border-gray);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
}

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

.cards.four {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  position: relative;
  padding: 26px;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(15, 23, 42, .045);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: transparent;
  transition: background .18s ease;
}

.card:hover {
  border-color: rgba(2, 98, 101, .24);
  box-shadow: 0 18px 42px rgba(15, 23, 42, .10);
  transform: translateY(-2px);
}

.card:hover::before {
  background: var(--primary-blue);
}

.card p,
.card li,
.quote p {
  margin: 0;
  color: var(--muted);
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 7px;
  color: var(--white);
  background: linear-gradient(135deg, var(--deep-navy), var(--primary-blue));
  font-weight: 900;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.trust-item,
.areas span {
  padding: 16px;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  background: var(--white);
}

.trust-item b,
.trust-item span {
  display: block;
}

.trust-item b {
  color: var(--text-dark);
}

.trust-item span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

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

.step {
  padding: 20px;
  border-top: 4px solid var(--primary-blue);
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--white);
  border-left: 1px solid var(--border-gray);
  border-right: 1px solid var(--border-gray);
  border-bottom: 1px solid var(--border-gray);
}

.step p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 18px;
  align-items: stretch;
}

.section-image {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
}

.quote {
  border-color: var(--border-gray);
  background: var(--white);
  backdrop-filter: none;
}

.quote strong {
  display: block;
  color: var(--text-dark);
  font-size: 22px;
  line-height: 1.2;
}

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

.feature-row {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  background: var(--white);
}

.feature-row b {
  color: var(--text-dark);
}

.feature-row span {
  color: var(--muted);
  line-height: 1.5;
}

.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.areas span {
  font-weight: 850;
}

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

details {
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  background: var(--white);
  padding: 18px;
}

summary {
  cursor: pointer;
  color: var(--text-dark);
  font-weight: 850;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

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

.form label {
  color: var(--text-dark);
  font-weight: 850;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--text-dark);
  background: var(--white);
  font: inherit;
}

.form textarea {
  min-height: 150px;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.content-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 34px;
}

.content-lead {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.about-values {
  margin-top: 20px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--primary-blue);
  font-weight: 850;
  text-decoration: none;
}

.identity-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 30px;
  border: 1px solid var(--border-gray);
  border-left: 4px solid var(--primary-blue);
  border-radius: var(--radius);
  background: var(--white);
}

.identity-panel strong {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-size: 20px;
}

.identity-panel p {
  margin: 0;
  color: var(--muted);
}

.status-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--primary-blue);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 22px;
  align-items: start;
}

.contact-form,
.contact-direct,
.legal-card {
  padding: 28px;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(15, 23, 42, .055);
}

.form-heading strong {
  display: block;
  color: var(--text-dark);
  font-size: 24px;
}

.form-heading p,
.form-privacy {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

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

.contact-form button[disabled] {
  cursor: wait;
  opacity: .7;
}

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

.form-status[data-state="success"] {
  color: #08783d;
}

.form-status[data-state="error"] {
  color: #b42318;
}

.contact-kicker {
  color: var(--primary-blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-direct h2 {
  margin-top: 10px;
}

.contact-direct > p {
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 0;
  margin: 28px 0;
}

.contact-list div {
  padding: 16px 0;
  border-top: 1px solid var(--border-gray);
}

.contact-list dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0;
  color: var(--text-dark);
  font-weight: 750;
}

.response-note {
  padding: 14px;
  border-radius: var(--radius);
  background: var(--soft-gray);
  color: var(--text-dark) !important;
  font-size: 13px;
  font-weight: 750;
}

.legal-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.legal-card h2,
.legal-section h2 {
  margin-bottom: 16px;
  font-size: 23px;
}

.legal-card p,
.legal-section p {
  color: var(--muted);
}

.legal-card-wide {
  grid-column: 1 / -1;
}

.legal-card-wide h2:not(:first-child) {
  margin-top: 30px;
}

.legal-document {
  padding: 74px 0;
  background: var(--main-bg);
}

.legal-document-inner {
  max-width: 860px;
}

.legal-section {
  padding: 0 0 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border-gray);
  background: transparent !important;
}

.legal-section:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.map-placeholder {
  min-height: 280px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  background: var(--light-gray);
  color: var(--muted);
  font-weight: 850;
}

footer {
  padding: 38px 0;
  color: rgba(255, 255, 255, .82);
  background: var(--dark-navy);
}

.footer-release {
  padding: 54px 0 22px;
}

.footer-release-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, .75fr));
  gap: 42px;
}

.footer-release-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-release-grid strong {
  margin-bottom: 4px;
}

.footer-release-grid span,
.footer-release-grid small {
  color: rgba(255, 255, 255, .68);
  line-height: 1.55;
}

.footer-brand img {
  width: 180px;
  height: auto;
  margin-bottom: 8px;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
}

:focus-visible {
  outline: 3px solid rgba(2, 98, 101, .42);
  outline-offset: 3px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

footer strong,
footer span {
  display: block;
}

footer strong {
  color: var(--white);
}

footer a {
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
}

footer a:hover {
  color: var(--light-blue);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(43, 196, 193, .34);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--primary-blue);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .08);
  backdrop-filter: blur(12px);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(2, 98, 101, .72);
  background: rgba(2, 98, 101, .10);
  color: var(--deep-navy);
  box-shadow: 0 14px 30px rgba(2, 98, 101, .14);
}

.social-links a:nth-child(1):hover,
.social-links a:nth-child(1):focus-visible {
  color: #25D366;
  border-color: #25D366;
  background: rgba(37, 211, 102, .12);
}

.social-links a:nth-child(2):hover,
.social-links a:nth-child(2):focus-visible {
  color: #0A66C2;
  border-color: #0A66C2;
  background: rgba(10, 102, 194, .12);
}

.social-links a:nth-child(3):hover,
.social-links a:nth-child(3):focus-visible {
  color: #E4405F;
  border-color: #E4405F;
  background: rgba(228, 64, 95, .12);
}

.social-links a:nth-child(4):hover,
.social-links a:nth-child(4):focus-visible {
  color: #1877F2;
  border-color: #1877F2;
  background: rgba(24, 119, 242, .12);
}

.social-links a:nth-child(5):hover,
.social-links a:nth-child(5):focus-visible {
  color: #000000;
  border-color: #000000;
  background: rgba(0, 0, 0, .08);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}

.social-fixed {
  position: fixed;
  right: 22px;
  top: 50%;
  z-index: 18;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.social-fixed a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .78);
  color: var(--primary-blue);
  border-color: rgba(43, 196, 193, .36);
}

.social-fixed a:hover,
.social-fixed a:focus-visible {
  background: rgba(255, 255, 255, .94);
  color: var(--deep-navy);
  border-color: var(--primary-blue);
}

footer .social-links a {
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  border-color: rgba(43, 196, 193, .44);
  box-shadow: none;
}

footer .social-links a:hover,
footer .social-links a:focus-visible {
  background: rgba(43, 196, 193, .16);
  color: var(--light-blue);
  border-color: var(--light-blue);
}

footer .social-links a:nth-child(1):hover,
footer .social-links a:nth-child(1):focus-visible {
  color: #25D366;
  border-color: #25D366;
}

footer .social-links a:nth-child(2):hover,
footer .social-links a:nth-child(2):focus-visible {
  color: #0A66C2;
  border-color: #0A66C2;
}

footer .social-links a:nth-child(3):hover,
footer .social-links a:nth-child(3):focus-visible {
  color: #E4405F;
  border-color: #E4405F;
}

footer .social-links a:nth-child(4):hover,
footer .social-links a:nth-child(4):focus-visible {
  color: #1877F2;
  border-color: #1877F2;
}

footer .social-links a:nth-child(5):hover,
footer .social-links a:nth-child(5):focus-visible {
  color: #FFFFFF;
  border-color: #FFFFFF;
}

@media (max-width: 980px) {
  .nav {
    min-height: 58px;
    align-items: center;
    gap: 12px;
  }

  .navlinks {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .header-actions {
    align-items: center;
    flex-direction: row;
    margin-left: auto;
  }

  .brand {
    width: 160px;
    min-width: 160px;
  }

  .brand img {
    width: 160px;
    height: 44px;
    max-height: 44px;
  }

  .hero,
  .page-hero {
    min-height: 0;
  }

  .hero-grid,
  .cards,
  .cards.four,
  .trust-strip,
  .steps,
  .split,
  .pricing,
  .faq-grid,
  .content-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .legal-card-wide {
    grid-column: 1 / -1;
  }

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

@media (max-width: 560px) {
  .wrap {
    width: min(var(--max), calc(100% - 32px));
  }

  .nav {
    min-height: 56px;
    gap: 8px;
  }

  .brand {
    width: 142px;
    min-width: 142px;
  }

  .brand img {
    width: 142px;
    height: 40px;
    max-height: 40px;
  }

  .header-cta {
    display: none;
  }

  .form-grid-release,
  .legal-layout,
  .footer-release-grid {
    grid-template-columns: 1fr;
  }

  .identity-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-form,
  .contact-direct,
  .legal-card {
    padding: 22px;
  }

  .legal-card-wide {
    grid-column: auto;
  }

  .social-fixed {
    right: 16px;
    top: auto;
    bottom: 18px;
    display: flex;
    flex-direction: column-reverse;
    gap: 9px;
    transform: none;
    z-index: 24;
  }

  .social-fixed a {
    width: 46px;
    height: 46px;
  }

  h1 {
    font-size: 40px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
