:root {
  --bg: #f6f8fb;
  --text: #0f1720;
  --muted: #5b6470;
  --accent: #1677ff;
  --accent-dark: #0f5fd4;
  --border: #e4e9f0;
  --dark: #0f1620;
  --max-width: 1160px;
  --section-pad: 84px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f4f7fb 0%, #ffffff 45%, #ffffff 100%);
  line-height: 1.6;
}

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

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

a:hover {
  color: var(--accent-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.section {
  padding: var(--section-pad) 0;
}

.section-title {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0 0 18px;
}

.section-headline {
  text-align: center;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  margin: 0 auto 18px;
  max-width: 760px;
}

.section-subtext {
  text-align: center;
  color: var(--muted);
  max-width: 780px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.85rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -40%;
  width: 60%;
  height: 220%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  transform: translateX(-140%);
  opacity: 0;
  pointer-events: none;
}

.btn:hover::after {
  opacity: 1;
  animation: btn-sheen 0.6s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 25px rgba(22, 119, 255, 0.25);
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline {
  border-color: var(--border);
  background: transparent;
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.btn-light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

.btn-light:hover {
  background: #fff;
  transform: translateY(-1px);
}

.btn-small {
  padding: 10px 16px;
  font-size: 0.8rem;
}

.btn-inverse {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-inverse:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: #fff;
  transform: translateY(-1px);
}

@keyframes btn-sheen {
  from {
    transform: translateX(-140%);
  }
  to {
    transform: translateX(220%);
  }
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-container {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 18px;
}

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

.brand img {
  height: 32px;
  width: auto;
  display: block;
}

.nav {
  flex: 1;
  position: relative;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0;
  margin: 0;
  font-weight: 600;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--text);
  transition: color 0.2s ease;
}

.nav-links a.active {
  color: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone {
  position: relative;
}

.phone-toggle {
  height: 36px;
  width: 36px;
  padding: 0;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.phone-toggle svg {
  width: 18px;
  height: 18px;
  stroke: var(--text);
  stroke-width: 1.8;
  fill: none;
}


.phone-toggle:hover {
  border-color: var(--accent);
}

.phone-menu {
  position: absolute;
  top: 46px;
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 16px 30px rgba(15, 22, 32, 0.12);
  padding: 8px;
  min-width: 220px;
  display: none;
  z-index: 40;
}

.phone-menu.open {
  display: block;
}

.phone-menu a {
  display: block;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--text);
  white-space: nowrap;
}

.phone-menu a:hover {
  background: #f2f5f9;
  color: var(--accent);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: 520px;
  background: #0b1119;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 12, 20, 0.7) 0%, rgba(7, 12, 20, 0.2) 55%, rgba(7, 12, 20, 0) 100%);
}

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

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-box {
  background: none;
  color: #fff;
  padding: 34px 0;
  max-width: 480px;
  border-radius: 0;
  box-shadow: none;
  animation: fadeUp 0.8s ease-out;
}

.hero-box h1 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  margin: 0 0 12px;
}

.hero-box p {
  margin: 0 0 24px;
  color: #d6deea;
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}

.hero-box .hero-trust {
  margin: 4px 0 0;
  font-size: 0.85rem;
  color: #c6d0de;
}

.hero-trust a {
  color: #c6d0de;
  font-weight: 600;
}

.hero-trust a:hover {
  color: #fff;
}

.trust-strip {
  background: linear-gradient(135deg, #eef2f7, #f9fbff);
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
  padding: 18px 0;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
  font-weight: 600;
  color: var(--muted);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #f4f7fb);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.trust-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: inset 0 0 0 6px #eef2f7;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-top: 36px;
}

.tile-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 260px;
  box-shadow: 0 20px 40px rgba(15, 22, 32, 0.12);
}

.tile-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile-cta {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(10, 15, 24, 0.2) 0%, rgba(10, 15, 24, 0.4) 100%);
}

.scrap-cta {
  margin-top: 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 12px 22px rgba(16, 24, 40, 0.08);
}

.scrap-cta h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.scrap-cta p {
  margin: 0;
  color: var(--muted);
  max-width: 520px;
}

.applications {
  display: grid;
  gap: 64px;
}

.app-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 52px;
  align-items: center;
}

.app-row.reverse .app-media {
  order: 2;
}

.app-row.reverse .app-text {
  order: 1;
}

.app-media img {
  border-radius: 10px;
  min-height: 240px;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.15);
}

.app-text h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
}

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

.section-title-left {
  text-align: left;
  margin-bottom: 12px;
}

.section-headline-left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.section-subtext-left {
  text-align: left;
  margin: 0;
}

.wholesale-section {
  background: #f5f7fb;
}

.wholesale-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 42px;
  align-items: center;
}

.feature-list {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.feature-list li + li {
  margin-top: 8px;
}

.wholesale-cta {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px;
  box-shadow: 0 14px 26px rgba(16, 24, 40, 0.06);
}

.wholesale-cta .btn {
  margin-top: 16px;
}


.compact-info .info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
  text-align: left;
  box-shadow: 0 12px 22px rgba(16, 24, 40, 0.06);
}

.info-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

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

.testimonials {
  background: #f9fafc;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 12px 22px rgba(16, 24, 40, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.review-text {
  margin: 0 0 18px;
  color: var(--text);
}

.review-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-name {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
}

.review-stars {
  color: #f5b301;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 32px auto 0;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-weight: 600;
  padding: 16px 18px;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 14px;
  font-size: 1.2rem;
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 18px;
}

.faq-answer p {
  margin: 0 0 16px;
  color: var(--muted);
}

.faq-item.open .faq-question::after {
  content: "–";
}


.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.support-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 12px 25px rgba(16, 24, 40, 0.06);
}

.support-card h4 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.support-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.support-card li + li {
  margin-top: 8px;
}

.footer {
  background: var(--dark);
  color: #d6deea;
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 0.8fr;
  gap: 32px;
}

.footer-logo {
  height: 36px;
  width: auto;
  display: block;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer h4 {
  margin-top: 0;
  margin-bottom: 18px;
  color: #fff;
  font-size: 1.05rem;
}

.footer p {
  margin: 0;
  line-height: 1.6;
}

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

.footer li {
  margin-bottom: 10px;
  color: #c6d0de;
  font-size: 0.95rem;
}

.footer a {
  color: #c6d0de;
  transition: color 0.2s;
}

.footer a:hover {
  color: #fff;
}

.social-links {
  display: flex;
  gap: 12px;
  margin: 18px 0 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #1c2636;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0b1119;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: #c6d0de;
  transition: fill 0.2s ease;
}

.social-link:hover {
  border-color: #fff;
  transform: translateY(-1px);
}

.social-link:hover svg {
  fill: #fff;
}

.hours-inline {
  white-space: nowrap;
  display: inline-block;
}

.contact-details {
  margin-top: 24px;
}

.contact-block {
  margin-bottom: 18px;
  color: var(--muted);
}

.contact-block strong {
  color: var(--text);
  font-weight: 600;
}

.footer-bottom {
  margin-top: 50px;
  border-top: 1px solid #1c2636;
  padding-top: 24px;
  font-size: 0.85rem;
  color: #98a4b7;
  text-align: center;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--border);
  box-shadow: 0 -10px 24px rgba(16, 24, 40, 0.12);
  z-index: 60;
  transition: transform 0.2s ease;
}

.mobile-phone {
  position: relative;
  flex: 1;
}

.mobile-phone-toggle {
  width: 100%;
}

.mobile-phone-menu {
  top: auto;
  bottom: 56px;
  left: 0;
  right: auto;
  width: max-content;
  max-width: calc(100vw - 32px);
  min-width: 100%;
  z-index: 70;
}

.mobile-cta .btn {
  flex: 1;
  padding: 14px 12px;
}

.mobile-cta .btn-outline {
  color: var(--text);
  border-color: var(--border);
}

.mobile-cta .btn-outline:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.mobile-cta.is-hidden {
  transform: translateY(120%);
  transition: transform 0.2s ease;
}

.page-hero {
  padding: 64px 0 48px;
  background: linear-gradient(120deg, rgba(15, 22, 32, 0.95), rgba(15, 22, 32, 0.75)),
    url("/assets/img/app-commercial.jpg") center/cover no-repeat;
  color: #fff;
}

.page-hero--plain {
  background: #fff;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.page-hero--plain p {
  color: var(--muted);
}

.page-hero--plain .page-hero-copy {
  color: #000;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.page-hero-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.page-hero-cta {
  flex-shrink: 0;
}

.page-hero-cta .btn {
  white-space: nowrap;
}

.page-hero--plain .page-hero-row {
  align-items: center;
}

.page-hero p {
  max-width: 640px;
  margin: 0;
  color: #d6deea;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 36px;
  justify-content: center;
}

.filter-pill {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}

.filter-pill.active {
  border-color: var(--accent);
  color: var(--accent);
}

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

.catalog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 12px 22px rgba(16, 24, 40, 0.08);
}

.catalog-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.catalog-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 16px;
}

.catalog-search {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
}

.catalog-search input {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.9rem;
  background: #fff;
  min-width: 260px;
}

.catalog-sort {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
}

.catalog-sort select {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.9rem;
  background: #fff;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.catalog-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-size: 0.95rem;
}

.catalog-table thead {
  background: #f1f5f9;
}

.catalog-table th,
.catalog-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.catalog-table th {
  font-weight: 700;
  color: #0f172a;
}

.catalog-table tbody tr:nth-child(even) {
  background: #f8fafc;
}

.catalog-table tbody tr:last-child td {
  border-bottom: none;
}

.catalog-card-body {
  padding: 18px;
}

.catalog-card h3 {
  margin: 0 0 6px;
}

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

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  align-items: start;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.locations {
  margin-top: 40px;
}

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

.location-meta {
  margin: 10px 0 0;
  font-weight: 600;
  font-size: 0.95rem;
}

.map-embed {
  margin-top: 14px;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #eef2f7;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

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

.map-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 12px 22px rgba(16, 24, 40, 0.06);
}

.map-card h3 {
  margin: 0 0 12px;
}

.value-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 12px 22px rgba(16, 24, 40, 0.06);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
}

.contact-grid.contact-grid-single {
  grid-template-columns: 1fr;
}

.form-field {
  margin-bottom: 16px;
}

.contact-action {
  margin-top: 18px;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

textarea.input {
  min-height: 140px;
  resize: vertical;
}

@media (max-width: 980px) {
  .section {
    padding: 70px 0;
  }

  .trust-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tile-grid {
    grid-template-columns: 1fr;
  }

  .app-row {
    grid-template-columns: 1fr;
  }

  .support-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .wholesale-grid {
    grid-template-columns: 1fr;
  }

  .compact-info .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .map-grid {
    grid-template-columns: 1fr;
  }

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

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 18px 30px rgba(15, 22, 32, 0.12);
    gap: 16px;
  }

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

  .nav-toggle {
    display: inline-flex;
  }

  .nav-actions {
    display: none;
  }

  .nav {
    flex: 1;
  }
}

@media (max-width: 640px) {
  :root {
    --section-pad: 64px;
  }

  body {
    padding-bottom: 76px;
  }

  .hero {
    min-height: 440px;
  }

  .hero-box {
    margin: 0 18px;
  }

  .scrap-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions {
    flex-direction: column;
  }

  .trust-strip-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .trust-item {
    justify-content: flex-start;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

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

  .compact-info .info-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .hours-inline {
    white-space: normal;
  }

  .mobile-cta {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media {
    display: none;
  }

  .hero {
    background: url("/assets/img/hero.jpg") center/cover no-repeat;
  }
}
