:root {
  --bg-main: #f4f7ff;
  --bg-accent: #e8efff;
  --ink: #132033;
  --ink-soft: #58667a;
  --brand: #0d2a50;
  --brand-strong: #102b66;
  --highlight: #3f67ff;
  --gold: #ffbf47;
  --card: #ffffff;
  --line: #dce3f3;
  --radius: 16px;
  --shadow: 0 18px 45px rgba(15, 35, 70, 0.11);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Inter, Roboto, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, #dce7ff 0%, transparent 26%),
    radial-gradient(circle at 85% 0%, #e5f3ff 0%, transparent 30%),
    var(--bg-main);
  line-height: 1.7;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(13, 42, 80, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 42, 80, 0.035) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 95%);
  z-index: -1;
}

a {
  color: var(--highlight);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1150px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  background: linear-gradient(90deg, rgba(13, 42, 80, 0.95), rgba(13, 42, 80, 0.88));
  color: #fff;
}

.top-strip {
  background: #06172d;
  color: #b8c7df;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.top-strip-inner {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  flex-wrap: wrap;
  padding: 0.45rem 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 0;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 10px;
  width: 42px;
  height: 34px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}

.menu-toggle-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle-icon span {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open .menu-toggle-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open .menu-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open .menu-toggle-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.brand h1 {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: 0.45px;
}

.brand-top {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
}

.brand-logo img {
  width: 165px;
  height: auto;
  max-height: 54px;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 8px;
  padding: 0;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.brand p {
  margin: 0.1rem 0 0;
  font-size: 0.8rem;
  opacity: 0.86;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.38rem;
  overflow-x: auto;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.nav-list li {
  flex: 0 0 auto;
}

.nav-list a {
  display: inline-block;
  color: #fff;
  padding: 0.36rem 0.62rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-list a:hover,
.nav-list a.active {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  text-decoration: none;
}

.hero {
  padding: 4.3rem 0 3.3rem;
  background: linear-gradient(135deg, #112d63, #0c2342 55%, #0d2a50);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-banner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-banner::before,
.hero-banner::after {
  display: none;
}

.hero-banner-content {
  max-width: 760px;
  padding: 2rem 0;
  position: relative;
  z-index: 2;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.hero-chips span,
.story-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.hero-chips span {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 1.2rem;
}

.hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  right: -170px;
  top: -220px;
}

.hero::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 191, 71, 0.28) 0%, transparent 72%);
  left: -110px;
  bottom: -120px;
}

.hero h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.2;
  max-width: 860px;
  text-wrap: balance;
}

.hero p {
  margin: 0 0 1.15rem;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-visual {
  width: 100%;
  max-width: 560px;
  justify-self: end;
  border-radius: 24px;
  filter: drop-shadow(0 26px 48px rgba(7, 22, 49, 0.4));
  animation: floaty 6s ease-in-out infinite;
}

.hero .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.meta span {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.84rem;
}

main {
  padding: 2.8rem 0 3.6rem;
}

.section {
  margin-bottom: 2.3rem;
  position: relative;
}

.section h2 {
  margin: 0 0 0.65rem;
  color: var(--brand);
  font-size: 1.65rem;
}

.section h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  border-radius: 999px;
  margin-top: 0.35rem;
  background: linear-gradient(90deg, #3f67ff, #8da8ff);
}

.lead {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.card {
  background: linear-gradient(180deg, #ffffff, #fafdff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(16, 43, 102, 0.16);
  border-color: #c6d5ff;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.9rem;
}

.category-tile {
  background: linear-gradient(140deg, #0f2b56, #234a83);
  color: #fff;
  border-radius: 16px;
  padding: 1rem;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 14px 32px rgba(12, 30, 61, 0.28);
}

.category-tile h3 {
  margin: 0;
  color: #fff;
  font-size: 1rem;
}

.category-tile p {
  margin: 0;
  font-size: 0.86rem;
  color: #dbe6ff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.brand-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.brand-showcase-wide {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.showcase-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.showcase-image {
  background: linear-gradient(180deg, #f5f8ff, #e3ebff);
  padding: 1rem;
  display: grid;
  place-items: center;
  min-height: 280px;
}

.showcase-image img {
  max-width: 100%;
  max-height: 250px;
  object-fit: contain;
  display: block;
}

.showcase-image-wide {
  min-height: 320px;
  padding: 0;
}

.showcase-image-wide img {
  width: 100%;
  height: 320px;
  max-width: none;
  max-height: none;
  object-fit: cover;
}

.showcase-content {
  padding: 1rem;
}

.showcase-content h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
  color: var(--brand-strong);
}

.feature-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.feature-row-reverse .feature-copy {
  order: 2;
}

.feature-row-reverse .feature-media {
  order: 1;
}

.feature-copy h2 {
  margin-top: 0;
  color: var(--brand);
}

.feature-media {
  min-width: 0;
}

.feature-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.category-story {
  margin-bottom: 1.6rem;
}

.story-block {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 1.2rem;
  align-items: center;
}

.story-block::before {
  content: "";
  position: absolute;
  inset: 28px 0 28px 0;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(63, 103, 255, 0.1), rgba(255, 191, 71, 0.12));
  z-index: 0;
}

.story-copy,
.story-media {
  position: relative;
  z-index: 1;
}

.story-copy {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(220, 227, 243, 0.95);
  border-radius: 26px;
  padding: 1.5rem;
  box-shadow: 0 18px 50px rgba(14, 35, 73, 0.1);
}

.story-kicker {
  background: linear-gradient(120deg, rgba(63, 103, 255, 0.12), rgba(255, 191, 71, 0.22));
  color: var(--brand-strong);
  margin-bottom: 0.9rem;
}

.story-copy h2 {
  margin-top: 0;
  color: var(--brand);
}

.story-copy h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  border-radius: 999px;
  margin-top: 0.4rem;
  background: linear-gradient(90deg, #3f67ff, #8da8ff);
}

.story-media {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 24px 55px rgba(11, 28, 61, 0.18);
  transform: rotate(-2deg);
  will-change: transform;
  transition: transform 0.3s ease;
}

.story-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.story-media-wide img {
  height: 390px;
}

.story-block-b,
.story-block-d {
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
}

.story-block-b .story-media,
.story-block-d .story-media {
  transform: rotate(2deg);
}

.story-block-c .story-copy {
  margin-right: -3rem;
}

.story-block-c .story-media {
  margin-left: -1.5rem;
}

.story-block-a .story-copy,
.story-block-d .story-copy {
  margin-left: 1rem;
}

.story-block-b .story-copy,
.story-block-c .story-copy {
  margin-right: 1rem;
}

.product-image {
  height: 130px;
  background: linear-gradient(140deg, #dce8ff, #b7ccff);
  position: relative;
  overflow: hidden;
}

.product-image::after {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 12px;
  border: 2px dashed rgba(25, 51, 112, 0.35);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-image.has-photo::after {
  display: none;
}

.product-body {
  padding: 0.9rem;
}

.product-action-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 0.65rem;
}

.small-btn {
  padding: 0.4rem 0.65rem;
  font-size: 0.8rem;
  border-radius: 8px;
}

.card h3 {
  margin-top: 0;
  color: var(--brand-strong);
}

.list-clean {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-clean li {
  margin-bottom: 0.7rem;
}

.badge {
  display: inline-block;
  background: #e9efff;
  border: 1px solid #ced9ff;
  color: #2a47a8;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  padding: 0.23rem 0.55rem;
  border-radius: 8px;
  margin-right: 0.35rem;
}

.cta-row {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.btn {
  display: inline-block;
  padding: 0.68rem 1.1rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-primary {
  background: linear-gradient(120deg, #ffc64f, #ffb32f);
  color: #1b2433;
  box-shadow: 0 10px 24px rgba(255, 179, 47, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.stats {
  margin-top: -2.6rem;
  margin-bottom: 1.8rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.9rem;
}

.stat-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.stat-box::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  right: -24px;
  top: -38px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 103, 255, 0.16) 0%, transparent 72%);
}

.stat-box strong {
  display: block;
  color: var(--brand-strong);
  font-size: 1.3rem;
}

.site-footer {
  background: #0a1d35;
  color: #d3dded;
  padding: 1.7rem 0;
  font-size: 0.91rem;
}

.site-footer p {
  margin: 0.25rem 0;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-brand-block h3 {
  margin: 0 0 0.4rem;
  color: #fff;
  font-size: 1.05rem;
}

.footer-sub {
  margin: 0;
  max-width: 620px;
  color: #c8d7ee;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.38rem 0.82rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #deebff;
}

.muted {
  color: var(--ink-soft);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.8rem;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

th,
td {
  border: 1px solid var(--line);
  padding: 0.68rem;
  text-align: left;
}

th {
  background: #eef3ff;
  color: var(--brand-strong);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.about-company-note {
  margin-top: 1rem;
  padding: 1.4rem;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(13, 42, 80, 0.98), rgba(28, 65, 118, 0.96));
  color: #fff;
  overflow: hidden;
  position: relative;
}

.about-company-note::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -40px;
  top: -55px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, transparent 72%);
  pointer-events: none;
}

.about-company-note h3,
.about-company-note p,
.about-company-note .cta-row,
.about-company-note .badge {
  position: relative;
  z-index: 1;
}

.about-company-note h3 {
  color: #fff;
  margin-bottom: 0.7rem;
}

.about-company-note p {
  color: rgba(255, 255, 255, 0.88);
}

.about-company-note .badge {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.about-company-note .btn-primary {
  box-shadow: 0 12px 28px rgba(255, 179, 47, 0.24);
}

.about-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 1rem 0 1.1rem;
}

.about-profile-item {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.about-profile-item h4 {
  margin: 0.55rem 0 0.45rem;
  color: #fff;
  font-size: 1rem;
}

.about-profile-item p,
.about-profile-item a {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.about-profile-item-wide {
  grid-column: 1 / -1;
}

.contact-visual-wrap {
  display: grid;
  place-items: center;
}

.contact-visual {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  filter: drop-shadow(0 22px 38px rgba(23, 44, 92, 0.25));
  animation: floaty 5.5s ease-in-out infinite;
}

.hero .meta,
.cta-row,
.hero h2,
.hero p {
  position: relative;
  z-index: 2;
}

.form-card {
  position: relative;
}

.form-status {
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  margin: 0.6rem 0 1rem;
  font-weight: 600;
}

.form-status-success {
  background: #e8f8ef;
  border: 1px solid #b8e6ca;
  color: #1e6a3d;
}

.form-status-error {
  background: #fff1f1;
  border: 1px solid #f4c2c2;
  color: #8f1f1f;
}

.form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(140deg, rgba(63, 103, 255, 0.05), rgba(255, 191, 71, 0.08));
  pointer-events: none;
}

.office-card {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid #d7e2f7;
}

.office-card h3 {
  margin-bottom: 1rem;
}

.office-card-row {
  padding: 0.8rem 0.85rem;
  border: 1px solid #e0e7f6;
  border-radius: 12px;
  background: #fff;
  margin-bottom: 0.75rem;
}

.office-card-row p {
  margin: 0.4rem 0 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.form-card label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--brand-strong);
}

.form-card input,
.form-card textarea,
.form-card select {
  width: 100%;
  padding: 0.72rem 0.8rem;
  border: 1px solid #cfd8ef;
  border-radius: 10px;
  background: #fff;
  font: inherit;
  color: var(--ink);
  margin-bottom: 0.9rem;
}

.form-card textarea {
  min-height: 140px;
  resize: vertical;
}

.form-card input:focus,
.form-card textarea:focus,
.form-card select:focus {
  outline: none;
  border-color: #7f9cff;
  box-shadow: 0 0 0 3px rgba(87, 120, 255, 0.2);
}

@media (max-width: 900px) {
  .brand-logo img {
    width: 134px;
    height: auto;
    max-height: 46px;
  }

  .header-inner {
    flex-wrap: wrap;
    align-items: center;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-header nav {
    width: 100%;
    display: none;
    margin-top: 0.55rem;
    order: 3;
  }

  .site-header nav.nav-open {
    display: block;
  }

  .nav-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.42rem;
    overflow: visible;
  }

  .nav-list li {
    flex: initial;
  }

  .nav-list a {
    display: block;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .feature-row-reverse .feature-copy,
  .feature-row-reverse .feature-media {
    order: initial;
  }

  .story-block,
  .story-block-b,
  .story-block-d {
    grid-template-columns: 1fr;
  }

  .story-block {
    gap: 0.9rem;
  }

  .story-block-c .story-copy,
  .story-block-c .story-media,
  .story-block-a .story-copy,
  .story-block-b .story-copy,
  .story-block-d .story-copy {
    margin: 0;
  }

  .story-media,
  .story-block-b .story-media,
  .story-block-d .story-media {
    transform: none;
  }

  .story-block-b .story-copy,
  .story-block-d .story-copy {
    order: 1;
  }

  .story-block-b .story-media,
  .story-block-d .story-media {
    order: 2;
  }

  .story-media img,
  .story-media-wide img {
    height: 280px;
  }

  .hero-visual {
    justify-self: start;
    max-width: 460px;
    margin-top: 0.4rem;
  }
}

@media (max-width: 760px) {
  .top-strip {
    display: none;
  }

  .top-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 3.2rem 0 2.7rem;
  }

  .stats {
    margin-top: -1.3rem;
  }
}

@media (max-width: 520px) {
  .nav-list {
    grid-template-columns: 1fr;
  }
}
