:root {
  --navy-950: #071b2f;
  --navy-900: #0b2743;
  --navy-800: #123a5d;
  --blue-700: #145f8c;
  --blue-100: #e9f4f8;
  --teal-600: #138883;
  --teal-500: #1aa69e;
  --teal-100: #dff4f1;
  --ink: #142d43;
  --slate: #557083;
  --line: #d9e5eb;
  --mist: #f4f8fa;
  --white: #ffffff;
  --shadow: 0 26px 70px rgba(7, 27, 47, 0.14);
  --radius: 16px;
  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #f2b84b;
  outline-offset: 4px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  background: var(--navy-950);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}

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

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(217, 229, 235, 0.82);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-900);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.brand strong {
  font-weight: 800;
}

.brand-mark {
  position: relative;
  width: 31px;
  height: 31px;
  display: inline-block;
  border-radius: 8px;
  background: var(--navy-900);
  overflow: hidden;
}

.brand-mark span {
  position: absolute;
  left: 7px;
  right: 7px;
  height: 3px;
  border-radius: 4px;
  background: var(--white);
}

.brand-mark span:nth-child(1) { top: 7px; right: 12px; }
.brand-mark span:nth-child(2) { top: 14px; }
.brand-mark span:nth-child(3) { top: 21px; left: 12px; background: var(--teal-500); }

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  position: relative;
  color: #355468;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav-list a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--teal-600);
  transition: transform 180ms ease;
}

.nav-list a:hover::after,
.nav-list a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 49.8%, rgba(20, 95, 140, 0.035) 50%),
    radial-gradient(circle at 92% 8%, rgba(26, 166, 158, 0.11), transparent 25%),
    linear-gradient(180deg, #fbfdfe 0%, #f5fafb 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background-image: linear-gradient(rgba(18, 58, 93, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(18, 58, 93, 0.045) 1px, transparent 1px);
  background-size: 36px 36px;
  content: "";
  mask-image: linear-gradient(to right, transparent 0%, black 55%, black 100%);
}

.hero-grid {
  position: relative;
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 72px;
  padding-block: 86px 96px;
}

.eyebrow,
.section-number {
  margin: 0 0 20px;
  color: var(--teal-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

.eyebrow::before {
  width: 24px;
  height: 2px;
  background: var(--teal-500);
  content: "";
}

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

h1,
h2,
h3 {
  color: var(--navy-900);
  line-height: 1.12;
}

h1 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: clamp(42px, 5vw, 66px);
  letter-spacing: -0.047em;
}

h1 span {
  color: var(--blue-700);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 20px;
  letter-spacing: -0.025em;
}

.hero-intro {
  max-width: 650px;
  margin-bottom: 34px;
  color: #49687b;
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--navy-900);
  box-shadow: 0 12px 24px rgba(11, 39, 67, 0.18);
  color: var(--white);
}

.button-primary:hover {
  background: var(--blue-700);
  box-shadow: 0 15px 28px rgba(11, 39, 67, 0.23);
}

.text-link {
  color: var(--blue-700);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero-note {
  margin: 28px 0 0;
  color: #607b8c;
  font-size: 13px;
  font-weight: 650;
}

.hero-note span {
  margin-right: 7px;
  color: var(--teal-600);
}

.catalog-visual {
  position: relative;
  height: 475px;
}

.visual-glow {
  position: absolute;
  top: 12%;
  left: 13%;
  width: 76%;
  height: 78%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 166, 158, 0.2), rgba(20, 95, 140, 0.04) 60%, transparent 72%);
  filter: blur(3px);
}

.resource-card,
.opportunity-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  background: var(--white);
  box-shadow: var(--shadow);
}

.resource-card {
  width: 220px;
  height: 286px;
  padding: 25px;
  border: 1px solid rgba(217, 229, 235, 0.95);
  border-radius: 10px;
}

.card-one {
  top: 110px;
  left: 4px;
  z-index: 3;
  transform: rotate(-7deg);
}

.card-two {
  top: 49px;
  left: 92px;
  z-index: 2;
  transform: rotate(4deg);
  opacity: 0.9;
}

.card-label,
.opportunity-kicker {
  color: var(--teal-600);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.card-title {
  width: 84%;
  height: 12px;
  margin-top: 28px;
  border-radius: 3px;
  background: var(--navy-800);
  box-shadow: 0 19px 0 rgba(18, 58, 93, 0.92);
}

.card-line {
  width: 100%;
  height: 5px;
  margin-top: 54px;
  border-radius: 3px;
  background: var(--line);
  box-shadow: 0 14px 0 var(--line), 0 28px 0 var(--line);
}

.card-line.short { width: 53%; }
.card-line.medium { width: 72%; margin-top: 41px; }

.card-tag {
  width: max-content;
  margin-top: auto;
  padding: 4px 9px;
  border-radius: 12px;
  background: var(--teal-100);
  color: var(--teal-600);
  font-size: 9px;
  font-weight: 900;
}

.opportunity-card {
  right: 0;
  bottom: 32px;
  z-index: 5;
  width: 215px;
  height: 230px;
  padding: 25px;
  border-radius: 12px;
  background: linear-gradient(150deg, var(--navy-800), var(--navy-950));
  color: var(--white);
}

.opportunity-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: #72d3cd;
  font-size: 20px;
}

.opportunity-kicker { color: #72d3cd; }

.opportunity-card strong {
  margin-top: 34px;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.opportunity-rule {
  height: 1px;
  margin: 19px 0 15px;
  background: rgba(255, 255, 255, 0.17);
}

.opportunity-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #dbe8ed;
  font-size: 10px;
  font-weight: 700;
}

.opportunity-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #67d4cc;
  box-shadow: 0 0 0 4px rgba(103, 212, 204, 0.14);
}

.connector-line {
  position: absolute;
  right: 165px;
  bottom: 145px;
  z-index: 4;
  width: 100px;
  height: 50px;
  overflow: hidden;
}

.connector-line::before {
  position: absolute;
  inset: 0;
  border: 2px dashed rgba(19, 136, 131, 0.48);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 100% 0 0;
  content: "";
}

.connector-line span {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-500);
}

.section {
  padding-block: 112px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 96px;
  align-items: start;
}

.intro-content {
  padding-top: 38px;
  border-top: 1px solid var(--line);
  color: var(--slate);
}

.lead {
  color: #2d4c61;
  font-size: 19px;
  line-height: 1.75;
}

.process {
  border-block: 1px solid #e1ebef;
  background: var(--mist);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
  align-items: end;
  margin-bottom: 64px;
}

.section-heading h2 {
  max-width: 670px;
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 5px;
  color: var(--slate);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-step {
  position: relative;
  min-height: 330px;
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-right: 0;
  background: var(--white);
}

.process-step:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.process-step:last-child { border-right: 1px solid var(--line); border-radius: 0 var(--radius) var(--radius) 0; }

.step-number {
  position: absolute;
  top: 23px;
  right: 23px;
  color: #9bb0bc;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.step-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 57px;
  border-radius: 12px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 2px;
}

.process-step:nth-child(even) .step-icon {
  background: var(--teal-100);
  color: var(--teal-600);
}

.process-step h3 {
  margin-bottom: 15px;
}

.process-step p {
  margin: 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.65;
}

.principles {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  color: var(--white);
}

.principles::after {
  position: absolute;
  top: -240px;
  right: -140px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(103, 212, 204, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(103, 212, 204, 0.035), 0 0 0 140px rgba(103, 212, 204, 0.02);
  content: "";
}

.principles-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 110px;
  align-items: center;
}

.section-number.light {
  color: #72d3cd;
}

.principles h2,
.contact h2 {
  color: var(--white);
}

.principles-copy > p:last-child {
  max-width: 400px;
  color: #b9ccd7;
}

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

.principles-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 17px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 17px;
  font-weight: 650;
}

.principles-list li:first-child { border-top: 1px solid rgba(255, 255, 255, 0.13); }

.principles-list li > span:first-child {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  margin-top: 2px;
  border: 1px solid rgba(103, 212, 204, 0.35);
  border-radius: 50%;
  color: #72d3cd;
  font-size: 12px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 118px;
  align-items: center;
}

.about-graphic {
  position: relative;
  aspect-ratio: 1 / 0.94;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 44px;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(145deg, #e8f5f5 0%, #edf5f9 100%);
}

.about-graphic::before,
.about-graphic::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.about-graphic::before {
  top: 16%;
  right: -18%;
  width: 74%;
  aspect-ratio: 1;
  border: 30px solid rgba(20, 95, 140, 0.08);
}

.about-graphic::after {
  right: 16%;
  bottom: 15%;
  width: 29%;
  aspect-ratio: 1;
  background: var(--teal-500);
  box-shadow: -65px 38px 0 -20px var(--navy-800);
}

.about-monogram {
  position: relative;
  z-index: 1;
  color: var(--navy-900);
  font-size: clamp(64px, 8vw, 102px);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.86;
}

.about-caption {
  position: relative;
  z-index: 1;
  color: var(--navy-800);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.about-copy > p:not(.section-number) {
  color: var(--slate);
}

.about-copy > p.lead {
  color: #2d4c61;
}

.faq {
  background: var(--mist);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 104px;
}

.faq-heading-wrap {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-heading-wrap > p:not(.section-number) {
  margin-bottom: 30px;
  color: var(--slate);
}

.faq-list details {
  border-bottom: 1px solid #cfdee5;
}

.faq-list details:first-child {
  border-top: 1px solid #cfdee5;
}

.faq-list summary {
  position: relative;
  padding: 26px 46px 26px 0;
  color: var(--navy-900);
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.4;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 14px;
  height: 2px;
  background: var(--teal-600);
  content: "";
}

.faq-list summary span::after {
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.faq-list details[open] summary span::after {
  transform: rotate(0deg);
}

.faq-list details p {
  max-width: 680px;
  margin: -5px 42px 27px 0;
  color: var(--slate);
}

.contact {
  padding-block: 80px;
}

.contact-panel {
  min-height: 300px;
  display: grid;
  grid-template-columns: 1fr 0.75fr auto;
  gap: 64px;
  align-items: center;
  padding: 60px 66px;
  border-radius: 20px;
  background: linear-gradient(125deg, var(--navy-900), #0e3f5d);
  box-shadow: 0 24px 65px rgba(11, 39, 67, 0.18);
  color: var(--white);
}

.contact h2 {
  margin-bottom: 15px;
}

.contact-panel > div:first-child > p:last-child {
  margin-bottom: 0;
  color: #c4d5de;
}

.contact-details {
  display: flex;
  flex-direction: column;
  padding-left: 35px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-details span {
  font-size: 13px;
  font-weight: 800;
}

.contact-details a {
  color: #83d8d2;
  font-size: 14px;
  text-underline-offset: 3px;
}

.button-light {
  background: var(--white);
  color: var(--navy-900);
  white-space: nowrap;
}

.button-light:hover {
  background: var(--teal-100);
}

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

.footer-inner {
  min-height: 130px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}

.footer-brand {
  font-size: 15px;
}

.footer-brand .brand-mark {
  width: 27px;
  height: 27px;
}

.footer-brand .brand-mark span:nth-child(1) { top: 6px; }
.footer-brand .brand-mark span:nth-child(2) { top: 12px; }
.footer-brand .brand-mark span:nth-child(3) { top: 18px; }

.footer-inner p,
.footer-links {
  margin: 0;
  color: #6a8291;
  font-size: 12px;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 25px;
}

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

/* Interior pages */
.interior-main {
  min-height: calc(100vh - 213px);
  background: linear-gradient(180deg, #f7fbfc 0, #fff 420px);
}

.interior-hero {
  padding: 92px 0 55px;
  border-bottom: 1px solid var(--line);
}

.interior-hero h1 {
  max-width: 780px;
  margin-bottom: 18px;
}

.interior-hero p:last-child {
  max-width: 700px;
  margin: 0;
  color: var(--slate);
  font-size: 18px;
}

.legal-content {
  max-width: 780px;
  padding-block: 64px 100px;
}

.legal-content h2 {
  margin-top: 46px;
  margin-bottom: 14px;
  font-size: 25px;
  letter-spacing: -0.025em;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p {
  color: var(--slate);
}

.legal-meta {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.error-wrap {
  min-height: calc(100vh - 213px);
  display: grid;
  place-items: center;
  padding-block: 70px;
}

.error-content {
  max-width: 650px;
  text-align: center;
}

.error-code {
  margin-bottom: 16px;
  color: var(--teal-600);
  font-size: clamp(88px, 15vw, 160px);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.8;
  opacity: 0.2;
}

.error-content h1 {
  margin-bottom: 18px;
}

.error-content p {
  margin-bottom: 32px;
  color: var(--slate);
  font-size: 18px;
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; min-height: auto; gap: 28px; padding-block: 76px 65px; }
  .hero-copy { max-width: 760px; }
  .catalog-visual { width: min(100%, 570px); height: 410px; margin: 0 auto; }
  .resource-card { width: 205px; height: 265px; }
  .card-one { left: 12%; }
  .card-two { left: 30%; }
  .opportunity-card { right: 9%; }
  .connector-line { right: 40%; }
  .intro-grid, .about-grid { gap: 60px; }
  .section-heading { gap: 55px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }
  .process-step { border: 1px solid var(--line); border-radius: 0 !important; }
  .process-step:first-child { border-radius: var(--radius) 0 0 0 !important; }
  .process-step:nth-child(2) { border-radius: 0 var(--radius) 0 0 !important; }
  .process-step:nth-child(3) { border-radius: 0 0 0 var(--radius) !important; }
  .process-step:last-child { border-radius: 0 0 var(--radius) 0 !important; }
  .principles-grid { gap: 60px; }
  .faq-grid { gap: 60px; }
  .contact-panel { grid-template-columns: 1fr 1fr; gap: 38px; }
  .contact-panel .button { justify-self: start; }
  .footer-inner { grid-template-columns: 1fr 1fr; padding-block: 30px; }
  .footer-inner p { order: 3; grid-column: 1 / -1; text-align: center; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 16px; }
  .container { width: min(calc(100% - 36px), var(--container)); }
  .site-header { position: relative; }
  .header-inner { min-height: auto; flex-direction: column; align-items: flex-start; gap: 8px; padding-block: 15px 8px; }
  .nav-list { width: calc(100vw - 36px); gap: 0; justify-content: space-between; }
  .nav-list a { min-height: 44px; display: inline-flex; align-items: center; font-size: 12px; }
  .nav-list a::after { bottom: 2px; }
  .hero-grid { padding-block: 62px 52px; }
  h1 { font-size: clamp(39px, 12vw, 55px); }
  h2 { font-size: clamp(32px, 9vw, 41px); }
  .hero-intro { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .button { width: 100%; }
  .catalog-visual { height: 345px; margin-top: 12px; }
  .resource-card { width: 162px; height: 220px; padding: 19px; }
  .card-one { top: 87px; left: 4%; }
  .card-two { top: 28px; left: 24%; }
  .card-title { margin-top: 20px; }
  .card-line { margin-top: 50px; }
  .card-line.medium { margin-top: 36px; }
  .opportunity-card { right: 2%; bottom: 18px; width: 167px; height: 186px; padding: 18px; }
  .opportunity-icon { width: 30px; height: 30px; top: 15px; right: 15px; }
  .opportunity-card strong { margin-top: 28px; font-size: 19px; }
  .opportunity-rule { margin: 14px 0 11px; }
  .connector-line { display: none; }
  .section { padding-block: 78px; }
  .intro-grid, .section-heading, .principles-grid, .about-grid, .faq-grid { grid-template-columns: 1fr; gap: 36px; }
  .intro-content { padding-top: 30px; }
  .section-heading { margin-bottom: 42px; }
  .process-grid { grid-template-columns: 1fr; gap: 0; }
  .process-step { min-height: auto; padding: 28px; border-bottom: 0; border-radius: 0 !important; }
  .process-step:first-child { border-radius: var(--radius) var(--radius) 0 0 !important; }
  .process-step:last-child { border-bottom: 1px solid var(--line); border-radius: 0 0 var(--radius) var(--radius) !important; }
  .step-icon { margin-bottom: 34px; }
  .principles-list li { font-size: 15px; }
  .about-grid { gap: 52px; }
  .about-graphic { order: 2; max-width: 500px; padding: 34px; }
  .faq-heading-wrap { position: static; }
  .faq-list summary { font-size: 16px; }
  .contact { padding-block: 54px; }
  .contact-panel { grid-template-columns: 1fr; gap: 32px; padding: 45px 28px; }
  .contact-details { padding: 23px 0 0; border-top: 1px solid rgba(255, 255, 255, 0.2); border-left: 0; }
  .footer-inner { grid-template-columns: 1fr; justify-items: center; gap: 25px; }
  .footer-inner p { order: initial; grid-column: auto; }
  .footer-links { flex-direction: column; align-items: center; gap: 8px; }
  .interior-hero { padding-block: 68px 42px; }
  .legal-content { padding-block: 50px 80px; }
}

@media (max-width: 390px) {
  .brand { font-size: 16px; }
  .nav-list a { font-size: 11px; }
  .catalog-visual { transform: scale(0.94); transform-origin: center top; margin-bottom: -20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
