:root {
  --navy: #09213a;
  --navy-soft: #12385f;
  --yellow: #f7b731;
  --yellow-soft: #ffe2a0;
  --ink: #172331;
  --muted: #657487;
  --line: #d9e2ec;
  --panel: #f5f8fb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(9, 33, 58, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(217, 226, 236, 0.9);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
}

.brand-logo {
  width: 48px;
  height: auto;
}

.brand-name {
  font-size: 1.16rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 6px;
  color: #334256;
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--navy);
  background: #eef4f9;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  background: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: end;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(9, 33, 58, 0.9) 0%, rgba(9, 33, 58, 0.62) 42%, rgba(9, 33, 58, 0.18) 100%),
    url("../images/portable-solar-camp.png") center / cover no-repeat;
}

.hero-inner,
.section-inner,
.page-hero-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  padding: 72px 0 54px;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--yellow-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 3px;
  border-radius: 99px;
  background: var(--yellow);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: 0;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.45rem, 5.8vw, 5.2rem);
  max-width: 820px;
}

.hero .lead {
  max-width: 640px;
  color: #e6eef6;
  font-size: 1.17rem;
}

.lead {
  margin: 20px 0 0;
  color: #4c5d70;
  font-size: 1.08rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
}

.button-primary {
  color: var(--navy);
  background: var(--yellow);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
}

.contact-hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(520px, 100%);
}

.contact-hero-actions .button {
  min-width: 0;
  padding: 0 14px;
  white-space: nowrap;
  font-size: clamp(0.82rem, 1.8vw, 0.98rem);
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.22);
}

.hero-strip div {
  min-height: 92px;
  padding: 18px;
  background: rgba(9, 33, 58, 0.72);
}

.hero-strip strong {
  display: block;
  color: var(--white);
  font-size: 0.96rem;
}

.hero-strip span {
  display: block;
  margin-top: 5px;
  color: #d5e1ec;
  font-size: 0.86rem;
}

.section {
  padding: 82px 0;
}

.section.alt {
  background: var(--panel);
}

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

.section-heading h2,
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

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

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

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

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

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

.card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.card h3 {
  font-size: 1.12rem;
}

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

.copy-block {
  max-width: 780px;
  margin: -12px 0 34px;
}

.copy-block p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

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

.market-card {
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(9, 33, 58, 0.12);
  border-radius: 8px;
  background: var(--white);
}

.market-card h3 {
  font-size: 1.05rem;
}

.market-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.feature-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
}

.feature-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #0b2a4a;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-icon .icon-panel-fill {
  fill: #0b2a4a;
  stroke: #0b2a4a;
}

.feature-icon .icon-yellow {
  fill: #f2b632;
  stroke: #f2b632;
}

.feature-icon .icon-yellow-stroke {
  stroke: #f2b632;
}

.feature-icon .icon-line {
  stroke: #0b2a4a;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
  gap: 54px;
}

.feature-panel {
  padding: 32px;
  border-left: 5px solid var(--yellow);
  background: var(--navy);
  color: #dce8f3;
  box-shadow: var(--shadow);
}

.feature-panel h2,
.feature-panel h3 {
  color: var(--white);
}

.feature-panel p {
  color: #dce8f3;
}

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

.check-list li {
  display: flex;
  gap: 10px;
  color: #334256;
}

.check-list li::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 2px;
  background: var(--yellow);
}

.feature-panel .check-list li {
  color: #e5eef7;
}

.about-intro {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 54px;
  align-items: stretch;
}

.about-copy {
  display: grid;
  align-content: center;
  gap: 16px;
}

.about-copy p {
  margin: 0;
}

.about-panel {
  padding: 34px;
  border: 1px solid rgba(247, 183, 49, 0.34);
  border-radius: 8px;
  background:
    radial-gradient(circle at 85% 18%, rgba(247, 183, 49, 0.18), transparent 32%),
    linear-gradient(135deg, #0a2b4d, #123b63);
  color: #dce8f3;
  box-shadow: var(--shadow);
}

.about-panel h2 {
  margin: 14px 0;
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.65rem);
}

.about-panel p {
  color: #dce8f3;
}

.about-conditions .card {
  border-top: 5px solid var(--yellow);
}

.value-grid .card {
  background:
    linear-gradient(180deg, #ffffff, #f8fafc);
}

.value-grid .card h3 {
  min-height: 54px;
}

.about-contact-section {
  padding-top: 46px;
}

.about-contact-section .grid {
  align-items: center;
}

.about-signoff {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-signoff img {
  width: 58px;
  height: auto;
}

.about-signoff strong {
  display: block;
  color: var(--navy);
  font-size: 1.2rem;
}

.about-signoff p {
  margin: 4px 0 0;
  color: var(--muted);
}

.about-signoff-link {
  text-align: right;
  font-weight: 850;
}

.page-hero {
  padding: 74px 0 54px;
  background:
    linear-gradient(135deg, rgba(9, 33, 58, 0.96), rgba(18, 56, 95, 0.9)),
    url("../images/portable-solar-camp.png") center / cover no-repeat;
  color: var(--white);
}

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

.page-hero .lead {
  max-width: 720px;
  color: #dfeaf3;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.product-pill {
  min-height: 440px;
  padding: 30px 22px 34px;
  border: 1px solid rgba(9, 33, 58, 0.14);
  border-radius: 18px;
  background: var(--white);
  font-weight: 750;
  color: var(--navy);
  box-shadow: 0 18px 44px rgba(9, 33, 58, 0.05);
}

.category-list .product-pill {
  display: grid;
  grid-template-rows: 164px auto 18px auto;
  align-items: start;
  justify-items: center;
  gap: 18px;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.category-list .product-pill:hover {
  transform: translateY(-3px);
  border-color: rgba(247, 183, 49, 0.75);
  box-shadow: 0 22px 54px rgba(9, 33, 58, 0.12);
}

.category-list .product-pill span {
  display: block;
}

.category-art {
  width: 100%;
  height: 164px;
}

.category-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.category-list .product-pill > span:not(.category-art) {
  color: var(--navy);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 900;
  line-height: 1.2;
}

.category-list .product-pill i {
  display: block;
  width: 50px;
  height: 3px;
  border-radius: 999px;
  background: var(--yellow);
}

.category-list .product-pill small {
  display: block;
  color: #5b6570;
  font-size: 0.94rem;
  font-style: normal;
  font-weight: 750;
  line-height: 1.45;
}

.product-overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: grid;
  gap: 16px;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.product-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.product-topline span {
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--navy);
  background: var(--yellow-soft);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-topline strong {
  color: var(--muted);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-card h3 {
  font-size: 1.25rem;
}

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

.spec-list {
  display: grid;
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.spec-list div {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 12px;
  padding: 12px 14px;
  background: #fbfdff;
}

.spec-list dt {
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 850;
}

.spec-list dd {
  margin: 0;
  color: #4c5d70;
  font-size: 0.92rem;
}

.source-link {
  width: fit-content;
  color: var(--navy);
  border-bottom: 2px solid var(--yellow);
  font-size: 0.92rem;
  font-weight: 850;
}

.product-detail {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 32px;
  align-items: start;
}

.detail-summary {
  position: sticky;
  top: 96px;
  padding: 28px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--yellow);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.detail-summary h2 {
  margin-top: 10px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.detail-summary p {
  margin: 14px 0 20px;
  color: var(--muted);
}

.detail-label {
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-visual {
  position: relative;
  min-height: 230px;
  margin: 0 0 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 18%, rgba(247, 183, 49, 0.22), transparent 34%),
    linear-gradient(145deg, #edf4fa, #ffffff);
}

.visual-brand {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(9, 33, 58, 0.12);
}

.visual-brand img {
  width: 28px;
}

.product-photo {
  display: flex;
  min-height: 270px;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 248, 251, 0.96)),
    radial-gradient(circle at 78% 18%, rgba(247, 183, 49, 0.18), transparent 32%);
}

.product-image {
  display: block;
  width: 100%;
  height: 270px;
  padding: 24px;
  object-fit: contain;
}

.product-photo::after {
  content: "";
  position: absolute;
  inset: auto 22px 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(9, 33, 58, 0.18), transparent);
}

.visual-surface {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 30px;
  height: 88px;
  border: 1px solid rgba(9, 33, 58, 0.18);
  border-radius: 10px;
  background:
    repeating-linear-gradient(90deg, rgba(247, 183, 49, 0.9) 0 3px, transparent 3px 20px),
    linear-gradient(135deg, rgba(9, 33, 58, 0.88), rgba(18, 56, 95, 0.76));
  box-shadow: 0 22px 35px rgba(9, 33, 58, 0.18);
}

.visual-rollable .visual-surface {
  height: 76px;
  border-radius: 999px;
  transform: perspective(460px) rotateX(14deg);
}

.visual-flex .visual-surface,
.visual-marine .visual-surface,
.visual-rv .visual-surface {
  transform: skewX(-7deg);
}

.visual-blanket .visual-surface,
.visual-kit .visual-surface {
  height: 104px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  padding: 8px;
  background: #102f51;
}

.visual-blanket .visual-surface::before,
.visual-kit .visual-surface::before {
  content: "";
  grid-column: 1 / -1;
  border-radius: 6px;
  background:
    repeating-linear-gradient(90deg, rgba(247, 183, 49, 0.85) 0 3px, transparent 3px 18px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(18, 56, 95, 0.55));
}

.visual-awning .visual-surface {
  height: 78px;
  clip-path: polygon(0 0, 100% 16%, 90% 100%, 8% 86%);
}

.visual-power .visual-surface {
  left: 72px;
  right: 72px;
  height: 124px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, var(--yellow) 0 22%, transparent 22%),
    linear-gradient(135deg, #0a2a4e, #143d68);
}

.detail-main {
  display: grid;
  gap: 18px;
}

.detail-block {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.detail-block p {
  margin: 12px 0 0;
  color: var(--muted);
}

.detail-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.detail-list li {
  display: flex;
  gap: 10px;
  color: #4c5d70;
}

.detail-list li::before {
  content: "";
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 2px;
  background: var(--yellow);
}

.contact-intro {
  max-width: 850px;
  margin-bottom: 34px;
}

.contact-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 100%;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(9, 33, 58, 0.05);
}

.contact-card::before {
  content: "";
  width: 46px;
  height: 4px;
  border-radius: 999px;
  background: var(--yellow);
}

.contact-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  overflow-wrap: anywhere;
}

.contact-card h2.email-address {
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  white-space: nowrap;
  overflow-wrap: normal;
}

.contact-card h2.email-address a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(247, 183, 49, 0.8);
  text-underline-offset: 5px;
}

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

.contact-card .button {
  width: fit-content;
  margin-top: 6px;
}

.location-card {
  border-left: 5px solid var(--yellow);
  background:
    radial-gradient(circle at 84% 14%, rgba(247, 183, 49, 0.14), transparent 30%),
    var(--white);
}

.interest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.interest-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 15px;
  border: 1px solid rgba(9, 33, 58, 0.12);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
}

.response-panel {
  padding: 34px;
  border-left: 5px solid var(--yellow);
  border-radius: 8px;
  background: var(--navy);
  color: #dce8f3;
}

.response-panel h2 {
  max-width: 820px;
  margin: 12px 0;
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.55rem);
}

.response-panel p:not(.eyebrow) {
  max-width: 760px;
  color: #dce8f3;
}

form {
  display: grid;
  gap: 16px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: #324255;
  font-size: 0.93rem;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd7e4;
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b2a4a;
  color: #dce8f3;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.footer-brand strong {
  display: block;
  color: var(--white);
  font-size: 0.98rem;
  line-height: 1;
}

.footer-brand small {
  display: block;
  margin-top: 4px;
  color: #aebfd0;
  font-size: 0.78rem;
  font-weight: 650;
}

.footer-logo {
  width: 38px;
  height: auto;
  padding: 6px 7px;
  border-radius: 7px;
  background: var(--white);
}

.footer-copy {
  margin: 0;
  color: #aebfd0;
  font-size: 0.86rem;
  text-align: center;
  white-space: nowrap;
}

.footer-links {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
  color: #c8d8e6;
  font-size: 0.88rem;
  font-weight: 750;
}

.footer-links a {
  transition: color 160ms ease;
}

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

.footer-links a + a::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  margin: 0 10px 3px 0;
  border-radius: 999px;
  background: rgba(200, 216, 230, 0.46);
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav {
    min-height: 66px;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 76px 0 44px;
  }

  .hero-strip,
  .grid.three,
  .grid.four,
  .grid.two,
  .split,
  .about-intro,
  .market-grid,
  .product-detail,
  .product-overview,
  .contact-card-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .detail-summary {
    position: static;
  }

  .about-signoff {
    grid-column: auto;
  }

  .about-signoff-link {
    text-align: left;
  }

  .contact-card .button {
    width: 100%;
  }

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

  .product-pill {
    min-height: 430px;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 14px;
  }

  .section {
    padding: 58px 0;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 9px;
    padding: 18px 0;
    text-align: center;
  }

  .footer-logo {
    width: 34px;
    padding: 5px 6px;
  }

  .footer-brand small {
    margin-top: 2px;
  }

  .footer-links {
    justify-content: center;
    margin-top: 0;
    gap: 8px;
  }

  .footer-links a + a::before {
    margin-right: 8px;
  }
}

@media (max-width: 540px) {
  .hero,
  .page-hero {
    background-position: 62% center;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .product-list {
    grid-template-columns: 1fr;
  }

  .about-panel,
  .feature-panel {
    padding: 26px;
  }

  .value-grid .card h3 {
    min-height: auto;
  }

  .product-pill {
    min-height: 410px;
    padding: 28px 22px 32px;
  }

  .category-list .product-pill {
    grid-template-rows: 160px auto 16px auto;
  }

  .category-art {
    height: 160px;
  }

  .spec-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .actions .button {
    width: 100%;
  }

  .contact-hero-actions .button {
    width: auto;
    min-height: 44px;
    padding: 0 8px;
    font-size: clamp(0.7rem, 3vw, 0.86rem);
  }
}
