:root {
  --color-bg: #f3f6f8;
  --color-surface: #ffffff;
  --color-dark: #111827;
  --color-navy: #172033;
  --color-steel: #d7e0e8;
  --color-border: #c5d0da;
  --color-text: #1f2937;
  --color-muted: #64748b;
  --color-accent: #baf2ff;
  --color-accent-dark: #baf2ff;
  --color-metal: #b7894f;
  --shadow-soft: 0 18px 50px rgba(17, 24, 39, 0.12);
  --shadow-card: 0 12px 28px rgba(17, 24, 39, 0.10);
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  color: var(--color-dark);
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 22px;
  color: #fff;
  font-size: 4.35rem;
}

h2 {
  margin-bottom: 16px;
  font-size: 3rem;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
}

p {
  color: var(--color-muted);
}

.container {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
}

.section {
  padding: 86px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading.center,
.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--color-metal);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--color-dark);
  color: #fff;
  transition: transform 180ms ease;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  background: var(--color-accent);
  color: var(--color-dark);
  box-shadow: 0 14px 28px rgba(186, 242, 255, 0.22);
}

.btn-primary:hover {
  background: var(--color-accent-dark);
}

.btn-secondary {
  border-color: var(--color-border);
  background: transparent;
  color: var(--color-dark);
}

.btn-secondary:hover {
  border-color: var(--color-accent-dark);
  background: rgba(186, 242, 255, 0.08);
}

.btn-on-dark {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.btn-on-dark:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-sm {
  min-height: 42px;
  padding: 11px 16px;
  font-size: 0.84rem;
}

.button-row,
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.center-buttons {
  justify-content: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(197, 208, 218, 0.38);
  background: rgba(23, 32, 51, 0.96);
  color: #fff;
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 8px);
  gap: 3px;
  width: 36px;
  height: 34px;
  padding: 4px;
  border: 1px solid rgba(186, 242, 255, 0.38);
  border-radius: 6px;
}

.brand-mark span {
  display: block;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--color-steel), var(--color-accent));
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 800;
}

.desktop-nav a {
  position: relative;
  padding: 27px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--color-accent);
  content: "";
  transition: transform 180ms ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone-link {
  color: #fff;
  font-size: 0.94rem;
  font-weight: 900;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero,
.product-hero {
  position: relative;
  min-height: 650px;
  height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 110px 0 76px;
}

.product-hero {
  min-height: 580px;
  height: auto;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  border: 0;
  border-radius: 0;
}

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

.hero-overlay {
  z-index: 1;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.86) 0%, rgba(23, 32, 51, 0.65) 48%, rgba(23, 32, 51, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 0;
}

.hero-content .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.product-hero h1 {
  max-width: 1020px;
  font-size: clamp(2.35rem, 4.4vw, 3.45rem);
}

.hero-text {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1000px;
  gap: 12px;
  margin-top: 48px;
}

.hero-badges span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.trust-strip {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 24px 0;
}

.trust-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}

.trust-item > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: var(--color-bg);
  color: var(--color-metal);
  font-size: 0.82rem;
  font-weight: 900;
}

.trust-item h2 {
  margin-bottom: 0;
  font-size: 0.98rem;
  line-height: 1.35;
}

.trust-item p {
  margin-bottom: 0;
  font-size: 0.86rem;
  line-height: 1.4;
}

.categories,
.selection-guide,
.faq {
  background: var(--color-bg);
}

.application,
.advantages,
.products-section,
.category-intro {
  background: var(--color-surface);
}

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

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

.feature-grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.category-card,
.product-card,
.feature-card,
.intro-panel,
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.06);
}

.category-card,
.product-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.category-card:hover,
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.card-image,
.product-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid var(--color-border);
}

.card-body,
.product-card-body {
  padding: 23px;
}

.card-body p,
.product-card-body p,
.feature-card p,
.guide-card p {
  margin-bottom: 18px;
  font-size: 0.94rem;
}

.product-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(183, 137, 79, 0.14);
  color: var(--color-metal);
  font-size: 0.76rem;
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--color-dark);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 900;
}

.text-link::after {
  margin-left: 9px;
  content: ">";
}

.feature-card {
  padding: 24px;
}

.feature-card h3::before {
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: 16px;
  background: var(--color-accent);
  content: "";
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
  gap: 46px;
  align-items: start;
}

.intro-panel {
  padding: 28px;
  background: linear-gradient(180deg, #fff, #f7fafc);
}

.process {
  background: var(--color-navy);
  color: #fff;
}

.process h2,
.process strong {
  color: #fff;
}

.process p {
  color: rgba(255, 255, 255, 0.72);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 48px;
  align-items: center;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.process-list li {
  min-height: 220px;
  padding: 22px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.process-list li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.process-list span {
  display: block;
  margin-bottom: 22px;
  color: var(--color-accent);
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
}

.process-list p {
  margin: 10px 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
}

.process-images {
  display: grid;
  gap: 16px;
}

.process-images img {
  width: 100%;
  height: 270px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.gallery {
  background: var(--color-bg);
}

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

.gallery-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.gallery.is-collapsible:not(.is-expanded) .gallery-card:nth-child(n+7) {
  display: none;
}

.gallery.is-expanded .single-action {
  display: none;
}

.gallery-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 24%, rgba(17, 24, 39, 0.82) 100%);
  content: "";
}

.gallery-caption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1;
}

.gallery-caption h3 {
  margin-bottom: 0;
  color: #fff;
  font-size: 1.08rem;
}

.single-action {
  margin-top: 30px;
}

.quote-section {
  background: var(--color-surface);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: start;
}

.form-side-image {
  width: 100%;
  height: 235px;
  margin-top: 28px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.offer-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 4px solid var(--color-accent);
  border-radius: 6px;
  background: var(--color-bg);
  color: var(--color-dark);
  font-weight: 800;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
  box-shadow: var(--shadow-soft);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--color-dark);
  font-size: 0.88rem;
  font-weight: 900;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: #fff;
  color: var(--color-text);
  padding: 13px 14px;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.quote-form textarea {
  min-height: 132px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--color-accent-dark);
  box-shadow: 0 0 0 4px rgba(186, 242, 255, 0.16);
}

.quote-form .full {
  grid-column: 1 / -1;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: 56px;
  align-items: start;
}

.accordion {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 66px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: var(--color-dark);
  text-align: left;
  font-weight: 900;
}

.faq-icon {
  position: relative;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border: 1px solid var(--color-accent-dark);
  border-radius: 50%;
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  transform: translate(-50%, -50%);
  background: var(--color-accent-dark);
  content: "";
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity 160ms ease;
}

.faq-item.is-open .faq-icon::after {
  opacity: 0;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-item.is-open .faq-panel {
  max-height: 760px;
}

.faq-panel p {
  margin: 0;
  padding: 0 20px 20px;
}

.final-cta {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.final-cta-image,
.final-cta-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
}

.final-cta-image {
  object-fit: cover;
}

.final-cta-overlay {
  z-index: 1;
  background: rgba(17, 24, 39, 0.74);
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 92px 0;
}

.final-cta h1,
.final-cta h2 {
  color: #fff;
}

.final-cta p {
  max-width: 680px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.thank-you-hero {
  min-height: 100vh;
}

.site-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.78);
  padding: 58px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.85fr 1.15fr;
  gap: 42px;
}

.footer-brand .brand-copy strong,
.site-footer h2 {
  color: #fff;
}

.footer-brand .brand-copy small,
.site-footer p {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer h2 {
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  transition: color 160ms ease;
}

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

.footer-grid p {
  margin-bottom: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.84rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

.mobile-bottom-bar {
  display: none;
}

body.reveal-ready .section-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

body.reveal-ready .section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1160px) {
  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .desktop-nav {
    gap: 14px;
    font-size: 0.8rem;
  }

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

  .hero-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 700px;
  }

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

  .process-layout,
  .quote-layout,
  .faq-layout,
  .intro-layout {
    grid-template-columns: 1fr;
  }

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

  .process-list li {
    border: 1px solid rgba(255, 255, 255, 0.18);
  }

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

@media (max-width: 940px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(100% - 32px, 1200px);
  }

  .header-inner {
    gap: 12px;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-copy strong,
  .brand-copy small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .mobile-menu {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    z-index: 99;
    display: grid;
    gap: 0;
    max-height: calc(100vh - var(--header-height));
    padding: 12px 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--color-navy);
    box-shadow: 0 24px 44px rgba(17, 24, 39, 0.2);
    transform: translateY(-120%);
    transition: transform 220ms ease;
  }

  .mobile-menu.is-open {
    transform: translateY(0);
  }

  .mobile-menu a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-weight: 900;
  }

  .mobile-menu .btn {
    margin-top: 12px;
    border-bottom: 0;
  }

  .hero,
  .product-hero {
    min-height: 620px;
    height: auto;
    align-items: flex-end;
    padding: 120px 0 46px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.88) 0%, rgba(23, 32, 51, 0.72) 100%);
  }

  .hero-content {
    padding-top: 0;
    padding-bottom: 0;
  }

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

  .gallery-card {
    min-height: 330px;
  }

  .mobile-bottom-bar {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 120;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: var(--color-dark);
    box-shadow: 0 16px 34px rgba(17, 24, 39, 0.26);
  }

  .mobile-bottom-bar a {
    min-height: 52px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 0.84rem;
    font-weight: 900;
  }

  .mobile-bottom-bar a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

  body {
    padding-bottom: 76px;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-text {
    font-size: 1.02rem;
  }

  .section {
    padding: 64px 0;
  }

  .brand-copy strong {
    font-size: 1.14rem;
  }

  .brand-copy small {
    display: none;
  }

  .hero-buttons,
  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-buttons .btn,
  .button-row .btn {
    width: 100%;
  }

  .hero-badges,
  .trust-grid,
  .category-grid,
  .category-grid.three,
  .product-grid,
  .product-grid.three,
  .feature-grid,
  .feature-grid.five,
  .quote-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-badges span {
    min-height: 48px;
  }

  .quote-form {
    padding: 20px;
  }

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

  .process-list li {
    min-height: auto;
  }

  .process-list span {
    margin-bottom: 12px;
  }

  .footer-bottom,
  .footer-bottom div {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 24px, 1200px);
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .brand-copy small {
    display: none;
  }

  h1 {
    font-size: 2.3rem;
  }

  .product-hero h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero,
  .product-hero {
    min-height: 620px;
  }

  .gallery-card {
    min-height: 300px;
  }
}

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