:root {
  --home-amber: var(--bmd-accent, #ff1717);
  --home-yellow: var(--bmd-accent-dark, #e50914);
  --home-text: var(--bmd-text, #111827);
  --home-muted: var(--bmd-muted, #4b5563);
  --home-border: var(--bmd-border, #e5e7eb);
  --home-card: var(--bmd-surface, #ffffff);
  --home-dark: var(--bmd-dark, #030712);
  --home-shadow-soft: 0 16px 45px rgba(15, 23, 42, 0.08);
  --home-shadow-strong: 0 26px 70px rgba(15, 23, 42, 0.14);
}

* {
  box-sizing: border-box;
  letter-spacing: 0 !important;
}

body.homepage {
  background: #f5f7fb;
  color: var(--home-text);
  font-family: var(
    --bmd-font-sans,
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif
  );
  line-height: 1.5;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
section.home-rental-showcase {
  margin-top: 30px;
}

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

.home-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.container-premium {
  margin-inline: auto;
  max-width: 1240px;
  padding-inline: 2rem;
  width: 100%;
}

.hero-origin {
  background:
    linear-gradient(
      90deg,
      rgba(3, 7, 18, 0.98) 0%,
      rgba(3, 7, 18, 0.9) 34%,
      rgba(3, 7, 18, 0.48) 62%,
      rgba(3, 7, 18, 0.18) 100%
    ),
    linear-gradient(
      180deg,
      rgba(255, 23, 23, 0.14) 0%,
      rgba(3, 7, 18, 0) 42%,
      rgba(3, 7, 18, 0.34) 100%
    ),
    var(--hero-bg-image);
  background-color: #050915;
  background-position: center, center, center;
  background-repeat: no-repeat;
  background-size: cover, cover, contain;
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  box-shadow: 0 32px 90px rgba(2, 6, 23, 0.24);
  isolation: isolate;
  margin-bottom: 0;
  min-height: clamp(560px, 62vh, 680px);
  overflow: hidden;
  position: relative;
}

.hero-grid-bg {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  inset: 0;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, transparent 70%);
  mask-image: linear-gradient(90deg, #000 0%, transparent 70%);
  opacity: 0.26;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero-slide-stage {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.hero-slide-stage::before {
  background:
    linear-gradient(
      90deg,
      rgba(3, 7, 18, 0.98) 0%,
      rgba(3, 7, 18, 0.9) 34%,
      rgba(3, 7, 18, 0.48) 62%,
      rgba(3, 7, 18, 0.18) 100%
    ),
    linear-gradient(
      180deg,
      rgba(255, 23, 23, 0.14) 0%,
      rgba(3, 7, 18, 0) 42%,
      rgba(3, 7, 18, 0.34) 100%
    );
  content: "";
  inset: 0;
  position: absolute;
  z-index: 2;
}

.hero-slide-image {
  background-color: #050915;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  inset: 0;
  position: absolute;
  transform: translateX(100%);
  transition:
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.72s;
  visibility: hidden;
  z-index: 1;
}

.hero-slide-image.is-active,
.hero-slide-image.is-entering-left,
.hero-slide-image.is-entering-right,
.hero-slide-image.is-exiting-left,
.hero-slide-image.is-exiting-right {
  visibility: visible;
}

.hero-slide-image.is-active {
  transform: translateX(0);
  transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide-image.is-entering-right {
  transform: translateX(100%);
  transition: none;
}

.hero-slide-image.is-entering-left {
  transform: translateX(-100%);
  transition: none;
}

.hero-slide-image.is-exiting-left {
  transform: translateX(-100%);
}

.hero-slide-image.is-exiting-right {
  transform: translateX(100%);
}

.hero-inner {
  padding-bottom: 3rem;
  padding-top: 96px;
  position: relative;
  z-index: 3;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.hero-copy {
  display: grid;
  gap: 1.15rem;
  max-width: 760px;
  position: relative;
}

.hero-pill {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 850;
  gap: 0.5rem;
  padding: 0.52rem 0.85rem;
  text-transform: uppercase;
  width: fit-content;
}

.hero-title {
  color: #fff;
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
  max-width: 760px;
  text-shadow: 0 16px 38px rgba(0, 0, 0, 0.34);
  text-wrap: balance;
}

.hero-title .gradient-text {
  background: none;
  color: #ff3b3b;
}

.hero-lede {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
  max-width: 32rem;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.25rem;
}

.hero-origin .bmd-btn.btn-lg {
  border-radius: 8px;
  font-size: 0.82rem !important;
  font-weight: 850;
  min-height: 42px;
  padding: 0.62rem 1.05rem;
}

.hero-banner-controls {
  align-items: center;
  display: flex;
  gap: 0.65rem;
  margin-top: -0.35rem;
}

.hero-banner-arrow,
.hero-banner-dot {
  border: 1px solid rgba(255, 23, 23, 0.2);
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    width 0.2s ease;
}

.hero-banner-arrow {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  padding: 0;
  width: 38px;
}

.hero-banner-arrow:hover,
.hero-banner-arrow:focus-visible {
  background: var(--bmd-accent, #ff1717);
  border-color: var(--bmd-accent, #ff1717);
  color: #fff;
  transform: translateY(-1px);
}

.hero-banner-arrow:focus-visible,
.hero-banner-dot:focus-visible {
  outline: 3px solid rgba(255, 23, 23, 0.18);
  outline-offset: 2px;
}

.hero-banner-dots {
  align-items: center;
  display: flex;
  gap: 0.45rem;
}

.hero-banner-dot {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  height: 8px;
  padding: 0;
  width: 24px;
}

.hero-banner-dot.is-active {
  background: var(--bmd-accent, #ff1717);
  border-color: var(--bmd-accent, #ff1717);
  width: 42px;
}

.hero-pill,
.hero-title,
.hero-lede {
  transition:
    opacity 0.16s ease,
    transform 0.2s ease;
}

.hero-origin.is-hero-slide-changing .hero-pill,
.hero-origin.is-hero-slide-changing .hero-title,
.hero-origin.is-hero-slide-changing .hero-lede {
  opacity: 0.6;
}

.hero-visual {
  display: block;
  height: 100%;
  min-height: 420px;
  position: relative;
}

.hero-visual::before {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  content: "";
  inset: 10% 2% 7% 16%;
  position: absolute;
}

.hero-visual::after {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  content: "";
  height: min(42vw, 420px);
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(42vw, 420px);
}

.hero-fade {
  background: linear-gradient(to top, #f5f7fb, transparent);
  bottom: 0;
  height: 8rem;
  left: 0;
  position: absolute;
  right: 0;
}

.mobile-feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(1rem, 3vw, 2rem);
}

.mobile-feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #fff;
  min-height: 112px;
  padding: 1rem;
}

.mobile-feature-card strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 900;
  margin-bottom: 0.35rem;
}

.mobile-feature-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  line-height: 1.55;
  margin: 0;
}

.lens-scroll {
  background: linear-gradient(180deg, #02040a 0%, #000 48%, #05070d 100%);
  isolation: isolate;
  min-height: min(68vh, 720px);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.lens-scroll::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 23, 23, 0.22),
    transparent
  );
  content: "";
  height: 1px;
  left: 0;
  opacity: 0.85;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 12;
}

.lens-sticky {
  background:
    linear-gradient(
      180deg,
      rgba(2, 6, 23, 0.14),
      transparent 22%,
      rgba(2, 6, 23, 0.24)
    ),
    #000;
  height: min(68vh, 720px);
  left: 0;
  overflow: hidden;
  position: relative;
  top: 0;
  width: 100%;
  z-index: 10;
}

.homepage-video {
  display: block;
  filter: contrast(1.04) saturate(1.06);
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.home-rental-showcase::before {
  background: linear-gradient(
    90deg,
    rgba(255, 23, 23, 0),
    rgba(255, 23, 23, 0.16),
    rgba(255, 23, 23, 0)
  );
  content: "";
  height: 1px;
  left: 50%;
  max-width: 1120px;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
}

.home-showcase-top,
.home-curated-head,
.home-section-title-row {
  align-items: flex-end;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
}

.home-showcase-top {
  border-bottom: 1px solid rgba(203, 213, 225, 0.68);
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
  padding-bottom: clamp(1.35rem, 3vw, 2rem);
  position: relative;
}

.home-showcase-top > div {
  max-width: 780px;
}

.home-showcase-top h2 {
  color: #07111f;
  font-size: clamp(2.3rem, 4.6vw, 2rem);
  font-weight: 900;
  line-height: 0.98;
  margin: 0.35rem 0 0;
  text-wrap: balance;
}

.home-showcase-top p,
.home-curated-head p,
.home-section-title-row p {
  color: #64748b;
  line-height: 1.7;
  margin: 0.5rem 0 0;
  max-width: 44rem;
}

.show-all-pill {
  align-items: center;
  background: #fff;
  border: 1px solid #dbe3ee;
  border-radius: 999px;
  color: #111827;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.875rem;
  font-weight: 800;
  min-height: 42px;
  padding: 0.65rem 1.15rem;
  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.show-all-pill:hover {
  background: #07111f;
  border-color: #07111f;
  color: #fff;
  transform: translateY(-1px);
}

.show-all-pill.dark {
  background: #07111f;
  color: #fff;
}

.show-all-pill.dark:hover {
  background: var(--home-amber);
  color: #fff;
}

.home-equipment-tiles {
  display: grid;
  gap: clamp(1rem, 2vw, 1.45rem);
  grid-auto-columns: minmax(138px, 1fr);
  grid-auto-flow: column;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.25rem 0.15rem 1rem;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.home-equipment-tiles::-webkit-scrollbar {
  display: none;
}

.home-equipment-tile {
  align-items: center;
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: 8px;
  box-shadow:
    0 16px 34px rgba(15, 23, 42, 0.055),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
  color: #111827;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 132px;
  min-width: 0;
  padding: 0.85rem 0.75rem 0.95rem;
  position: relative;
  scroll-snap-align: start;
  text-align: center;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.home-equipment-tile::before {
  background: linear-gradient(
    90deg,
    rgba(255, 23, 23, 0),
    rgba(255, 23, 23, 0.58),
    rgba(255, 23, 23, 0)
  );
  content: "";
  height: 2px;
  left: 1rem;
  opacity: 0;
  position: absolute;
  right: 1rem;
  top: 0;
  transition: opacity 0.2s ease;
}

.home-equipment-tile:hover {
  border-color: rgba(255, 23, 23, 0.32);
  box-shadow:
    0 22px 44px rgba(15, 23, 42, 0.1),
    0 0 0 4px rgba(255, 23, 23, 0.055);
  transform: translateY(-3px);
}

.home-equipment-tile:hover::before {
  opacity: 1;
}

.equipment-tile-icon {
  --tile-icon-accent: #ff1717;

  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: #111827;
  display: inline-flex;
  height: 70px;
  justify-content: center;
  margin-bottom: 0.7rem;
  overflow: visible;
  position: relative;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
  width: min(100%, 92px);
}

.home-equipment-tile:hover .equipment-tile-icon {
  box-shadow: none;
  transform: translateY(-3px) scale(1.04);
}

.equipment-tile-icon img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.equipment-tile-icon img.equipment-tile-fallback-icon {
  object-fit: contain;
  padding: 0;
}

.equipment-tile-icon img.equipment-tile-photo {
  filter: saturate(1.02) contrast(1.04);
}

.equipment-tile-icon i {
  font-size: 1.85rem;
  line-height: 1;
}

.equipment-tile-icon--lens {
  --tile-icon-accent: #ef4444;
}

.equipment-tile-icon--camera,
.equipment-tile-icon--video {
  --tile-icon-accent: #2563eb;
}

.equipment-tile-icon--audio {
  --tile-icon-accent: #7c3aed;
}

.equipment-tile-icon--light {
  --tile-icon-accent: #f59e0b;
}

.equipment-tile-icon--drone,
.equipment-tile-icon--support {
  --tile-icon-accent: #0f766e;
}

.equipment-tile-icon--tools {
  --tile-icon-accent: #db2777;
}

.home-equipment-tile strong {
  color: #555;
  font-size: clamp(0.88rem, 1.2vw, 1.08rem);
  font-weight: 800;
  line-height: 1.18;
  min-height: 1.25em;
}

.home-equipment-tile small {
  display: none;
}

.home-curated-row,
.home-brand-cloud {
  margin-top: clamp(3.5rem, 6vw, 5.5rem);
}

.home-brand-cloud {
  /* background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%); */
  background-size:
    76px 76px,
    auto;
  border-bottom: 1px solid #dfe7f1;
  border-top: 1px solid #dfe7f1;
  margin-inline: calc(50% - 50vw);
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 4rem) max(1rem, calc((100vw - 1240px) / 2 + 2rem));
  position: relative;
}

.home-brand-cloud::before {
  background: linear-gradient(90deg, var(--home-amber), rgba(255, 23, 23, 0));
  content: "";
  height: 2px;
  left: max(1rem, calc((100vw - 1240px) / 2 + 2rem));
  position: absolute;
  top: -1px;
  width: min(210px, 46vw);
}

.home-curated-row {
  border-top: 1px solid rgba(203, 213, 225, 0.74);
  padding-top: clamp(1.6rem, 3vw, 2.25rem);
  position: relative;
}

.home-curated-row::before {
  background: linear-gradient(90deg, var(--home-amber), rgba(255, 23, 23, 0));
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  top: -1px;
  width: min(150px, 40vw);
}

.home-curated-head {
  margin-bottom: 1rem;
}

.home-brand-cloud .home-section-title-row {
  border-bottom: 1px solid rgba(203, 213, 225, 0.72);
  padding-bottom: clamp(1rem, 2.4vw, 1.45rem);
}

.home-curated-head h3,
.home-section-title-row h3 {
  color: #07111f;
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  font-weight: 900;
  line-height: 1.05;
  margin: 0;
}

.home-brand-cloud .home-section-title-row h3 {
  font-size: clamp(1.85rem, 3vw, 2.55rem);
}

.home-brand-cloud .home-section-title-row p {
  max-width: 38rem;
}

.home-brand-bubbles {
  --home-brand-card-width: calc((100% - 3rem) / 4);

  display: grid;
  gap: 1rem;
  grid-auto-columns: var(--home-brand-card-width);
  grid-auto-flow: column;
  grid-template-rows: 1fr;
  margin-top: clamp(1.3rem, 3vw, 2rem);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.25rem 0.1rem 1.15rem;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.home-brand-bubbles::-webkit-scrollbar {
  display: none;
}

.home-brand-bubble {
  --brand-accent: #ff1717;
  --brand-accent-rgb: 255, 23, 23;

  align-items: center;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  border: 1px solid #dfe7f1;
  border-radius: 8px;
  box-shadow:
    0 14px 32px rgba(15, 23, 42, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.92) inset;
  color: #111827;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  justify-content: center;
  min-height: 166px;
  min-width: 0;
  overflow: hidden;
  padding: 0.9rem;
  position: relative;
  scroll-snap-align: start;
  text-align: center;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.home-brand-bubble::before {
  background: linear-gradient(90deg, var(--brand-accent), rgba(255, 23, 23, 0));
  content: "";
  height: 2px;
  left: 1rem;
  opacity: 0.86;
  position: absolute;
  right: 1rem;
  top: 0;
}

.home-brand-bubble:hover {
  border-color: rgba(var(--brand-accent-rgb), 0.38);
  box-shadow:
    0 22px 44px rgba(15, 23, 42, 0.11),
    0 0 0 4px rgba(var(--brand-accent-rgb), 0.09);
  transform: translateY(-4px);
}

.home-brand-visual {
  align-items: center;
  background:
    radial-gradient(
      circle at 50% 15%,
      rgba(var(--brand-accent-rgb), 0.09),
      transparent 52%
    ),
    #ffffff;
  border: 1px solid #e8eef6;
  border-radius: 8px;
  display: flex;
  height: 86px;
  justify-content: center;
  overflow: hidden;
  padding: 1rem;
  width: 100%;
}

.home-brand-visual img {
  height: 100%;
  object-fit: contain;
  transition: transform 0.2s ease;
  width: 100%;
}

.home-brand-bubble:hover .home-brand-visual img {
  transform: scale(1.04);
}

.home-brand-name {
  color: #07111f;
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  font-weight: 900;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.home-brand-bubble.tone-0 {
  --brand-accent: #ef4444;
  --brand-accent-rgb: 239, 68, 68;
}

.home-brand-bubble.tone-1 {
  --brand-accent: #2563eb;
  --brand-accent-rgb: 37, 99, 235;
}

.home-brand-bubble.tone-2 {
  --brand-accent: #0f766e;
  --brand-accent-rgb: 15, 118, 110;
}

.home-brand-bubble.tone-3 {
  --brand-accent: #f97316;
  --brand-accent-rgb: 249, 115, 22;
}

.home-brand-slider-buttons {
  display: inline-flex;
  flex: 0 0 auto;
}

.home-brand-cloud .category-slider-btn {
  background: #07111f;
  border-color: #07111f;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  color: #ffffff;
}

.home-brand-cloud .category-slider-btn:hover {
  background: var(--home-amber);
  border-color: var(--home-amber);
}

.home-brand-cloud .category-slider-btn:disabled,
.home-brand-cloud .category-slider-btn:disabled:hover {
  background: #ffffff;
  border-color: #dbe3ee;
  color: #94a3b8;
  opacity: 0.68;
}

.featured-section,
.category-products-section {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 2rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  margin: 1rem 0.5rem;
  overflow: hidden;
  padding: 3.5rem 0;
}

.featured-head {
  align-items: end;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.eyebrow {
  color: #ff1717;
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-head h2,
.process-heading h2 {
  color: #111827;
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0.25rem 0;
}

.featured-head p {
  color: #6b7280;
  font-weight: 500;
  margin: 0;
}

.category-products-intro {
  margin-bottom: 1rem;
}

.home-category-stack {
  display: grid;
  gap: 3rem;
}

.home-category-section {
  border-top: 1px solid #eef2f7;
  padding-top: 2.25rem;
}

.home-category-head {
  align-items: flex-end;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.home-category-head h3 {
  color: #111827;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0.25rem 0;
}

.home-category-head p {
  color: #6b7280;
  line-height: 1.65;
  margin: 0;
  max-width: 42rem;
}

.home-category-actions,
.category-slider-buttons {
  align-items: center;
  display: flex;
  gap: 0.75rem;
}

.home-category-actions {
  flex: 0 0 auto;
}

.category-slider-btn {
  align-items: center;
  background: #fff;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  color: #111827;
  cursor: pointer;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
  width: 42px;
}

.category-slider-btn:focus-visible {
  outline: 3px solid rgba(245, 158, 11, 0.3);
  outline-offset: 2px;
}

.category-slider-btn:hover {
  background: var(--home-amber);
  border-color: var(--home-amber);
  color: #fff;
  transform: translateY(-1px);
}

.category-slider-btn:disabled {
  cursor: default;
  opacity: 0.35;
  transform: none;
}

.category-slider-btn:disabled:hover {
  background: #fff;
  border-color: #e5e7eb;
  color: #111827;
}

.category-slider-btn i {
  font-size: 1rem;
  line-height: 1;
}

.home-category-section:not(.is-slider-ready) .category-slider-buttons,
[data-category-products]:not(.is-slider-ready) .category-slider-buttons,
[data-brand-cloud]:not(.is-slider-ready) .category-slider-buttons {
  display: none;
}

.home-product-slider {
  margin-inline: -0.75rem;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  padding: 0.55rem 0.75rem 1.1rem;
  scroll-padding-inline: 0.75rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.home-product-slider::-webkit-scrollbar {
  display: none;
}

.home-product-track {
  --home-product-card-width: clamp(278px, 22vw, 318px);

  align-items: stretch;
  display: grid;
  gap: 1rem;
  grid-auto-columns: var(--home-product-card-width);
  grid-auto-flow: column;
}

.text-link {
  align-items: center;
  color: #111827;
  display: inline-flex;
  font-weight: 600;
  gap: 0.5rem;
  text-decoration: none;
}

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

.product-card-home {
  background: #fff;
  border: 1px solid #dfe7f1;
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.065);
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 398px;
  isolation: isolate;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.product-card-home::after {
  background: linear-gradient(90deg, var(--home-amber), rgba(255, 23, 23, 0));
  content: "";
  height: 3px;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.25s ease;
  z-index: 4;
}

.home-product-track .product-card-home {
  scroll-snap-align: start;
}

.product-card-home:hover {
  border-color: rgba(255, 23, 23, 0.34);
  box-shadow: var(--home-shadow-strong);
  transform: translateY(-4px);
}

.product-card-home:hover::after {
  opacity: 1;
}

.product-image-wrap {
  background:
    linear-gradient(135deg, rgba(255, 23, 23, 0.08), transparent 48%),
    linear-gradient(180deg, #f9fbff, #eef3f8);
  border-bottom: 1px solid #e8eef6;
  flex: 0 0 222px;
  height: 222px;
  overflow: hidden;
  padding: 1.05rem;
  position: relative;
}

.product-image-wrap::before {
  background: radial-gradient(
    circle at 50% 46%,
    rgba(255, 255, 255, 0.96),
    rgba(255, 255, 255, 0.42) 42%,
    transparent 68%
  );
  border: 0;
  border-radius: 0;
  content: "";
  inset: 0;
  opacity: 0.86;
  position: absolute;
  transform: scale(0.96);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  z-index: 1;
}

.product-image-wrap img {
  height: 100%;
  object-fit: contain;
  position: relative;
  transition: transform 0.5s ease;
  width: 100%;
  z-index: 2;
}

.product-card-home:hover img {
  transform: scale(1.05);
}

.product-card-home:hover .product-image-wrap::before {
  opacity: 1;
  transform: scale(1);
}

.product-availability-pill,
.product-chip {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(203, 213, 225, 0.92);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  color: #334155;
  font-size: 0.66rem;
  font-weight: 800;
  left: 0.75rem;
  max-width: calc(100% - 1.5rem);
  overflow: hidden;
  padding: 0.24rem 0.58rem;
  position: absolute;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-transform: uppercase;
  top: 0.75rem;
  z-index: 3;
}

.product-availability-pill {
  align-items: center;
  color: #166534;
  display: inline-flex;
  gap: 0.35rem;
}

.product-availability-pill span {
  background: #22c55e;
  border-radius: 999px;
  height: 6px;
  width: 6px;
}

.product-chip.brand {
  bottom: 0.75rem;
  left: auto;
  right: 0.75rem;
  top: auto;
}

.product-body-home {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1rem 1rem 1.05rem;
}

.product-card-kicker {
  align-items: center;
  background: #f8fafc;
  border: 1px solid #eef2f7;
  border-radius: 6px;
  color: #64748b;
  display: flex;
  font-size: 0.67rem;
  font-weight: 800;
  gap: 0.5rem;
  justify-content: space-between;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  min-height: 1rem;
  padding: 0.36rem 0.48rem;
  text-transform: uppercase;
}

.product-card-kicker span {
  max-width: 58%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-card-kicker span:last-child {
  color: #ff1717;
  max-width: 40%;
}

.product-body-home h3 {
  color: #07111f;
  display: -webkit-box;
  font-size: 0.95rem;
  font-weight: 800;
  height: 2.6rem;
  line-height: 1.35;
  margin: 0 0 0.75rem;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-foot {
  align-items: center;
  border-top: 1px solid #eef2f7;
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.85rem;
}

.rate-label {
  color: #9ca3af;
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rate-price {
  color: #111827;
  font-size: 1.12rem;
  font-weight: 900;
}

.buy-now-pill {
  align-items: center;
  background: #07111f;
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.72rem;
  font-weight: 850;
  height: 34px;
  justify-content: center;
  padding: 0 0.9rem;
  transition:
    background 0.2s ease,
    color 0.2s ease;
  white-space: nowrap;
}

.product-card-home:hover .buy-now-pill {
  background: var(--home-amber);
  color: #fff;
}

.process-section {
  background:
    linear-gradient(
      90deg,
      rgba(3, 7, 18, 0.88) 0%,
      rgba(3, 7, 18, 0.72) 48%,
      rgba(3, 7, 18, 0.62) 100%
    ),
    url("../images/process-steps-bg.jpg"),
    url("../images/process-steps-bg.svg"),
    linear-gradient(180deg, #060b16, #020617);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0;
  box-shadow: none;
  color: #fff;
  margin: 0;
  overflow: hidden;
  padding: clamp(3rem, 5vw, 4.25rem) 0;
  position: relative;
}

.process-section::before {
  background:
    radial-gradient(circle at 0 0, rgba(255, 23, 23, 0.24), transparent 32%),
    radial-gradient(
      circle at 100% 100%,
      rgba(255, 255, 255, 0.08),
      transparent 32%
    );
  content: "";
  inset: 0;
  opacity: 0.15;
  position: absolute;
}

.process-grid {
  align-items: start;
  display: grid;
  gap: clamp(3rem, 7vw, 6rem);
  grid-template-columns: 1fr 2fr;
  position: relative;
  z-index: 1;
}

.process-heading {
  position: sticky;
  top: 96px;
}

.process-heading h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.process-heading p {
  color: #9ca3af;
  line-height: 1.7;
  margin: 0;
  max-width: 24rem;
}

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

.step-item {
  background: rgba(255, 255, 255, 0.045);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  position: relative;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.step-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 23, 23, 0.42);
  transform: translateY(-2px);
}

.step-dot {
  background: #ff1717;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  height: 26px;
  left: -13px;
  position: absolute;
  top: 0;
  width: 26px;
}

.step-icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0.5rem;
  color: #ff4d4d;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  margin-bottom: 0.75rem;
  width: 42px;
}

.step-item h3 {
  color: #f3f4f6;
  font-size: 1.125rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
}

.step-item p {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 0;
}

.why-section {
  background: linear-gradient(180deg, #f5f7fb 0%, #fff 100%);
  border-radius: 0;
  margin: 0;
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.section-head {
  margin: 0 auto 3rem;
  max-width: 42rem;
  text-align: center;
}

.section-head h2 {
  color: #07111f;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 1rem;
}

.section-head p {
  color: #4b5563;
  font-weight: 500;
  line-height: 1.7;
  margin: 0;
}

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

.why-card {
  background: #fff;
  border: 1px solid #e7edf5;
  border-radius: 8px;
  box-shadow: var(--home-shadow-soft);
  min-height: 100%;
  overflow: hidden;
  padding: 1.5rem;
  position: relative;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.why-card::before {
  background: linear-gradient(180deg, #ff1717, rgba(255, 23, 23, 0));
  content: "";
  height: 72px;
  left: 0;
  opacity: 0.85;
  position: absolute;
  top: 0;
  width: 3px;
}

.why-card:hover {
  border-color: rgba(255, 23, 23, 0.24);
  box-shadow: var(--home-shadow-strong);
  transform: translateY(-3px);
}

.why-icon {
  align-items: center;
  background: #fff1f1;
  border-radius: 0.5rem;
  color: #ff1717;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  margin-bottom: 1rem;
  width: 40px;
}

.why-card h3 {
  color: #111827;
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
}

.why-card p {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 0;
}

.reviews-section {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 8rem) 0;
}

.review-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.review-marquee::before,
.review-marquee::after {
  content: "";
  inset-block: 0;
  pointer-events: none;
  position: absolute;
  width: min(12vw, 140px);
  z-index: 2;
}

.review-marquee::before {
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
  left: 0;
}

.review-marquee::after {
  background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
  right: 0;
}

.review-track {
  animation: homeMarquee 45s linear infinite;
  display: flex;
  gap: 1rem;
  width: max-content;
}

.review-marquee:hover .review-track {
  animation-play-state: paused;
}

.review-card {
  background: linear-gradient(180deg, #fff, #f8fafc);
  border: 1px solid #e7edf5;
  border-radius: 0.5rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
  color: inherit;
  display: flex;
  flex-direction: column;
  max-width: 320px;
  padding: 1.5rem;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
  width: 320px;
}

.review-card:hover {
  border-color: rgba(255, 23, 23, 0.24);
  box-shadow: var(--home-shadow-soft);
  transform: translateY(-3px);
}

.review-head {
  align-items: center;
  display: flex;
  gap: 0.75rem;
}

.review-avatar {
  background: rgba(245, 158, 11, 0.1);
  border-radius: 999px;
  height: 48px;
  overflow: hidden;
  width: 48px;
}

.review-avatar img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.review-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.review-card small {
  color: #6b7280;
}

.review-card p {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 1rem 0 0;
}

.cta-origin {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    #05070d;
  background-size:
    80px 80px,
    auto;
  border-radius: 0;
  box-shadow: none;
  color: #fff;
  margin: 0;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 6rem) 0;
  position: relative;
  text-align: center;
}

.cta-origin::before {
  background: linear-gradient(135deg, rgba(255, 23, 23, 0.18), transparent 55%);
  content: "";
  inset: 0;
  opacity: 0.6;
  position: absolute;
}

.cta-origin::after {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.22),
    transparent
  );
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 2;
}

.cta-content {
  margin-inline: auto;
  max-width: 42rem;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
  margin: 0 0 1.5rem;
}

.cta-content p {
  color: #9ca3af;
  font-size: 1.125rem;
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

.seo-section {
  background: linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.seo-intro {
  background: #fff;
  border: 1px solid #e7edf5;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.045);
  max-width: 56rem;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.seo-intro h2 {
  color: #0f172a;
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0;
}

.seo-intro p {
  color: #475569;
  font-size: 1.125rem;
  line-height: 1.9;
  margin: 1.25rem 0 0;
}

.seo-layout {
  align-items: start;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) 320px;
  margin-top: 2rem;
}

.seo-articles {
  display: grid;
  gap: 2rem;
}

.seo-faq-column {
  align-content: start;
  display: grid;
  gap: 1.5rem;
}

.seo-faq-list {
  align-content: start;
  display: grid;
  gap: 1rem;
}

.seo-faq-item {
  background: #fff;
  border: 1px solid #e7edf5;
  border-radius: 8px;
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.seo-faq-item[open] {
  background: #fff;
  border-color: rgba(255, 23, 23, 0.28);
  box-shadow: var(--home-shadow-soft);
}

.seo-faq-item summary {
  color: #0f172a;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 850;
  list-style: none;
  padding: 1.25rem 4rem 1.25rem 1.5rem;
  position: relative;
}

.seo-faq-item summary::-webkit-details-marker {
  display: none;
}

.seo-faq-item summary::after {
  background: #fff1f1;
  border: 1px solid #ffc7c7;
  border-radius: 999px;
  color: #ff1717;
  content: "+";
  display: inline-flex;
  font-size: 1.25rem;
  height: 28px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
}

.seo-faq-item[open] summary::after {
  content: "-";
}

.seo-faq-answer {
  border-top: 1px solid #eef2f7;
  padding: 0 1.5rem 1.5rem;
}

.seo-faq-answer p {
  color: #475569;
  line-height: 1.85;
  margin: 1rem 0 0;
}

.seo-faq-points {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}

.seo-faq-points li {
  background: #f8fafc;
  border: 1px solid #eef2f7;
  border-radius: 0.75rem;
  color: #334155;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.75rem 1rem;
}

.seo-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 2rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.seo-card h3 {
  color: #0f172a;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 1.25rem;
}

.seo-card p {
  color: #475569;
  font-size: 1rem;
  line-height: 2;
  margin: 0 0 1rem;
}

.seo-list {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.seo-list li {
  background: #fff;
  border: 1px solid #fff;
  border-radius: 0.75rem;
  color: #334155;
  font-weight: 600;
  padding: 0.75rem 1rem;
}

.seo-sidebar {
  display: grid;
  gap: 1.5rem;
  align-content: start;
}

.side-dark,
.side-warm {
  border-radius: 8px;
  padding: 2rem;
}

.side-dark {
  background:
    linear-gradient(180deg, rgba(255, 23, 23, 0.1), transparent 38%), #020617;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.side-dark h3,
.side-warm h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0;
}

.side-dark p,
.side-warm p {
  font-size: 0.875rem;
  line-height: 1.8;
  margin: 0.75rem 0 0;
}

.side-dark p {
  color: #cbd5e1;
}

.side-link {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  display: block;
  margin-top: 0.75rem;
  padding: 1rem;
  text-decoration: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.side-link:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.side-link span {
  color: #cbd5e1;
  display: block;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-top: 0.25rem;
}

.side-warm {
  background: #fff1f1;
  border: 1px solid #ffc7c7;
}

.side-warm p {
  color: #334155;
}

.faq-block {
  background: #fff;
  border: 1px solid #e7edf5;
  border-radius: 8px;
  margin-top: 3rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.seo-inline-faq {
  margin-top: 0;
}

.faq-block h2 {
  color: #0f172a;
  font-size: 1.875rem;
  font-weight: 800;
  margin: 0 0 2rem;
}

.faq-block details {
  background: #f8fafc;
  border: 1px solid #e7edf5;
  border-radius: 8px;
  margin-bottom: 1rem;
  padding: 1rem 1.25rem;
}

.faq-block summary {
  color: #0f172a;
  cursor: pointer;
  font-weight: 700;
}

.faq-block p {
  color: #475569;
  line-height: 1.8;
  margin: 0.75rem 0 0;
}

.home-footer {
  background:
    radial-gradient(circle at 12% 0, rgba(255, 23, 23, 0.16), transparent 28%),
    rgba(7, 11, 20, 0.96);
  border-top: 1px solid #1f2937;
  color: #fff;
  overflow: hidden;
  padding: 6rem 0 3rem;
  position: relative;
}

body.homepage .home-footer .footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 4fr 2fr 2fr 4fr;
  margin-bottom: 5rem;
}

body.homepage .home-footer .footer-brand {
  align-items: center;
  color: #fff;
  display: inline-flex;
  text-decoration: none;
}

body.homepage .home-footer .footer-brand img {
  /* background: #000; */
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  height: 64px;
  object-fit: contain;
  width: 140px;
}

body.homepage .home-footer .footer-about {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.8;
  max-width: 20rem;
}

body.homepage .home-footer .footer-socials {
  display: flex;
  gap: 1rem;
  padding-top: 1rem;
}

body.homepage .home-footer .footer-socials a {
  align-items: center;
  background: #1f2937;
  border-radius: 999px;
  color: #9ca3af;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
  width: 40px;
}

body.homepage .home-footer .footer-socials a:hover {
  background: var(--home-amber);
  color: #fff;
  transform: scale(1.1);
}

.home-footer h3 {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 1.5rem;
  text-transform: uppercase;
}

body.homepage .home-footer .footer-list {
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

body.homepage .home-footer .footer-list a {
  color: #9ca3af;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

body.homepage .home-footer .footer-list a:hover {
  color: #ff3b3b;
}

body.homepage .home-footer .contact-panel {
  background: rgba(31, 41, 55, 0.5);
  border: 1px solid rgba(55, 65, 81, 0.5);
  border-radius: 1rem;
  list-style: none;
  margin: 0;
  padding: 1.5rem;
}

body.homepage .home-footer .contact-panel li {
  align-items: flex-start;
  color: #d1d5db;
  display: flex;
  gap: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

body.homepage .home-footer .contact-panel li:last-child {
  margin-bottom: 0;
}

body.homepage .home-footer .contact-panel svg {
  color: var(--home-amber);
  flex: 0 0 auto;
  height: 20px;
  margin-top: 0.2rem;
  width: 20px;
}

body.homepage .home-footer .footer-bottom {
  align-items: center;
  border-top: 1px solid #1f2937;
  color: #6b7280;
  display: flex;
  font-size: 0.75rem;
  font-weight: 600;
  gap: 1rem;
  justify-content: space-between;
  padding-top: 2rem;
}

body.homepage .home-footer .footer-bottom a {
  color: #6b7280;
  margin-left: 2rem;
  text-decoration: none;
}

body.homepage .home-footer .footer-bottom a:hover {
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes homeMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1023.98px) {
  body.homepage {
    padding-bottom: calc(74px + env(safe-area-inset-bottom, 0px));
  }

  .hero-visual {
    display: none;
  }

  .hero-origin {
    background-image:
      linear-gradient(
        90deg,
        rgba(3, 7, 18, 0.72) 0%,
        rgba(3, 7, 18, 0.54) 34%,
        rgba(3, 7, 18, 0.28) 62%,
        rgba(3, 7, 18, 0.12) 100%
      ),
      linear-gradient(
        180deg,
        rgba(255, 23, 23, 0.08) 0%,
        rgba(3, 7, 18, 0) 42%,
        rgba(3, 7, 18, 0.14) 100%
      ),
      var(--hero-mobile-bg-image, var(--hero-bg-image));
    background-position: center, center, center;
    background-size: cover, cover, cover;
    border-bottom-left-radius: 1.25rem;
    border-bottom-right-radius: 1.25rem;
    min-height: auto;
  }

  .hero-slide-stage::before {
    background:
      linear-gradient(
        180deg,
        rgba(3, 7, 18, 0.58) 0%,
        rgba(3, 7, 18, 0.42) 52%,
        rgba(3, 7, 18, 0.26) 100%
      ),
      linear-gradient(90deg, rgba(3, 7, 18, 0.56), rgba(3, 7, 18, 0.12));
  }

  .hero-slide-image {
    background-position: center;
    background-size: cover;
    opacity: 0.82;
  }

  .hero-inner {
    padding-bottom: 1.5rem;
    padding-top: 88px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .mobile-feature-grid {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 1.25rem;
  }

  .mobile-feature-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    box-shadow: none;
    min-height: 96px;
    padding: 1rem;
  }

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

  .home-showcase-top,
  .home-curated-head,
  .home-section-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-brand-cloud {
    padding-inline: 1.5rem;
  }

  .home-brand-cloud::before {
    left: 1.5rem;
  }

  .home-equipment-tiles {
    gap: 0.85rem;
    grid-auto-columns: minmax(132px, 1fr);
  }

  .home-brand-bubbles {
    --home-brand-card-width: min(46vw, 280px);

    grid-template-columns: none;
  }

  .home-brand-bubble {
    min-height: 164px;
  }

  .home-brand-visual {
    height: 80px;
  }

  .home-product-track {
    --home-product-card-width: clamp(238px, 44vw, 292px);
  }

  .process-grid,
  .seo-layout,
  body.homepage .home-footer .footer-grid {
    grid-template-columns: 1fr;
  }

  .process-heading {
    position: static;
  }

  .hero-title {
    font-size: clamp(2.15rem, 7vw, 3rem);
  }
}

@media (max-width: 767.98px) {
  .container-premium {
    padding-inline: 1rem;
  }

  .hero-inner {
    padding-bottom: 1rem;
    padding-top: 78px;
  }

  .hero-copy {
    gap: 0.9rem;
    max-width: 100%;
  }

  .hero-origin {
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
  }

  .hero-grid-bg {
    opacity: 0.14;
  }

  .hero-slide-image {
    background-image: var(--hero-mobile-bg-image, var(--hero-bg-image)) !important;
    background-position: center top;
    opacity: 0.78;
  }

  .hero-pill {
    font-size: 0.68rem;
    max-width: 100%;
    padding: 0.45rem 0.65rem;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.55rem);
    line-height: 1.02;
  }

  .hero-lede {
    font-size: 0.95rem;
  }

  .home-actions {
    gap: 0.55rem;
  }

  .hero-origin .bmd-btn.btn-lg {
    font-size: 0.74rem !important;
    min-height: 38px;
    padding: 0.52rem 0.8rem;
  }

  .hero-banner-controls {
    gap: 0.45rem;
  }

  .hero-banner-arrow {
    height: 36px;
    width: 36px;
  }

  .hero-banner-dot {
    width: 20px;
  }

  .hero-banner-dot.is-active {
    width: 36px;
  }

  .mobile-feature-grid {
    gap: 0.65rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1rem;
  }

  .mobile-feature-card {
    min-height: 82px;
    padding: 0.75rem;
  }

  .mobile-feature-card strong {
    font-size: 0.82rem;
    margin-bottom: 0.25rem;
  }

  .mobile-feature-card p {
    font-size: 0.72rem;
    line-height: 1.45;
  }

  .product-grid-home,
  .why-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .featured-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-rental-showcase {
    padding: 3rem 0;
  }

  .home-brand-cloud {
    margin-top: 3rem;
    padding: 2.2rem 1rem;
  }

  .home-brand-cloud::before {
    left: 1rem;
  }

  .home-equipment-tiles {
    gap: 0.75rem;
    grid-auto-columns: minmax(116px, 36vw);
    margin-bottom: 2.5rem;
    margin-inline: -1rem;
    padding-inline: 1rem;
  }

  .home-equipment-tile {
    min-height: 122px;
    padding: 0.75rem 0.55rem 0.85rem;
  }

  .equipment-tile-icon {
    height: 62px;
    width: 82px;
  }

  .home-equipment-tile strong {
    font-size: 0.78rem;
  }

  .home-brand-bubbles {
    --home-brand-card-width: min(82vw, 280px);

    gap: 0.75rem;
    grid-template-columns: none;
  }

  .home-brand-bubble {
    gap: 0.75rem;
    min-height: 158px;
    padding: 0.85rem;
  }

  .home-brand-visual {
    height: 76px;
    padding: 0.85rem;
  }

  .home-brand-name {
    font-size: 0.92rem;
  }

  .home-category-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-category-actions {
    justify-content: space-between;
    width: 100%;
  }

  .home-category-actions .text-link {
    font-size: 0.875rem;
  }

  .home-product-track {
    --home-product-card-width: min(86vw, 312px);
    gap: 1rem;
  }

  .product-card-home {
    height: 378px;
  }

  .product-image-wrap {
    flex-basis: 188px;
    height: 188px;
  }

  body.homepage .home-footer .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  body.homepage .home-footer .footer-bottom a {
    margin-left: 0;
    margin-right: 1.25rem;
  }
}
