:root {
  --ink: #10211d;
  --muted: #5d6863;
  --paper: #f7f4ee;
  --white: #ffffff;
  --forest: #12312b;
  --leaf: #5e8b45;
  --sun: #ffcd00;
  --clay: #b7633d;
  --sky: #dfecef;
  --line: rgba(16, 33, 29, 0.14);
  --shadow: 0 24px 80px rgba(16, 33, 29, 0.18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--sun);
  color: var(--ink);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
  padding: 0.55rem clamp(1rem, 3vw, 2rem);
  color: var(--white);
  transition: background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.site-header.is-scrolled,
.site-header.solid {
  color: var(--ink);
  background: rgba(247, 244, 238, 0.94);
  box-shadow: 0 8px 30px rgba(16, 33, 29, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 250px;
}

.brand-logo {
  display: grid;
  width: 112px;
  height: 42px;
  place-items: center;
  padding: 0.16rem 0.42rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 18px rgba(0,0,0,0.2);
}

.brand-logo img {
  width: 100%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: currentColor;
  opacity: 0.78;
  font-size: 0.78rem;
}

.brand strong {
  font-size: 0.95rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 1.8vw, 1.35rem);
  font-weight: 700;
  font-size: 0.94rem;
}

.nav a,
.site-footer a {
  text-decoration: none;
}

.nav a:hover,
.site-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.68rem 0.95rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.header-cta {
  color: var(--ink);
  background: var(--sun);
}

.button.primary {
  color: var(--white);
  background: var(--forest);
}

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

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  padding: 7.4rem clamp(1.2rem, 4vw, 4rem) 3rem;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(18, 49, 43, 0.82), rgba(18, 49, 43, 0.42) 50%, rgba(18, 49, 43, 0.06)),
    url("assets/playfit-park-slider.webp") center/cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    radial-gradient(circle at 85% 18%, rgba(241, 184, 75, 0.3), transparent 28%),
    linear-gradient(180deg, rgba(16, 33, 29, 0.22), rgba(16, 33, 29, 0.88));
}

.hero-content {
  position: relative;
  max-width: 850px;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sun);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  max-width: 920px;
  font-size: clamp(2.45rem, 6vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 0.55rem;
  font-size: 1.16rem;
}

.hero-copy {
  max-width: 700px;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.26rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 850px;
  margin: 2.4rem 0 0;
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  overflow: hidden;
}

.trust-strip div {
  padding: 1rem;
  background: rgba(16, 33, 29, 0.48);
}

.trust-strip dt {
  font-size: 1.55rem;
  font-weight: 900;
}

.trust-strip dd {
  margin: 0.15rem 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.2rem;
  width: 30px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-radius: 18px;
  transform: translateX(-50%);
}

.scroll-cue::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 9px;
  width: 5px;
  height: 9px;
  background: var(--white);
  border-radius: 3px;
  transform: translateX(-50%);
  animation: cue 1.5s infinite;
}

@keyframes cue {
  0% { opacity: 0; transform: translate(-50%, 0); }
  45% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 15px); }
}

section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.2rem, 4vw, 4rem);
}

.band {
  background: var(--white);
}

.section-grid,
.section-head,
.solution-grid,
.device-layout,
.product-grid,
.proof-panel,
.timeline,
.contact-card {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-head {
  margin-bottom: 2rem;
}

.section-head h2 {
  max-width: 900px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.solution-grid article {
  min-height: 280px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.68), rgba(255,255,255,0.2));
}

.solution-grid article:nth-child(2) {
  background: var(--sky);
}

.solution-grid article:nth-child(3) {
  background: #f5e7d5;
}

.solution-grid article:nth-child(4) {
  background: #e6ecd7;
}

.solution-grid p,
.timeline p,
.faq p,
.proof-points,
.contact-card p {
  color: var(--muted);
}

.icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 3rem;
  place-items: center;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  font-weight: 900;
}

.device-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: stretch;
}

.device-visual {
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.device-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.device-list {
  display: grid;
  gap: 0.75rem;
  align-content: center;
}

.device-item {
  display: block;
  width: 100%;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
}

.device-item strong,
.device-item span {
  display: block;
}

.device-item span {
  margin-top: 0.25rem;
  color: var(--muted);
}

.device-item.active {
  color: var(--white);
  background: var(--forest);
}

.device-item.active span {
  color: rgba(255,255,255,0.78);
}

.shop {
  background: var(--paper);
  color: var(--ink);
}

.shop .eyebrow {
  color: var(--clay);
}

.shop-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 2rem;
  align-items: end;
}

.shop-summary {
  display: grid;
  gap: 0.5rem;
  padding: 1rem;
  color: var(--white);
  background: var(--forest);
  border-radius: var(--radius);
}

.shop-summary strong {
  font-size: 2.4rem;
  line-height: 1;
}

.shop-summary .button.primary {
  color: var(--ink);
  background: var(--sun);
}

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100%;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.product-card.is-selected {
  outline: 3px solid var(--sun);
  box-shadow: 0 18px 45px rgba(255,205,0,0.16);
}

.product-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #f0f0f0;
}

.product-body {
  padding: 0.9rem;
}

.product-code {
  margin: 0 0 0.35rem;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
}

.product-body h3 {
  min-height: 2.8rem;
  margin-bottom: 0.55rem;
}

.product-body p {
  color: var(--muted);
  font-size: 0.92rem;
}

.product-body a {
  display: inline-block;
  margin-top: 0.3rem;
  color: var(--forest);
  font-weight: 900;
  text-decoration: none;
}

.product-body a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.select-product {
  min-height: 46px;
  border: 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  background: var(--sun);
  font-weight: 900;
  cursor: pointer;
}

.product-card.is-selected .select-product {
  color: var(--white);
  background: var(--forest);
}

.shop-teaser {
  background: #eef3e9;
}

.shop-teaser-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}

.shop-teaser p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
}

.shop-page-hero {
  padding-top: 8rem;
  background: var(--white);
}

.shop-page-hero .section-grid {
  align-items: center;
}

.shop-page-hero .hero-copy {
  color: var(--muted);
}

.shop-page-hero img {
  width: min(280px, 80%);
  justify-self: end;
  padding: 1rem;
  background: #050505;
  border-radius: var(--radius);
}

.shop-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 1.5rem;
  width: min(100%, var(--max));
  margin: 0 auto;
  align-items: start;
}

.shop-sidebar {
  position: sticky;
  top: 86px;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

body.shop-page {
  background: #f4f1e9;
}

.shop-page .site-header.solid {
  background: rgba(244, 241, 233, 0.94);
}

.shop-hero {
  min-height: 82vh;
  padding-top: 7.2rem;
  display: grid;
  align-items: center;
  background:
    linear-gradient(115deg, rgba(244, 241, 233, 0.96) 0%, rgba(244, 241, 233, 0.88) 42%, rgba(8, 20, 16, 0.2) 100%),
    url("assets/playfit-park-slider.webp") center/cover;
}

.shop-hero-inner,
.shop-shell,
.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.shop-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.shop-hero-copy {
  max-width: 760px;
}

.shop-hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.98;
  overflow-wrap: normal;
  word-break: normal;
}

.shop-hero p:not(.eyebrow) {
  max-width: 620px;
  color: #34433d;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.button.secondary.dark {
  color: var(--ink);
  border-color: rgba(16, 33, 29, 0.22);
  background: rgba(255, 255, 255, 0.72);
}

.shop-hero-panel {
  padding: 1rem;
  color: var(--white);
  background: rgba(8, 20, 16, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(8, 20, 16, 0.28);
}

.shop-hero-panel .panel-logo {
  width: min(100%, 260px);
  height: auto;
  margin-bottom: 1rem;
  padding: 0.5rem 0.7rem;
  background: #fff;
  border-radius: 8px;
}

.shop-hero-panel .panel-photo {
  width: 100%;
  height: 190px;
  margin-bottom: 1rem;
  object-fit: cover;
  object-position: center 34%;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.16);
}

.shop-hero-panel dl {
  display: grid;
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
}

.shop-hero-panel div {
  padding: 1rem;
  background: rgba(255,255,255,0.06);
}

.shop-hero-panel dt {
  font-size: 2rem;
  font-weight: 900;
  color: var(--sun);
}

.shop-hero-panel dd {
  margin: 0;
  color: rgba(255,255,255,0.78);
}

.shop-configurator {
  background: #081410;
  color: var(--white);
}

.shop-intro {
  max-width: 980px;
  margin-bottom: 2.4rem;
}

.shop-intro h2,
.shop-intro p {
  max-width: 980px;
}

.shop-intro .eyebrow {
  max-width: 980px;
}

.shop-intro .eyebrow,
.shop-configurator .eyebrow {
  color: var(--sun);
}

.shop-intro p:not(.eyebrow) {
  color: rgba(255,255,255,0.75);
  font-size: 1.08rem;
}

.shop-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.shop-gallery figure {
  position: relative;
  min-height: 290px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #13251f;
  box-shadow: 0 18px 60px rgba(0,0,0,0.18);
}

.shop-gallery figure.wide {
  min-height: 360px;
}

.shop-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(180deg, transparent, rgba(8,20,16,0.88));
}

.shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 1.3rem;
  align-items: start;
}

.shop-page .product-grid {
  width: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.shop-page .product-card {
  position: relative;
  border: 0;
  box-shadow: 0 16px 50px rgba(8, 20, 16, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.shop-page .product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 70px rgba(8, 20, 16, 0.18);
}

.shop-page .product-card.featured {
  grid-column: span 2;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1fr);
  grid-template-rows: 1fr auto;
}

.shop-page .product-card.featured img {
  grid-row: span 2;
  height: 100%;
}

.shop-page .product-card img {
  aspect-ratio: 16 / 10;
}

.shop-page .product-body {
  padding: 1.15rem;
}

.shop-page .product-code {
  color: var(--clay);
}

.shop-page .product-body h3 {
  min-height: 0;
  font-size: 1.28rem;
}

.shop-page .product-body p {
  font-size: 0.96rem;
}

.shop-page .select-product {
  min-height: 52px;
  background: var(--sun);
}

.shop-page .product-card.is-selected {
  outline: 0;
  box-shadow: 0 0 0 3px var(--sun), 0 24px 80px rgba(8, 20, 16, 0.22);
}

.shop-page .shop-sidebar {
  top: 76px;
  padding: 1.1rem;
  color: var(--ink);
  border: 0;
  box-shadow: 0 20px 70px rgba(8, 20, 16, 0.18);
}

.selection-meter {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.85rem;
  color: var(--white);
  background: var(--forest);
  border-radius: 8px;
}

.selection-meter span {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--ink);
  background: var(--sun);
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 900;
}

.selection-meter p,
.sidebar-copy {
  margin: 0;
}

.selection-meter p {
  color: rgba(255,255,255,0.82);
  font-weight: 800;
}

.sidebar-copy {
  margin-bottom: 1rem;
  color: var(--muted);
}

.shop-page .lead-form {
  padding: 0;
  box-shadow: none;
}

.shop-why {
  background: var(--white);
}

.proof {
  background: linear-gradient(135deg, var(--forest), #244138);
  color: var(--white);
}

.proof-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.proof .eyebrow {
  color: var(--sun);
}

.proof-points {
  display: grid;
  gap: 1rem;
}

.proof-points p {
  margin: 0;
  padding: 1rem;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.proof-points strong {
  color: var(--white);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.timeline li {
  padding: 1.3rem;
  background: var(--paper);
}

.timeline span {
  display: inline-block;
  margin-bottom: 2rem;
  color: var(--clay);
  font-weight: 900;
}

.seo-block {
  background: #e7eee7;
}

.faq-list {
  width: min(100%, 900px);
  margin: 0 auto;
}

details {
  border-top: 1px solid var(--line);
  padding: 1.1rem 0;
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  font-size: 1.12rem;
  font-weight: 900;
  cursor: pointer;
}

.contact {
  background:
    linear-gradient(90deg, rgba(18,49,43,0.92), rgba(18,49,43,0.66)),
    url("https://verticaltechnik.ch/wp-content/uploads/2020/05/playfit-Fitnessgeraete-Trainingspark.jpg") center/cover;
  color: var(--white);
}

.contact .eyebrow {
  color: var(--sun);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-card h2 {
  max-width: 760px;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.82);
}

.lead-form {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.86rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.82rem 0.9rem;
  color: var(--ink);
  font: inherit;
  background: #fbfaf6;
}

textarea {
  resize: vertical;
}

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

.form-note a {
  color: var(--forest);
  font-weight: 800;
}

.site-footer {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  color: rgba(255,255,255,0.78);
  background:
    linear-gradient(135deg, #081410 0%, #0f2a23 62%, #081410 100%);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem clamp(1.2rem, 4vw, 2rem);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-brand img,
.site-footer img {
  width: 190px;
  height: auto;
  padding: 0.4rem 0.55rem;
  background: #fff;
  border-radius: var(--radius);
}

.footer-brand p,
.site-footer p {
  margin: 0;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

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

.footer-brand span {
  color: rgba(255,255,255,0.66);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
  font-weight: 800;
}

.site-footer nav a {
  color: rgba(255,255,255,0.82);
}

.site-footer nav a:hover {
  color: var(--sun);
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .brand {
    min-width: auto;
  }

  .section-grid,
  .proof-panel,
  .device-layout,
  .contact-card {
    grid-template-columns: 1fr;
  }

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

  .shop-head {
    grid-template-columns: 1fr;
  }

  .shop-teaser-inner,
  .shop-page-layout,
  .shop-hero-inner,
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    position: static;
  }

  .shop-page .shop-sidebar {
    position: static;
  }

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

  .shop-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .shop-gallery figure.wide {
    grid-column: span 2;
  }

  .shop-page .product-card.featured {
    grid-column: span 2;
  }

  .device-visual {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 0.75rem 1rem;
  }

  .header-cta {
    min-height: 40px;
    padding: 0.62rem 0.75rem;
    font-size: 0.86rem;
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    width: 86px;
    height: 34px;
  }

  .hero {
    min-height: 96vh;
    padding-top: 7rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .trust-strip,
  .solution-grid,
  .product-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .solution-grid article {
    min-height: auto;
  }

  .icon {
    margin-bottom: 1.5rem;
  }

  .site-footer {
    display: block;
  }

  .footer-inner {
    display: grid;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .shop-hero {
    min-height: auto;
    padding-top: 6.5rem;
  }

  .shop-hero h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .shop-hero-panel {
    padding: 0.85rem;
  }

  .shop-page .product-grid,
  .shop-page .product-card.featured {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .shop-gallery,
  .shop-gallery figure.wide {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .shop-gallery figure,
  .shop-gallery figure.wide {
    min-height: 240px;
  }

  .shop-page .product-card.featured img {
    grid-row: auto;
  }
}

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