/* ═══════════════════════════════════════════
   CSS RESET & VARIABLES
   ═══════════════════════════════════════════ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* H&M Removals Brand - Deep Purple */
  --hmr-purple: #4a1a6b;
  --hmr-purple-dark: #36124f;
  --hmr-purple-light: #6b3a8a;
  --hmr-purple-faint: rgba(74, 26, 107, 0.08);

  /* Simply Store Brand - Orange */
  --ss-orange: #e8772a;
  --ss-orange-dark: #c9601a;
  --ss-orange-light: #f0923f;
  --ss-orange-faint: rgba(232, 119, 42, 0.08);

  /* Light Theme */
  --white: #ffffff;
  --off-white: #f7f7f9;
  --light-grey: #eeeff2;
  --mid-grey: #d8d9de;
  --dark-section: #1e1e2c;
  --dark-card: #272738;
  --text-dark: #1a1a2e;
  --text-body: #4a4a5a;
  --text-muted: #7a7a8a;
  --text-light-on-dark: #e8e8ec;
  --text-muted-on-dark: #9999aa;
  --border-light: rgba(0, 0, 0, 0.06);
  --border-dark: rgba(255, 255, 255, 0.06);

  /* Shared */
  --font: "Urbanist", sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 6px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-weight: 300;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav.scrolled .nav-links a {
  color: var(--text-dark);
}
.nav.scrolled .nav-links a:hover {
  color: var(--hmr-purple);
}
.nav.scrolled .nav-links a::after {
  background: var(--hmr-purple);
}
.nav.scrolled .logo-hm {
  color: var(--hmr-purple);
}
.nav.scrolled .logo-text {
  color: var(--text-dark);
}
.nav.scrolled .nav-toggle span {
  background: var(--text-dark);
}

.nav.scrolled .dropdown-menu {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}
.nav.scrolled .dropdown-menu a {
  color: var(--text-body);
}
.nav.scrolled .dropdown-menu a:hover {
  color: var(--hmr-purple);
  background: var(--hmr-purple-faint);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo .logo-placeholder {
  height: 52px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo .logo-placeholder img {
  height: 75px;
  width: auto;
}

.logo-hm {
  color: var(--white);
  font-weight: 700;
  font-size: 28px;
  transition: var(--transition);
}
.logo-text {
  color: var(--white);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 1px;
  transition: var(--transition);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  position: relative;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
  padding: 8px 0;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Dropdown */
.nav-links li.has-dropdown {
  cursor: pointer;
}
.nav-links li.has-dropdown > a {
  padding-right: 4px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -16px;
  background: rgba(30, 30, 44, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 12px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.nav-links li.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 24px;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: none;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}

.dropdown-menu a:hover {
  color: var(--white);
  background: rgba(74, 26, 107, 0.15);
}
.dropdown-menu a::after {
  display: none;
}

/* Nav arrow icon */
.nav-arrow {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-left: 4px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}
.has-dropdown:hover .nav-arrow {
  transform: rotate(180deg);
}

/* ─── Mega Menu ─── */
/* Anchor the mega-menu to .nav-links so it spans Home → Contact (the link row) */
.nav-links li.has-mega {
  position: static;
}
.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  transform: translateY(8px);
  background: rgba(30, 30, 44, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 32px 36px;
  display: flex;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.nav-links li.has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav.scrolled .mega-menu {
  background: rgba(30, 30, 44, 0.98);
  border-color: rgba(255, 255, 255, 0.06);
}
/* Keep mega-menu text light when nav is sticky — */
/* `.nav.scrolled .nav-links a` otherwise cascades dark text */
/* into the mega-menu (which stays dark). */
.nav.scrolled .mega-group a,
.nav.scrolled .mega-group a:hover {
  color: var(--white);
}
.nav.scrolled .mega-heading {
  color: rgba(255, 255, 255, 0.55);
}
.mega-group {
  flex: 1;
  min-width: 140px;
  padding: 0 12px;
}
.mega-group + .mega-group {
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}
.mega-heading {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hmr-purple-light);
  padding: 0 12px 10px;
  margin-bottom: 4px;
}
.mega-group a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 12px;
  font-size: 13px;
  letter-spacing: 0.3px;
  text-transform: none;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.mega-group a:hover {
  color: var(--white);
  background: rgba(74, 26, 107, 0.15);
}
.mega-group a::after {
  display: none;
}
.mega-link-arrow {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.mega-group a:hover .mega-link-arrow {
  opacity: 0.6;
  transform: translateX(0);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  /* 16:9 aspect-ratio cover — always fills the hero on any screen ratio */
  width: max(177.78vh, 100vw); /* 177.78vh = 100vh * 16/9 */
  height: max(56.25vw, 100vh); /* 56.25vw  = 100vw * 9/16 */
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 46, 0.45) 0%,
    rgba(26, 26, 46, 0.4) 40%,
    rgba(26, 26, 46, 0.75) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.3s;
}

.hero-tag::before {
  display: none;
}

.hero-title {
  font-size: clamp(42px, 5.5vw, 80px);
  font-weight: 200;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.5s;
}

.hero-title strong {
  font-weight: 600;
  color: var(--white);
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 auto 40px;
  text-wrap: pretty;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.7s;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.9s;
}

/* Buttons */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--text-dark);
}
.btn-outline.purple-border {
  border-color: var(--hmr-purple);
  color: var(--hmr-purple);
}
.btn-outline.purple-border:hover {
  background: var(--hmr-purple);
  border-color: var(--hmr-purple);
  color: var(--white);
}
.btn-outline.orange-border {
  border-color: var(--ss-orange);
  color: var(--ss-orange);
}
.btn-outline.orange-border:hover {
  background: var(--ss-orange);
  border-color: var(--ss-orange);
  color: var(--white);
}
.btn-outline.white-border {
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline.white-border:hover {
  background: var(--white);
  color: var(--hmr-purple);
  border-color: var(--white);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: fadeUp 0.8s ease forwards 1.1s;
  opacity: 0;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 11px;
  position: relative;
}

.scroll-mouse-dot {
  width: 3px;
  height: 6px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0% {
    opacity: 1;
    top: 8px;
  }
  50% {
    opacity: 0.3;
    top: 20px;
  }
  100% {
    opacity: 1;
    top: 8px;
  }
}

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

/* ═══════════════════════════════════════════
   STATS BAR (White)
   ═══════════════════════════════════════════ */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 52px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--border-light);
}

.stat-number {
  font-size: 48px;
  font-weight: 200;
  color: var(--text-dark);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span {
  color: var(--text-muted);
}
.stat-label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   SECTION COMMON
   ═══════════════════════════════════════════ */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--hmr-purple);
  margin-bottom: 20px;
}
.section-tag::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--hmr-purple);
}
.section-tag.orange {
  color: var(--ss-orange);
}
.section-tag.orange::before {
  background: var(--ss-orange);
}

.section-title {
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 200;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.section-title strong {
  font-weight: 600;
}

.section-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
  text-wrap: pretty;
  max-width: 560px;
}

/* ═══════════════════════════════════════════
   SERVICES (Off-white BG)
   ═══════════════════════════════════════════ */
.services {
  padding: 120px 0;
  background: var(--off-white);
}
.services-header {
  text-align: center;
  margin-bottom: 72px;
}
.services-header .section-sub {
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 48px 36px 44px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--hmr-purple),
    var(--hmr-purple-light)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover {
  border-color: rgba(74, 26, 107, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--hmr-purple-faint);
  border: 1px solid rgba(74, 26, 107, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.service-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--hmr-purple);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.service-card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hmr-purple);
  transition: var(--transition);
}
.service-link:hover {
  gap: 14px;
}
.service-link svg {
  width: 16px;
  height: 16px;
  stroke: var(--hmr-purple);
  fill: none;
  stroke-width: 2;
}

/* ═══════════════════════════════════════════
   ABOUT (White BG)
   ═══════════════════════════════════════════ */
.about {
  padding: 120px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text .section-sub {
  margin-bottom: 40px;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 8px;
  background: var(--hmr-purple-faint);
  border: 1px solid rgba(74, 26, 107, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.about-feature-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--hmr-purple);
  fill: none;
  stroke-width: 1.5;
}
.about-feature h4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.about-feature p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
}

.about-visual {
  position: relative;
}

.about-image-main {
  width: 100%;
  height: 480px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(74, 26, 107, 0.08),
    var(--off-white)
  );
  border: 1px solid var(--border-light);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 240px;
  height: 140px;
  border-radius: 12px;
  background: var(--hmr-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 22px;
  box-shadow: 0 10px 40px rgba(74, 26, 107, 0.35);
}
.about-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ═══════════════════════════════════════════
   SIMPLY STORE (Off-white BG)
   ═══════════════════════════════════════════ */
.simply-store {
  padding: 120px 0;
  background: var(--off-white);
  position: relative;
}
.ss-header {
  text-align: center;
  margin-bottom: 72px;
}
.ss-header .section-sub {
  margin: 0 auto;
}

.ss-brand-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 20px;
  border-radius: 50px;
  background: var(--ss-orange-faint);
  border: 1px solid rgba(232, 119, 42, 0.15);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ss-orange);
  margin-bottom: 24px;
}

/* Simply Store Timeline */
.ss-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 20px;
}

.ss-timeline-track {
  position: absolute;
  top: 25px;
  left: 60px;
  right: 60px;
  height: 2px;
  z-index: 0;
}

.ss-timeline-line {
  width: 100%;
  height: 100%;
  background: var(--mid-grey);
}

.ss-timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--ss-orange);
  transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ss-tl-step {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 30%;
  cursor: pointer;
}

.ss-tl-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--mid-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 18px;
  font-weight: 200;
  color: var(--text-muted);
  transition: var(--transition);
}

.ss-tl-step.active .ss-tl-num {
  border-color: var(--ss-orange);
  background: var(--ss-orange);
  color: var(--white);
}

.ss-tl-step.reached .ss-tl-num {
  border-color: var(--ss-orange);
  color: var(--ss-orange);
}

.ss-tl-step h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.ss-tl-step p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
}
.ss-tl-step .service-link {
  color: var(--ss-orange);
  margin-top: 20px;
}
.ss-tl-step .service-link svg {
  stroke: var(--ss-orange);
}
.ss-cta-row {
  text-align: center;
  margin-top: 56px;
}

/* Simply Store Features */
.ss-features {
  padding: 120px 0;
  background: var(--white);
}

.ss-features-header {
  text-align: center;
  margin-bottom: 72px;
}

.ss-features-header .section-sub {
  margin: 0 auto;
}

.ss-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ss-feature-card {
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 48px 36px 44px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ss-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--ss-orange), var(--ss-orange-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.ss-feature-card:hover::before {
  transform: scaleX(1);
}
.ss-feature-card:hover {
  border-color: rgba(232, 119, 42, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.ss-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--ss-orange-faint);
  border: 1px solid rgba(232, 119, 42, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.ss-feature-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--ss-orange);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ss-feature-card h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.ss-feature-card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   TESTIMONIALS (White BG)
   ═══════════════════════════════════════════ */
.testimonials {
  padding: 120px 0;
  background: var(--white);
  overflow: hidden;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 72px;
}
.testimonials-header .section-sub {
  margin: 0 auto;
}

.carousel-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.carousel-track {
  overflow: hidden;
}
.carousel-slides {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.carousel-slide {
  min-width: 100%;
  padding: 0 20px;
}

.testimonial-card {
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 52px 48px;
  text-align: center;
  position: relative;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 24px;
  left: 48px;
  font-size: 80px;
  font-weight: 200;
  color: rgba(74, 26, 107, 0.1);
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 32px;
  font-style: italic;
}
.testimonial-author {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
}
.testimonial-role {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 1px;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 44px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-dark);
}
.carousel-btn:hover {
  border-color: var(--hmr-purple);
  background: var(--hmr-purple-faint);
  color: var(--hmr-purple);
}
.carousel-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mid-grey);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.carousel-dot.active {
  background: var(--hmr-purple);
  width: 28px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════
   LOCATIONS (Dark section — distinct from footer)
   ═══════════════════════════════════════════ */
.locations {
  padding: 120px 0 140px;
  background: var(--dark-section);
}
.locations-header {
  text-align: center;
  margin-bottom: 72px;
}
.locations-header .section-tag {
  color: var(--ss-orange);
}
.locations-header .section-tag::before {
  background: var(--ss-orange);
}
.locations-header .section-title {
  color: var(--text-light-on-dark);
}
.locations-header .section-sub {
  margin: 0 auto;
  color: var(--text-muted-on-dark);
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.location-card {
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  padding: 44px 36px;
  transition: var(--transition);
}
.location-card:hover {
  border-color: rgba(74, 26, 107, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.location-card h3 {
  font-size: 22px;
  font-weight: 500;
  color: var(--text-light-on-dark);
  margin-bottom: 20px;
}
.location-card .loc-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.location-card .loc-detail svg {
  width: 16px;
  height: 16px;
  stroke: var(--ss-orange);
  fill: none;
  stroke-width: 1.5;
  min-width: 16px;
  margin-top: 2px;
}
.location-card .loc-detail span {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted-on-dark);
  line-height: 1.5;
}
.location-card .loc-detail a {
  color: var(--text-muted-on-dark);
  transition: var(--transition);
}
.location-card .loc-detail a:hover {
  color: var(--text-light-on-dark);
}

.location-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted-on-dark);
  transition: var(--transition);
}
.location-cta:hover {
  background: var(--ss-orange);
  border-color: var(--ss-orange);
  color: var(--white);
}

/* ═══════════════════════════════════════════
   FOOTER (Distinctly darker than locations)
   ═══════════════════════════════════════════ */
.footer {
  background: #111119;
  border-top: 3px solid var(--hmr-purple);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo-placeholder {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.footer-brand .logo-placeholder img {
  height: 95px;
  width: auto;
}
.footer-brand .logo-hm {
  color: var(--ss-orange);
  font-weight: 700;
  font-size: 24px;
}
.footer-brand .logo-text {
  color: var(--text-light-on-dark);
  font-weight: 500;
  font-size: 16px;
}
.footer-brand p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted-on-dark);
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--hmr-purple);
  background: rgba(74, 26, 107, 0.15);
}
.footer-social svg {
  width: 16px;
  height: 16px;
  fill: var(--text-muted-on-dark);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light-on-dark);
  margin-bottom: 24px;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 12px;
}
.footer-col a {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted-on-dark);
  transition: var(--transition);
}
.footer-col a:hover {
  color: var(--text-light-on-dark);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted-on-dark);
}
.footer-bottom a {
  color: var(--ss-orange);
  transition: var(--transition);
}
.footer-bottom a:hover {
  color: var(--ss-orange-light);
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
    margin: 0 auto;
  }
  .locations-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .ss-features-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .ss-timeline {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 0;
  }
  .ss-timeline-track {
    display: none;
  }
  .ss-tl-step {
    width: 100%;
    max-width: 400px;
  }
  .ss-tl-num {
    border-color: var(--ss-orange);
    color: var(--ss-orange);
  }
  .ss-tl-step.active .ss-tl-num {
    background: var(--ss-orange);
    color: var(--white);
  }
  .estimator-options {
    grid-template-columns: repeat(3, 1fr);
  }
  .estimator-result {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .stat-item:nth-child(2)::after {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .container {
    padding: 0 24px;
  }
  .nav-inner {
    padding: 0 24px;
  }
  .hero-content {
    padding: 0 24px;
  }
  .service-card p {
    min-height: auto;
  }
}

.m-br-mobile {
  display: none;
}

@media (max-width: 640px) {
  .d-br-desktop {
    display: none;
  }
}

@media (max-width: 900px) {
  .estimator-options {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px;
  }
  .estimator-options .est-option:last-child {
    grid-column: 1 / -1;
    max-width: 280px;
    margin: 0 auto;
  }
  .est-option {
    padding: 36px 22px;
  }
  .est-dots {
    margin-bottom: 18px;
    height: 22px;
  }
  .est-dots span {
    width: 10px;
    height: 10px;
  }
  .est-option h4 {
    font-size: 17px;
    margin-bottom: 8px;
  }
  .est-option p {
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .m-br-mobile {
    display: inline;
  }
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-number {
    font-size: 36px;
  }
  .hero-btns {
    flex-direction: column;
  }
  .btn-outline {
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .testimonial-card {
    padding: 40px 28px;
  }
  .testimonial-card::before {
    top: auto;
    left: 20px;
    bottom: 8px;
  }
  .about-badge {
    right: 12px;
    bottom: -16px;
    width: 180px;
    height: 105px;
    padding: 14px 16px;
  }
  .estimator-options {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .estimator-options .est-option:last-child {
    grid-column: 1 / -1;
    max-width: 260px;
    margin: 0 auto;
  }
  .est-option {
    padding: 32px 20px;
  }
  .est-dots {
    margin-bottom: 16px;
  }
  .est-option h4 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .est-option p {
    font-size: 13px;
  }
  .est-stat-value {
    font-size: 24px;
  }
  .bt-label {
    font-size: 10px;
    letter-spacing: 2px;
  }
}

@media (max-width: 420px) {
  .hero-title {
    font-size: 32px;
  }
  .hero-sub {
    font-size: 15px;
  }
  .hero-tag {
    font-size: 10px;
    letter-spacing: 3px;
  }
  .section-title {
    font-size: 28px;
  }
  .stat-number {
    font-size: 28px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .location-card {
    padding: 32px 24px;
  }
  .testimonial-card {
    padding: 32px 20px;
  }
  .estimator-options {
    grid-template-columns: 1fr;
  }
  .estimator-options .est-option:last-child {
    max-width: none;
    grid-column: auto;
  }
  .estimator-result {
    padding: 24px 20px;
  }
  .btn-outline {
    padding: 12px 24px;
    font-size: 12px;
  }
}

/* ─── Large screens (1440+) ─── */
@media (min-width: 1440px) {
  .container,
  .nav-inner,
  .hero-content {
    max-width: 1400px;
  }
}

/* ─── Ultrawide screens (1920+) ─── */
@media (min-width: 1920px) {
  .container,
  .nav-inner,
  .hero-content {
    max-width: 1600px;
    padding: 0 60px;
  }
  .services-grid,
  .locations-grid,
  .ss-features-grid {
    gap: 36px;
  }
  .footer-grid {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ─── Super ultrawide (2560+) ─── */
@media (min-width: 2560px) {
  .container,
  .nav-inner,
  .hero-content {
    max-width: 1800px;
    padding: 0 80px;
  }
}

/* ═══════════════════════════════════════════
   BRAND TRANSITION
   ═══════════════════════════════════════════ */
.brand-transition {
  padding: 48px 0 0;
  background: var(--white);
}

.bt-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.bt-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.bt-divider {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: var(--mid-grey);
  margin: 0 20px;
}

.bt-tagline {
  text-align: center;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.bt-bar {
  display: flex;
  height: 3px;
  margin-top: 48px;
}

.bt-bar-purple {
  flex: 1;
  background: var(--hmr-purple);
}

.bt-bar-orange {
  flex: 1;
  background: var(--ss-orange);
}

/* ═══════════════════════════════════════════
   MOVE ESTIMATOR
   ═══════════════════════════════════════════ */
.estimator {
  padding: 120px 0;
  background: var(--off-white);
}

.estimator-header {
  text-align: center;
  margin-bottom: 56px;
}

.estimator-header .section-sub {
  margin: 0 auto;
}

.estimator-options {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.est-option {
  padding: 24px 16px;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid var(--border-light);
  background: var(--white);
  transition: var(--transition);
  font-family: var(--font);
}

.est-option:hover {
  border-color: rgba(74, 26, 107, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.est-option.active {
  border-color: var(--hmr-purple);
  background: var(--hmr-purple-faint);
}

.est-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
  height: 20px;
}

.est-dots span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--mid-grey);
  transition: var(--transition);
}

.est-option.active .est-dots span {
  background: var(--hmr-purple);
}

.est-option h4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.est-option p {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

.estimator-result {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.est-stat-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.est-stat-value {
  font-size: 32px;
  font-weight: 200;
  color: var(--hmr-purple);
  letter-spacing: -1px;
  line-height: 1;
}

.est-stat-truck {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0;
}

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(20, 20, 31, 0.98);
  backdrop-filter: blur(30px);
  z-index: 999;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  overflow-y: auto;
}
.mobile-nav.open {
  right: 0;
}
.mobile-nav > a {
  display: block;
  font-size: 24px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  padding: 14px 0;
  transition: var(--transition);
}
.mobile-nav > a:hover {
  color: var(--white);
}
/* Mobile accordion groups */
.mobile-nav-group {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  font-size: 24px;
  font-weight: 300;
  font-family: inherit;
  color: rgba(255, 255, 255, 0.7);
  padding: 14px 0;
  cursor: pointer;
  transition: var(--transition);
}
.mobile-nav-toggle:hover {
  color: var(--white);
}
.mobile-nav-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.mobile-nav-group.open .mobile-nav-toggle svg {
  transform: rotate(180deg);
}
.mobile-nav-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding-left: 16px;
}
.mobile-nav-group.open .mobile-nav-sub {
  max-height: 600px;
}
.mobile-nav-heading {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hmr-purple-light);
  padding: 12px 0 6px;
}
.mobile-nav-sub a {
  display: block;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  padding: 10px 0;
  transition: var(--transition);
}
.mobile-nav-sub a:hover {
  color: var(--white);
}

/* ═══════════════════════════════════════════
   ABOUT US PAGE — HERO
   ═══════════════════════════════════════════ */
.about-hero {
  position: relative;
  height: clamp(420px, 56.25vw, 800px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-hero-image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.about-hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 46, 0.5) 0%,
    rgba(26, 26, 46, 0.45) 40%,
    rgba(26, 26, 46, 0.8) 100%
  );
  z-index: 2;
}

.about-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 40px;
}

.about-hero-content .hero-title {
  font-size: clamp(44px, 6vw, 80px);
  margin-bottom: 0;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.3s;
}

/* ─── About Intro ─── */
.about-intro {
  padding: 100px 0;
  background: var(--white);
}

.about-intro-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.about-intro-inner .section-tag {
  justify-content: center;
}
.about-intro-inner .section-tag::before {
  display: none;
}

.about-intro-inner .section-title {
  margin-bottom: 28px;
}

.about-intro-inner p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
  letter-spacing: 0.2px;
}

/* ═══════════════════════════════════════════
   ABOUT US PAGE — CONTENT BLOCKS
   ═══════════════════════════════════════════ */
.about-block {
  padding: 120px 0;
}

.about-block--hmr {
  background: var(--white);
}

.about-block--ss {
  background: var(--off-white);
}

.about-block-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-block-grid--reverse {
  direction: rtl;
}
.about-block-grid--reverse > * {
  direction: ltr;
}

.about-block-text .section-sub {
  margin-bottom: 40px;
  max-width: 100%;
}

.about-block-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Orange variant icons */
.about-feature-icon--orange {
  background: var(--ss-orange-faint);
  border-color: rgba(232, 119, 42, 0.12);
}
.about-feature-icon--orange svg {
  stroke: var(--ss-orange);
}

/* Visual / image column */
.about-block-visual {
  position: relative;
}

.about-block-image {
  width: 100%;
  height: 480px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(74, 26, 107, 0.08),
    var(--off-white)
  );
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.about-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-block-image--orange {
  background: linear-gradient(
    135deg,
    rgba(232, 119, 42, 0.08),
    var(--off-white)
  );
}

/* Badges */
.about-badge--purple {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--hmr-purple);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(74, 26, 107, 0.35);
}
.about-badge--purple .badge-num {
  font-size: 36px;
  font-weight: 200;
  color: var(--white);
  line-height: 1;
}
.about-badge--purple .badge-text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.about-badge--orange {
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--ss-orange);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 10px 40px rgba(232, 119, 42, 0.35);
  color: var(--white);
}
.about-badge--orange .badge-text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  line-height: 1.3;
}

/* ═══════════════════════════════════════════
   ABOUT US PAGE — CTA
   ═══════════════════════════════════════════ */
.about-cta {
  padding: 120px 0;
  background: var(--dark-section);
  position: relative;
  overflow: hidden;
}

.about-cta-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.about-cta-inner .section-title strong {
  color: var(--hmr-purple-light);
}

.about-cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.about-cta-btn-primary {
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: var(--white) !important;
  background: transparent !important;
  transition: all 0.35s ease !important;
}
.about-cta-btn-primary:hover {
  color: var(--hmr-purple-light) !important;
  border-color: var(--hmr-purple-light) !important;
  background: transparent !important;
}
.about-cta-btn-secondary {
  border-color: rgba(255, 255, 255, 0.15) !important;
  color: var(--text-muted-on-dark) !important;
  background: transparent !important;
  transition: all 0.35s ease !important;
}
.about-cta-btn-secondary:hover {
  color: var(--hmr-purple-light) !important;
  border-color: var(--hmr-purple-light) !important;
  background: transparent !important;
}

/* ═══════════════════════════════════════════
   ABOUT US PAGE — RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-hero-content {
    padding: 0 24px;
  }
}

@media (max-width: 640px) {
  .about-hero {
    height: 50vh;
    min-height: 360px;
  }
  .about-intro {
    padding: 64px 0;
  }
  .about-intro-inner p {
    font-size: 15px;
  }
  .about-cta {
    padding: 80px 0;
  }
  .about-cta-btns {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 420px) {
  .about-hero-content .hero-title {
    font-size: 36px;
  }
}

/* ═══════════════════════════════════════════
   SIMPLY STORE PAGE
   ═══════════════════════════════════════════ */

/* ─── Hero (matches about page height, "Simply Store" text only) ─── */
.ss-hero {
  position: relative;
  height: clamp(420px, 56.25vw, 800px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ss-hero-image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ss-hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  animation: ssHeroZoom 20s ease-in-out infinite alternate;
}
@keyframes ssHeroZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}
.ss-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(20, 18, 28, 0.4) 0%,
    rgba(20, 18, 28, 0.6) 100%
  );
}
.ss-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.ss-hero-title {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 200;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.3s;
}

/* ─── Intro ─── */
.ss-intro {
  padding: 100px 0 80px;
  background: var(--white);
}
.ss-intro-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.ss-intro-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 200;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 28px;
}
.ss-intro-title strong {
  font-weight: 600;
  color: var(--ss-orange);
}
.ss-intro-line {
  width: 60px;
  height: 2px;
  background: var(--ss-orange);
  margin: 0 auto 28px;
  opacity: 0.6;
}
.ss-intro-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
}

/* ─── How It Works (horizontal cards, directional fade-ins) ─── */
.ss-how {
  padding: 120px 0;
  background: var(--off-white);
}
.ss-how-header {
  text-align: center;
  margin-bottom: 80px;
}
.ss-how-header .section-sub {
  margin: 0 auto;
}

.ss-how-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ss-how-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 40px 32px 36px;
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ss-how-card.animated {
  opacity: 1;
  transform: translateY(0);
}

.ss-how-num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--ss-orange);
  margin-bottom: 16px;
}

.ss-how-card h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.ss-how-card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ─── Video Section ─── */
.ss-video {
  position: relative;
  height: 60vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ss-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ss-video-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: opacity 0.6s ease;
}
.ss-video-poster img {
  width: 100%;
  height: 100%;
  object-position: center 30%;
  object-fit: cover;
  filter: brightness(0.5);
}
.ss-video.playing .ss-video-poster {
  opacity: 0;
  pointer-events: none;
}
.ss-video-iframe-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.ss-video-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.ss-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 18, 28, 0.4);
  z-index: 3;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.ss-video.playing .ss-video-overlay {
  opacity: 0;
}
.ss-video-content {
  position: relative;
  z-index: 5;
  width: 100%;
  text-align: center;
}
.ss-video-inner {
  text-align: center;
}

.ss-video-play {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(232, 119, 42, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
}
.ss-video-play::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(232, 119, 42, 0.2);
  animation: ssPlayPulse 2.5s ease-in-out infinite;
  pointer-events: none;
}
.ss-video.playing .ss-video-play::before {
  animation: none;
  opacity: 0;
}
@keyframes ssPlayPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0;
  }
}
.ss-video-play:hover {
  background: var(--ss-orange);
  border-color: var(--ss-orange);
}
.ss-video-play svg {
  width: 24px;
  height: 24px;
  fill: var(--ss-orange);
  stroke: none;
  transition: all 0.35s ease;
}
.ss-play-icon {
  margin-left: 3px;
}
.ss-close-icon {
  display: none;
  fill: none;
}
.ss-video-play:hover svg {
  fill: var(--white);
}
.ss-video-play:hover .ss-close-icon {
  fill: none;
  stroke: var(--white);
}

.ss-video.playing .ss-play-icon {
  display: none;
}
.ss-video.playing .ss-close-icon {
  display: block;
  stroke: var(--ss-orange);
  margin-left: 0;
}
.ss-video.playing .ss-video-play:hover .ss-close-icon {
  stroke: var(--white);
}

.ss-video.playing .ss-video-title,
.ss-video.playing .ss-video-sub {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ss-video-title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 200;
  color: var(--white);
  margin-bottom: 16px;
  transition: opacity 0.4s ease;
}
.ss-video-title strong {
  font-weight: 600;
}
.ss-video-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
  transition: opacity 0.4s ease;
}

/* ─── Why / Advantage ─── */
.ss-why {
  padding: 120px 0;
  background: var(--white);
}
.ss-why-header {
  text-align: center;
  margin-bottom: 72px;
}
.ss-why-header .section-sub {
  margin: 0 auto;
}

.ss-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ss-why-card {
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 40px 32px 36px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.5s ease,
    border-color 0.5s ease;
}
.ss-why-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--ss-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.ss-why-card:hover .ss-why-card-accent {
  transform: scaleX(1);
}
.ss-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(232, 119, 42, 0.08);
  border-color: rgba(232, 119, 42, 0.15);
}
.ss-why-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.ss-why-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ss-why-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--ss-orange);
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.4s ease;
}
.ss-why-card:hover .ss-why-icon svg {
  transform: scale(1.08);
}
.ss-why-card h3 {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.3;
}
.ss-why-card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ─── Sizes ─── */
.ss-sizes {
  padding: 120px 0;
  background: var(--off-white);
}
.ss-sizes-header {
  text-align: center;
  margin-bottom: 72px;
}
.ss-sizes-header .section-sub {
  margin: 0 auto;
}
.ss-sizes-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ss-sizes-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.ss-msu-diagram {
  perspective: 600px;
  width: 260px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ss-msu-box {
  width: 180px;
  height: 140px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(-12deg) rotateY(-25deg);
  animation: ssMsuFloat 6s ease-in-out infinite;
}
@keyframes ssMsuFloat {
  0%,
  100% {
    transform: rotateX(-12deg) rotateY(-25deg) translateY(0);
  }
  50% {
    transform: rotateX(-12deg) rotateY(-25deg) translateY(-8px);
  }
}
.ss-msu-face {
  position: absolute;
  border: 1.5px solid var(--ss-orange);
}
.ss-msu-front {
  width: 180px;
  height: 140px;
  background: rgba(232, 119, 42, 0.06);
  transform: translateZ(40px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.ss-msu-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--ss-orange);
  opacity: 0.5;
}
.ss-msu-side {
  width: 80px;
  height: 140px;
  background: rgba(232, 119, 42, 0.03);
  transform: rotateY(90deg) translateZ(140px) translateX(-40px);
  transform-origin: left;
  border-radius: 0 4px 4px 0;
}
.ss-msu-top {
  width: 180px;
  height: 80px;
  background: rgba(232, 119, 42, 0.04);
  transform: rotateX(90deg) translateZ(0) translateY(-40px);
  transform-origin: top;
  border-radius: 4px 4px 0 0;
}
.ss-msu-dims {
  display: flex;
  gap: 32px;
}
.ss-dim {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
}
.ss-dim span {
  display: block;
  font-size: 22px;
  font-weight: 500;
  color: var(--ss-orange);
  margin-bottom: 2px;
}
.ss-sizes-info {
  display: flex;
  flex-direction: column;
}
.ss-size-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}
.ss-size-stat-number {
  font-size: 48px;
  font-weight: 200;
  color: var(--ss-orange);
  line-height: 1;
}
.ss-size-stat-unit {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}
.ss-sizes-info h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark);
  margin-top: 20px;
  margin-bottom: 20px;
}
.ss-fits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.ss-fits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-body);
  line-height: 1.6;
}
.ss-fits-list svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  stroke: var(--ss-orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ss-sizes-note {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.6;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

/* ─── FAQ ─── */
.ss-faq {
  padding: 120px 0;
  background: var(--white);
}
.ss-faq-header {
  text-align: center;
  margin-bottom: 56px;
}
.ss-faq-header .section-sub {
  margin: 0 auto;
}
.ss-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.ss-faq-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ss-faq-item {
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.35s ease;
}
.ss-faq-item:hover {
  border-color: rgba(232, 119, 42, 0.2);
}
.ss-faq-item.active {
  border-color: rgba(232, 119, 42, 0.3);
  box-shadow: 0 8px 30px rgba(232, 119, 42, 0.06);
}
.ss-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dark);
  text-align: left;
  transition: all 0.35s ease;
}
.ss-faq-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  position: relative;
}
.ss-faq-icon span {
  position: absolute;
  background: var(--ss-orange);
  border-radius: 1px;
  transition: transform 0.35s ease;
}
.ss-faq-icon span:first-child {
  width: 12px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ss-faq-icon span:last-child {
  width: 1.5px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ss-faq-item.active .ss-faq-icon span:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
}
.ss-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ss-faq-answer p {
  padding: 0 24px 20px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
}
.ss-faq-item.active .ss-faq-answer {
  max-height: 300px;
}

/* ─── CTA ─── */
.ss-cta {
  padding: 120px 0;
  background: var(--dark-section);
  position: relative;
  overflow: hidden;
}
.ss-cta-glow {
  display: none;
}
.ss-cta-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}
.ss-cta-inner .section-title strong {
  color: var(--ss-orange-light);
}
.ss-cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.ss-cta-btn-primary {
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: var(--white) !important;
  background: transparent !important;
  transition: all 0.35s ease !important;
}
.ss-cta-btn-primary:hover {
  color: var(--ss-orange) !important;
  border-color: var(--ss-orange) !important;
  background: transparent !important;
}
.ss-cta-btn-secondary {
  border-color: rgba(255, 255, 255, 0.15) !important;
  color: var(--text-muted-on-dark) !important;
  background: transparent !important;
  transition: all 0.35s ease !important;
}
.ss-cta-btn-secondary:hover {
  color: var(--ss-orange) !important;
  border-color: var(--ss-orange) !important;
  background: transparent !important;
}

/* ═══════════════════════════════════════════
   SS PAGE — RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ss-how-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .ss-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ss-sizes-showcase {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ss-faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ss-hero {
    height: 50vh;
    min-height: 360px;
  }
  .ss-intro {
    padding: 64px 0 56px;
  }
  .ss-intro-title {
    font-size: 28px;
  }
  .ss-intro-text {
    font-size: 15px;
  }
  .ss-video {
    height: 50vh;
    min-height: 360px;
  }
  .ss-why-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .ss-cta-btns {
    flex-direction: column;
    align-items: center;
  }
  .ss-how,
  .ss-why,
  .ss-sizes,
  .ss-faq,
  .ss-cta {
    padding: 80px 0;
  }
  .ss-msu-diagram {
    transform: scale(0.85);
  }
}

@media (max-width: 420px) {
  .ss-hero-title {
    font-size: 28px;
    letter-spacing: 2px;
  }
  .ss-faq-trigger {
    font-size: 13px;
    padding: 16px 18px;
  }
  .ss-faq-answer p {
    padding: 0 18px 16px;
    font-size: 12px;
  }
}

@media (min-width: 1440px) {
  .ss-intro-inner {
    max-width: 780px;
  }
}
@media (min-width: 1920px) {
  .ss-why-grid {
    gap: 32px;
  }
}

/* ═══════════════════════════════════════════
   RESIDENTIAL PAGE
   ═══════════════════════════════════════════ */

/* ─── Hero ─── */
.res-hero {
  position: relative;
  height: clamp(420px, 56.25vw, 800px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.res-hero-image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.res-hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  animation: resHeroZoom 20s ease-in-out infinite alternate;
}
@keyframes resHeroZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.06);
  }
}
.res-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 46, 0.5) 0%,
    rgba(26, 26, 46, 0.45) 40%,
    rgba(26, 26, 46, 0.8) 100%
  );
  z-index: 1;
}
.res-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.res-hero-title {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 200;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.3s;
}

/* ─── Intro ─── */
.res-intro {
  padding: 100px 0 80px;
  background: var(--white);
}
.res-intro-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.res-intro-inner .section-tag {
  justify-content: center;
}
.res-intro-inner .section-tag::before {
  display: none;
}
.res-intro-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 200;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 28px;
}
.res-intro-title strong {
  font-weight: 600;
  color: var(--hmr-purple);
}
.res-intro-line {
  width: 60px;
  height: 2px;
  background: var(--hmr-purple);
  margin: 0 auto 28px;
  opacity: 0.6;
}
.res-intro-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
}

/* ─── Process Timeline (horizontal hover) ─── */
.res-process {
  padding: 120px 0;
  background: var(--off-white);
}
.res-process-header {
  text-align: center;
  margin-bottom: 60px;
}
.res-process-header .section-tag {
  justify-content: center;
}
.res-process-header .section-tag::before {
  display: none;
}
.res-process-header .section-sub {
  margin: 0 auto;
  text-align: center;
}

.res-tl {
  max-width: 900px;
  margin: 0 auto;
}

.res-tl-track {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 16px;
}
.res-tl-line {
  position: absolute;
  top: 28px;
  left: 48px;
  right: 48px;
  height: 2px;
  background: var(--mid-grey);
  z-index: 0;
}
.res-tl-fill {
  position: absolute;
  top: 28px;
  left: 48px;
  height: 2px;
  background: var(--hmr-purple);
  z-index: 1;
  width: 0;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.res-tl-node {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  flex: 1;
  padding: 0 4px;
}
.res-tl-dot-wrap {
  position: relative;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.res-tl-glow {
  display: none;
}
.res-tl-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2.5px solid var(--mid-grey);
  background: var(--white);
  transition: all 0.35s ease;
  position: relative;
  z-index: 1;
}
.res-tl-node.active .res-tl-dot {
  border-color: var(--hmr-purple);
  background: var(--hmr-purple);
}
.res-tl-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
  transition: color 0.3s ease;
  line-height: 1.3;
  max-width: 120px;
}
.res-tl-node.active .res-tl-label {
  color: var(--text-dark);
}

/* Description cards */
.res-tl-desc {
  margin-top: 40px;
  position: relative;
  min-height: 140px;
}
.res-tl-card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  pointer-events: none;
  padding: 28px 32px;
  border-radius: var(--radius);
  background: var(--white);
  border-left: 3px solid var(--hmr-purple);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}
.res-tl-card.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.res-tl-card h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.res-tl-card p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ─── What's Included ─── */
.res-included {
  padding: 120px 0;
  background: var(--white);
}
.res-included-header {
  text-align: center;
  margin-bottom: 60px;
}
.res-included-header .section-tag {
  justify-content: center;
}
.res-included-header .section-tag::before {
  display: none;
}
.res-included-header .section-sub {
  margin: 0 auto;
  text-align: center;
}
.res-inc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.res-inc-card {
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 40px 32px 36px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.5s ease,
    border-color 0.5s ease;
}
.res-inc-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--hmr-purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.res-inc-card:hover .res-inc-card-accent {
  transform: scaleX(1);
}
.res-inc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(74, 26, 107, 0.08);
  border-color: rgba(74, 26, 107, 0.15);
}
.res-inc-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.res-inc-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.res-inc-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--hmr-purple);
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.4s ease;
}
.res-inc-card:hover .res-inc-icon svg {
  transform: scale(1.08);
}
.res-inc-card h3 {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.3;
}
.res-inc-card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ─── Routes ─── */
.res-routes {
  padding: 120px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border-light);
}
.res-routes-header {
  text-align: center;
  margin-bottom: 60px;
}
.res-routes-header .section-tag {
  justify-content: center;
}
.res-routes-header .section-tag::before {
  display: none;
}
.res-routes-header .section-sub {
  margin: 0 auto;
  text-align: center;
}
.res-route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.res-route-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition:
    border-color 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.res-route-card:hover {
  border-color: rgba(74, 26, 107, 0.18);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(74, 26, 107, 0.08);
}
.res-route-card-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}
.res-route-city {
  font-size: 22px;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.3px;
}
.res-route-branch {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.res-route-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.res-route-group-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--hmr-purple);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.res-route-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.res-route-list li {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.5;
}
.res-route-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--hmr-purple);
  font-weight: 500;
  flex-shrink: 0;
  width: 18px;
}

/* ─── CTA ─── */
.res-cta {
  padding: 120px 0;
  background: var(--dark-section);
  position: relative;
  overflow: hidden;
}
.res-cta-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}
.res-cta-inner .section-title strong {
  color: var(--hmr-purple-light);
}
.res-cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.res-cta-btn-primary {
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: var(--white) !important;
  background: transparent !important;
  transition: all 0.35s ease !important;
}
.res-cta-btn-primary:hover {
  color: var(--hmr-purple-light) !important;
  border-color: var(--hmr-purple-light) !important;
  background: transparent !important;
}
.res-cta-btn-secondary {
  border-color: rgba(255, 255, 255, 0.15) !important;
  color: var(--text-muted-on-dark) !important;
  background: transparent !important;
  transition: all 0.35s ease !important;
}
.res-cta-btn-secondary:hover {
  color: var(--hmr-purple-light) !important;
  border-color: var(--hmr-purple-light) !important;
  background: transparent !important;
}

/* ─── Residential Responsive ─── */
@media (max-width: 1024px) {
  .res-inc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 760px;
  }
  .res-route-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
  }
  .res-route-card:last-child {
    grid-column: 1 / -1;
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
  }
}


@media (max-width: 640px) {
  .res-hero {
    height: 50vh;
    min-height: 360px;
  }
  .res-intro {
    padding: 64px 0 56px;
  }
  .res-intro-title {
    font-size: 28px;
  }
  .res-intro-text {
    font-size: 15px;
  }
  .res-inc-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .res-route-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .res-route-card:last-child {
    grid-column: auto;
    max-width: none;
  }
  .res-route-card {
    padding: 32px 28px;
    gap: 24px;
  }
  .res-process,
  .res-included,
  .res-routes,
  .res-cta {
    padding: 80px 0;
  }
  .res-cta-btns {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 420px) {
  .res-hero-title {
    font-size: 28px;
    letter-spacing: 2px;
  }
}

@media (min-width: 1440px) {
  .res-intro-inner {
    max-width: 780px;
  }
  .res-tl {
    max-width: 1000px;
  }
}
@media (min-width: 1920px) {
  .res-inc-grid {
    gap: 28px;
  }
}

/* ═══════════════════════════════════════════
   OFFICE & FACTORY PAGE
   ═══════════════════════════════════════════ */

/* ─── Hero ─── */
.of-hero {
  position: relative;
  height: clamp(420px, 56.25vw, 800px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.of-hero-image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.of-hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  animation: ofHeroZoom 20s ease-in-out infinite alternate;
}
@keyframes ofHeroZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.06);
  }
}
.of-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 46, 0.55) 0%,
    rgba(26, 26, 46, 0.45) 40%,
    rgba(26, 26, 46, 0.85) 100%
  );
  z-index: 1;
}
.of-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.of-hero-title {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 200;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.3s;
}

/* ─── Intro ─── */
.of-intro {
  padding: 100px 0 80px;
  background: var(--white);
}
.of-intro-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.of-intro-inner .section-tag {
  justify-content: center;
}
.of-intro-inner .section-tag::before {
  display: none;
}
.of-intro-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 200;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 28px;
}
.of-intro-title strong {
  font-weight: 600;
  color: var(--hmr-purple);
}
.of-intro-line {
  width: 60px;
  height: 2px;
  background: var(--hmr-purple);
  margin: 0 auto 28px;
  opacity: 0.6;
}
.of-intro-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
}

/* ─── Project Phases (two-column nav + detail) ─── */
.of-phases {
  padding: 120px 0;
  background: var(--off-white);
}
.of-phases-header {
  text-align: center;
  margin-bottom: 60px;
}
.of-phases-header .section-tag {
  justify-content: center;
}
.of-phases-header .section-tag::before {
  display: none;
}
.of-phases-header .section-sub {
  margin: 0 auto;
  text-align: center;
}

.of-phase-layout {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 920px;
  margin: 0 auto;
}

/* Horizontal step indicator */
.of-phase-nav {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 0;
  padding: 0;
}
.of-phase-rail {
  position: absolute;
  /* Span from the center of the first circle to the center of the last.
     With 5 pips of equal width (flex: 1), those centers sit at 10% / 90%. */
  left: 10%;
  right: 10%;
  top: 18px;
  height: 2px;
  width: auto;
  background: var(--mid-grey);
  z-index: 0;
  /* Cut gaps where the 5 circles sit (rail-relative: 0%, 25%, 50%, 75%, 100%)
     so the line never passes under a number/circle. */
  --rail-gap: 23px;
  -webkit-mask-image: linear-gradient(to right,
    transparent 0, transparent var(--rail-gap),
    #000 var(--rail-gap), #000 calc(25% - var(--rail-gap)),
    transparent calc(25% - var(--rail-gap)), transparent calc(25% + var(--rail-gap)),
    #000 calc(25% + var(--rail-gap)), #000 calc(50% - var(--rail-gap)),
    transparent calc(50% - var(--rail-gap)), transparent calc(50% + var(--rail-gap)),
    #000 calc(50% + var(--rail-gap)), #000 calc(75% - var(--rail-gap)),
    transparent calc(75% - var(--rail-gap)), transparent calc(75% + var(--rail-gap)),
    #000 calc(75% + var(--rail-gap)), #000 calc(100% - var(--rail-gap)),
    transparent calc(100% - var(--rail-gap)), transparent 100%);
  mask-image: linear-gradient(to right,
    transparent 0, transparent var(--rail-gap),
    #000 var(--rail-gap), #000 calc(25% - var(--rail-gap)),
    transparent calc(25% - var(--rail-gap)), transparent calc(25% + var(--rail-gap)),
    #000 calc(25% + var(--rail-gap)), #000 calc(50% - var(--rail-gap)),
    transparent calc(50% - var(--rail-gap)), transparent calc(50% + var(--rail-gap)),
    #000 calc(50% + var(--rail-gap)), #000 calc(75% - var(--rail-gap)),
    transparent calc(75% - var(--rail-gap)), transparent calc(75% + var(--rail-gap)),
    #000 calc(75% + var(--rail-gap)), #000 calc(100% - var(--rail-gap)),
    transparent calc(100% - var(--rail-gap)), transparent 100%);
}
.of-phase-rail-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--hmr-purple);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.of-phase-pip {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1;
  font-family: var(--font);
  flex: 1;
  min-width: 0;
}
.of-phase-pip .of-phase-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--mid-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--off-white);
  transition: all 0.4s ease;
  flex-shrink: 0;
}
.of-phase-pip .of-phase-label {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  text-align: center;
  line-height: 1.35;
}

/* Active pip */
.of-phase-pip.active .of-phase-num {
  border-color: var(--hmr-purple);
  background: var(--hmr-purple);
  color: var(--white);
}
.of-phase-pip.active .of-phase-label {
  color: var(--text-dark);
  font-weight: 500;
}
/* Reached (completed) pip */
.of-phase-pip.reached .of-phase-num {
  border-color: var(--hmr-purple);
  background: var(--hmr-purple);
  color: var(--white);
  opacity: 0.45;
}
.of-phase-pip.reached .of-phase-label {
  color: var(--text-muted);
}

/* Hover non-active */
.of-phase-pip:not(.active):hover .of-phase-label {
  color: var(--text-dark);
}

/* Generic mobile vertical stepper — hidden on desktop, shown under 768px.
   Used by any section that needs a stacked numbered timeline on mobile. */
.m-stepper {
  display: none;
}

/* Right detail column */
.of-phase-detail {
  position: relative;
  min-height: 200px;
}
.of-phase-card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.45s ease;
  pointer-events: none;
  padding: 32px 36px;
  border-radius: var(--radius);
  background: var(--white);
  border-left: 3px solid var(--hmr-purple);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}
.of-phase-card.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.of-phase-card h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.of-phase-card p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ─── Split Section (image + differentiators) ─── */
.of-split {
  padding: 120px 0;
  background: var(--white);
}
.of-split-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 56px;
  align-items: stretch;
}
.of-split-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 100%;
}
.of-split-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.of-split-content .section-tag {
  margin-bottom: 16px;
}
.of-split-content .section-title {
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: 36px;
}
.of-split-content .section-title strong {
  color: var(--hmr-purple);
}

.of-diff-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.of-diff-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.of-diff-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--hmr-purple-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.of-diff-icon svg {
  width: 20px;
  height: 20px;
  color: var(--hmr-purple);
}
.of-diff-item h4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.of-diff-item p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ─── Sectors Grid ─── */
.of-sectors {
  padding: 120px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border-light);
}
.of-sectors-header {
  text-align: center;
  margin-bottom: 60px;
}
.of-sectors-header .section-tag {
  justify-content: center;
}
.of-sectors-header .section-tag::before {
  display: none;
}
.of-sectors-header .section-sub {
  margin: 0 auto;
  text-align: center;
}

.of-sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.of-sector-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 40px 32px 36px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.5s ease,
    border-color 0.5s ease;
}
.of-sector-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--hmr-purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.of-sector-item:hover .of-sector-accent {
  transform: scaleX(1);
}
.of-sector-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(74, 26, 107, 0.08);
  border-color: rgba(74, 26, 107, 0.15);
}
.of-sector-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.of-sector-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.of-sector-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--hmr-purple);
  color: var(--hmr-purple);
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.4s ease;
}
.of-sector-item:hover .of-sector-icon svg {
  transform: scale(1.08);
}
.of-sector-item h3 {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.3;
}
.of-sector-item p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ─── CTA ─── */
.of-cta {
  padding: 120px 0;
  background: var(--dark-section);
  position: relative;
  overflow: hidden;
}
.of-cta-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}
.of-cta-inner .section-title strong {
  color: var(--hmr-purple-light);
}
.of-cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.of-cta-btn-primary {
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: var(--white) !important;
  background: transparent !important;
  transition: all 0.35s ease !important;
}
.of-cta-btn-primary:hover {
  color: var(--hmr-purple-light) !important;
  border-color: var(--hmr-purple-light) !important;
  background: transparent !important;
}
.of-cta-btn-secondary {
  border-color: rgba(255, 255, 255, 0.15) !important;
  color: var(--text-muted-on-dark) !important;
  background: transparent !important;
  transition: all 0.35s ease !important;
}
.of-cta-btn-secondary:hover {
  color: var(--hmr-purple-light) !important;
  border-color: var(--hmr-purple-light) !important;
  background: transparent !important;
}

/* ─── Office & Factory Responsive ─── */
@media (max-width: 1024px) {
  .of-phase-layout {
    gap: 36px;
  }
  .of-split-grid {
    gap: 40px;
  }
  .of-sector-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 760px;
  }
}

@media (max-width: 768px) {
  /* Swap any desktop phase/timeline layout for the mobile vertical stepper */
  .of-phase-layout,
  .stor-tl,
  .res-tl {
    display: none;
  }
  .m-stepper {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 480px;
  }
  .m-stepper-step {
    display: grid;
    grid-template-columns: 36px 1fr;
    column-gap: 18px;
    padding-bottom: 28px;
    position: relative;
  }
  .m-stepper-step:last-child {
    padding-bottom: 0;
  }
  .m-stepper-marker {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  /* Vertical connector — line from this marker down to next */
  .m-stepper-step:not(:last-child) .m-stepper-marker::after {
    content: '';
    position: absolute;
    top: 38px;
    bottom: -10px;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: var(--mid-grey);
  }
  .m-stepper-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--hmr-purple);
    color: var(--white);
    border: 2px solid var(--hmr-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font);
    flex-shrink: 0;
  }
  .m-stepper-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 6px;
  }
  .m-stepper-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--hmr-purple);
  }
  .m-stepper-title {
    font-size: 17px;
    font-weight: 500;
    color: var(--text-dark);
    margin: 2px 0 6px;
    line-height: 1.3;
  }
  .m-stepper-body p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
  }
  .of-split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .of-split-image {
    max-width: 500px;
  }
  .of-split-image img {
    position: static;
    height: auto;
  }
  .of-split-content .section-title {
    font-size: 28px;
  }
}

@media (max-width: 640px) {
  .of-hero {
    height: 50vh;
    min-height: 360px;
  }
  .of-intro {
    padding: 64px 0 56px;
  }
  .of-intro-title {
    font-size: 28px;
  }
  .of-intro-text {
    font-size: 15px;
  }
  .of-sector-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .of-phases,
  .of-split,
  .of-sectors,
  .of-cta {
    padding: 80px 0;
  }
  .of-cta-btns {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 420px) {
  .of-hero-title {
    font-size: 28px;
    letter-spacing: 2px;
  }
  .of-phase-pip {
    min-width: 64px;
    padding: 0 8px;
  }
  .of-phase-pip .of-phase-num {
    width: 30px;
    height: 30px;
    font-size: 10px;
  }
  .of-phase-pip .of-phase-label {
    font-size: 10px;
  }
  .of-phase-rail {
    --rail-gap: 19px;
  }
  .of-diff-item h4 {
    font-size: 14px;
  }
  .of-diff-item p {
    font-size: 13px;
  }
}

@media (min-width: 1440px) {
  .of-intro-inner {
    max-width: 780px;
  }
  .of-phase-layout {
    max-width: 1000px;
  }
}
@media (min-width: 1920px) {
  .of-sector-grid {
    gap: 28px;
  }
  .of-split-grid {
    gap: 72px;
  }
}

/* ═══════════════════════════════════════════
   LOGISTICS SOLUTIONS PAGE
   ═══════════════════════════════════════════ */

/* ─── Hero ─── */
.log-hero {
  position: relative;
  height: clamp(420px, 56.25vw, 800px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.log-hero-image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.log-hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.log-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 46, 0.5) 0%,
    rgba(26, 26, 46, 0.45) 40%,
    rgba(26, 26, 46, 0.8) 100%
  );
  z-index: 1;
}
.log-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.log-hero-title {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 200;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.3s;
}

/* ─── Intro ─── */
.log-intro {
  padding: 96px 0 88px;
}
.log-intro-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.log-intro-inner .section-tag {
  justify-content: center;
}
.log-intro-inner .section-tag::before {
  display: none;
}
.log-intro-title {
  font-size: 36px;
  font-weight: 200;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 20px;
}
.log-intro-title strong {
  font-weight: 600;
  color: var(--hmr-purple);
}
.log-intro-line {
  width: 48px;
  height: 2px;
  background: var(--hmr-purple);
  margin: 0 auto 24px;
}
.log-intro-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-body);
}

/* ─── Capabilities (Flip Cards) ─── */
.log-caps {
  padding: 120px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border-light);
}
.log-caps-header {
  text-align: center;
  margin-bottom: 60px;
}
.log-caps-header .section-tag {
  justify-content: center;
}
.log-caps-header .section-tag::before {
  display: none;
}
.log-caps-header .section-sub {
  margin: 0 auto;
  text-align: center;
}

.log-caps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1060px;
  margin: 0 auto;
}

.log-flip-card {
  perspective: 800px;
  height: 280px;
  cursor: pointer;
  outline: none;
}
.log-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}
.log-flip-card.flipped .log-flip-inner,
.log-flip-card:focus .log-flip-inner {
  transform: rotateY(180deg);
}

.log-flip-front,
.log-flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
}

.log-flip-front {
  background: var(--white);
  border: 1px solid var(--border-light);
  text-align: center;
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}
.log-flip-card:hover .log-flip-front {
  border-color: rgba(74, 26, 107, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.log-flip-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--hmr-purple-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.35s ease;
}
.log-flip-card:hover .log-flip-icon {
  background: rgba(74, 26, 107, 0.12);
}
.log-flip-icon svg {
  width: 24px;
  height: 24px;
  color: var(--hmr-purple);
}
.log-flip-front h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.2px;
}
.log-flip-hint {
  position: absolute;
  top: 16px;
  right: 16px;
  opacity: 0.25;
  transition: opacity 0.35s ease;
}
.log-flip-hint svg {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
}
.log-flip-card:hover .log-flip-hint {
  opacity: 0.5;
}

.log-flip-back {
  background: var(--hmr-purple);
  transform: rotateY(180deg);
  text-align: center;
}
.log-flip-back p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  text-wrap: balance;
}

/* ─── Consignment Docket ─── */
.log-docket {
  padding: 120px 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.log-docket::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(74, 26, 107, 0.05) 1px,
    transparent 0
  );
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.6;
}
.log-docket > .container {
  position: relative;
  z-index: 1;
}

.log-docket-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.log-docket-header .section-tag {
  justify-content: center;
}
.log-docket-header .section-tag::before {
  display: none;
}
.log-docket-header .section-sub {
  margin: 0 auto;
  text-align: center;
}

.log-docket-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

/* Docket / Waybill card */
.log-docket-card {
  position: relative;
}
.log-docket-paper {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 40px 44px 36px;
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.02),
    0 12px 32px rgba(30, 30, 44, 0.08),
    0 32px 64px rgba(30, 30, 44, 0.06);
  transform: rotate(-0.6deg);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.log-docket-paper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--hmr-purple) 0%,
    var(--hmr-purple-light) 100%
  );
  border-radius: 4px 4px 0 0;
}
.log-docket-card:hover .log-docket-paper {
  transform: rotate(0deg);
}

.log-docket-perforation {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 22px;
  width: 1px;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.12) 0,
    rgba(0, 0, 0, 0.12) 4px,
    transparent 4px,
    transparent 8px
  );
  background-size: 1px 8px;
}

.log-docket-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
}
.log-docket-meta {
  font-family:
    ui-monospace, "SF Mono", "Roboto Mono", Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.log-docket-title {
  margin-bottom: 28px;
}
.log-docket-eyebrow {
  display: block;
  font-family:
    ui-monospace, "SF Mono", "Roboto Mono", Menlo, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hmr-purple);
  margin-bottom: 6px;
}
.log-docket-heading {
  display: block;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--text-dark);
  line-height: 1.25;
}

.log-docket-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.log-docket-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.07);
}
.log-docket-item:last-child {
  border-bottom: none;
}
.log-docket-check {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--hmr-purple-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hmr-purple);
  transition: background 0.4s ease;
}
.log-docket-check svg {
  width: 16px;
  height: 16px;
}
.log-docket-check svg polyline {
  stroke-dasharray: 28;
  stroke-dashoffset: 28;
  transition: stroke-dashoffset 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.log-docket-item.ticked .log-docket-check {
  background: var(--hmr-purple);
  color: var(--white);
}
.log-docket-item.ticked .log-docket-check svg polyline {
  stroke-dashoffset: 0;
}
.log-docket-label {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.1px;
}

.log-docket-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 20px;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  gap: 16px;
}
.log-docket-sig {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.log-docket-sig-label {
  font-family:
    ui-monospace, "SF Mono", "Roboto Mono", Menlo, Consolas, monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.log-docket-sig-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
}

/* Approved stamp */
.log-docket-stamp {
  position: relative;
  width: 108px;
  height: 108px;
  flex-shrink: 0;
  transform: rotate(-14deg) translateY(6px);
  opacity: 0;
  transition:
    opacity 0.6s ease 1.5s,
    transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.5s;
}
.log-docket-card.in-view .log-docket-stamp {
  opacity: 1;
  transform: rotate(-14deg) translateY(0) scale(1);
  animation: docketStampThud 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.5s both;
}
@keyframes docketStampThud {
  0% {
    transform: rotate(-14deg) translateY(-12px) scale(1.4);
    opacity: 0;
  }
  60% {
    transform: rotate(-14deg) translateY(0) scale(0.94);
    opacity: 1;
  }
  100% {
    transform: rotate(-14deg) translateY(0) scale(1);
    opacity: 1;
  }
}
.log-docket-stamp-ring {
  width: 100%;
  height: 100%;
  border: 3px solid var(--hmr-purple);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--hmr-purple);
  background: rgba(74, 26, 107, 0.04);
  position: relative;
  /* Slight ink-bleed irregularity */
  box-shadow:
    inset 0 0 0 6px var(--white),
    inset 0 0 0 7px rgba(74, 26, 107, 0.5);
}
.log-docket-stamp-text {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 4px;
}
.log-docket-stamp-sub {
  font-family:
    ui-monospace, "SF Mono", "Roboto Mono", Menlo, Consolas, monospace;
  font-size: 8px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  opacity: 0.85;
}
.log-docket-stamp-date {
  font-family:
    ui-monospace, "SF Mono", "Roboto Mono", Menlo, Consolas, monospace;
  font-size: 8px;
  letter-spacing: 1px;
  opacity: 0.65;
  margin-top: 3px;
}

/* Narrative side */
.log-docket-info {
  padding-left: 8px;
}
.log-docket-info-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family:
    ui-monospace, "SF Mono", "Roboto Mono", Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hmr-purple);
  margin-bottom: 20px;
}
.log-docket-info-tag::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--hmr-purple);
}
.log-docket-info-title {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.log-docket-info-title strong {
  font-weight: 700;
  color: var(--hmr-purple);
}
.log-docket-info-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 14px;
}
.log-docket-info-text:last-of-type {
  margin-bottom: 32px;
}

.log-docket-info-figures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}
.log-docket-figure {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.log-docket-figure-num {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--hmr-purple);
  line-height: 1;
}
.log-docket-figure-num small {
  font-size: 18px;
  font-weight: 500;
  margin-left: 2px;
}
.log-docket-figure-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-body);
  letter-spacing: 0.2px;
}

/* ─── CTA ─── */
.log-cta {
  padding: 120px 0;
  background: var(--dark-section);
  position: relative;
  overflow: hidden;
}
.log-cta-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}
.log-cta-inner .section-title strong {
  color: var(--hmr-purple-light);
}
.log-cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.log-cta-btn-primary {
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: var(--white) !important;
  background: transparent !important;
  transition: all 0.35s ease !important;
}
.log-cta-btn-primary:hover {
  color: var(--hmr-purple-light) !important;
  border-color: var(--hmr-purple-light) !important;
  background: transparent !important;
}
.log-cta-btn-secondary {
  border-color: rgba(255, 255, 255, 0.15) !important;
  color: var(--text-muted-on-dark) !important;
  background: transparent !important;
  transition: all 0.35s ease !important;
}
.log-cta-btn-secondary:hover {
  color: var(--hmr-purple-light) !important;
  border-color: var(--hmr-purple-light) !important;
  background: transparent !important;
}

/* ─── Logistics Responsive ─── */
@media (max-width: 1024px) {
  .log-caps-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 560px;
    margin: 0 auto;
  }
  .log-docket-grid {
    gap: 40px;
  }
  .log-docket-info-title {
    font-size: 28px;
  }
}

@media (max-width: 860px) {
  .log-docket-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 560px;
  }
  .log-docket-info {
    padding-left: 0;
    text-align: center;
  }
  .log-docket-info-tag {
    justify-content: center;
  }
  .log-docket-info-figures {
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .log-caps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .log-flip-card {
    height: 260px;
  }
  .log-docket-paper {
    padding: 32px 28px 28px;
  }
  .log-docket-perforation {
    left: 14px;
  }
  .log-docket-heading {
    font-size: 20px;
  }
  .log-docket-label {
    font-size: 14px;
  }
  .log-docket-stamp {
    width: 92px;
    height: 92px;
  }
  .log-docket-stamp-text {
    font-size: 15px;
  }
}

@media (max-width: 640px) {
  .log-hero {
    height: 50vh;
    min-height: 360px;
  }
  .log-intro {
    padding: 64px 0 56px;
  }
  .log-intro-title {
    font-size: 28px;
  }
  .log-intro-text {
    font-size: 15px;
  }
  .log-caps,
  .log-docket,
  .log-cta {
    padding: 80px 0;
  }
  .log-caps-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
  }
  .log-flip-card {
    height: 240px;
  }
  .log-flip-back p {
    font-size: 13px;
  }
  .log-cta-btns {
    flex-direction: column;
    align-items: center;
  }
  .log-docket-footer {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 24px;
  }
  .log-docket-stamp {
    align-self: flex-end;
  }
  .log-docket-info-title {
    font-size: 24px;
  }
  .log-docket-figure-num {
    font-size: 30px;
  }
}

@media (max-width: 420px) {
  .log-hero-title {
    font-size: 28px;
    letter-spacing: 2px;
  }
  .log-flip-card {
    height: 220px;
  }
  .log-flip-front h3 {
    font-size: 14px;
  }
  .log-flip-back p {
    font-size: 12.5px;
    padding: 0 4px;
  }
  .log-docket-paper {
    padding: 28px 20px 24px;
  }
  .log-docket-perforation {
    display: none;
  }
  .log-docket-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .log-docket-info-figures {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (min-width: 1440px) {
  .log-intro-inner {
    max-width: 780px;
  }
  .log-caps-grid {
    max-width: 1120px;
  }
  .log-docket-grid {
    max-width: 1200px;
    gap: 72px;
  }
}
@media (min-width: 1920px) {
  .log-caps-grid {
    gap: 28px;
  }
  .log-docket-grid {
    max-width: 1280px;
  }
}

/* ═══════════════════════════════════════════
   DISTRIBUTION PAGE
   ═══════════════════════════════════════════ */

/* ─── Hero ─── */
.dist-hero {
  position: relative;
  height: clamp(420px, 56.25vw, 800px);
  overflow: hidden;
}
.dist-hero-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.dist-hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.dist-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 46, 0.25) 0%,
    rgba(26, 26, 46, 0.55) 100%
  );
}
.dist-hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dist-hero-title {
  font-size: 44px;
  font-weight: 200;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
}

/* ─── Intro ─── */
.dist-intro {
  padding: 96px 0 88px;
}
.dist-intro-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.dist-intro-inner .section-tag {
  justify-content: center;
}
.dist-intro-inner .section-tag::before {
  display: none;
}
.dist-intro-title {
  font-size: 36px;
  font-weight: 200;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 20px;
}
.dist-intro-title strong {
  font-weight: 600;
  color: var(--hmr-purple);
}
.dist-intro-line {
  width: 48px;
  height: 2px;
  background: var(--hmr-purple);
  margin: 0 auto 24px;
}
.dist-intro-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-body);
}

/* ─── Tabbed Services ─── */
.dist-services {
  padding: 120px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border-light);
}
.dist-services-header {
  text-align: center;
  margin-bottom: 60px;
}
.dist-services-header .section-tag {
  justify-content: center;
}
.dist-services-header .section-tag::before {
  display: none;
}
.dist-services-header .section-sub {
  margin: 0 auto;
  text-align: center;
}

.dist-tabs {
  max-width: 900px;
  margin: 0 auto;
}

.dist-tab-nav {
  display: flex;
  gap: 6px;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
.dist-tab-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-bottom: none;
  border-radius: var(--radius) var(--radius) 0 0;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  font-family: var(--font);
}
.dist-tab-btn::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.35s ease;
}
.dist-tab-btn.active::after {
  background: var(--hmr-purple);
}
.dist-tab-btn.active {
  background: var(--white);
  border-bottom-color: var(--white);
}
.dist-tab-btn svg {
  width: 24px;
  height: 24px;
  color: var(--text-muted);
  transition: color 0.35s ease;
}
.dist-tab-btn span {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.2px;
  transition: color 0.35s ease;
  text-align: center;
  line-height: 1.3;
}
.dist-tab-btn.active svg {
  color: var(--hmr-purple);
}
.dist-tab-btn.active span {
  color: var(--text-dark);
  font-weight: 500;
}
.dist-tab-btn:hover:not(.active) {
  background: rgba(74, 26, 107, 0.03);
}
.dist-tab-btn:hover:not(.active) svg {
  color: var(--hmr-purple-light);
}

.dist-tab-panels {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 0 0 var(--radius) var(--radius);
  position: relative;
  min-height: 220px;
}
.dist-tab-panel {
  padding: 40px 44px;
  opacity: 0;
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.dist-tab-panel.visible {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}
.dist-tab-panel h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.dist-tab-panel p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-body);
}

/* ─── Coverage / Dispatch Grid ─── */
.dist-coverage {
  padding: 120px 0;
}
.dist-coverage-header {
  text-align: center;
  margin-bottom: 60px;
}
.dist-coverage-header .section-tag {
  justify-content: center;
}
.dist-coverage-header .section-tag::before {
  display: none;
}

.dist-dispatch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.dist-dispatch-card {
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  background: var(--white);
  text-align: center;
  transition: var(--transition);
}
.dist-dispatch-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}

.dist-dispatch-freq {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.dist-dispatch-daily {
  background: rgba(74, 26, 107, 0.1);
  color: var(--hmr-purple);
}
.dist-dispatch-weekly {
  background: rgba(74, 26, 107, 0.06);
  color: var(--hmr-purple-light);
}
.dist-dispatch-request {
  background: var(--light-grey);
  color: var(--text-muted);
}

.dist-dispatch-card h4 {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.dist-dispatch-card p {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ─── CTA ─── */
.dist-cta {
  padding: 120px 0;
  background: var(--dark-section);
  position: relative;
  overflow: hidden;
}
.dist-cta-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}
.dist-cta-inner .section-title strong {
  color: var(--hmr-purple-light);
}
.dist-cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.dist-cta-btn-primary {
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: var(--white) !important;
  background: transparent !important;
  transition: all 0.35s ease !important;
}
.dist-cta-btn-primary:hover {
  color: var(--hmr-purple-light) !important;
  border-color: var(--hmr-purple-light) !important;
  background: transparent !important;
}
.dist-cta-btn-secondary {
  border-color: rgba(255, 255, 255, 0.15) !important;
  color: var(--text-muted-on-dark) !important;
  background: transparent !important;
  transition: all 0.35s ease !important;
}
.dist-cta-btn-secondary:hover {
  color: var(--hmr-purple-light) !important;
  border-color: var(--hmr-purple-light) !important;
  background: transparent !important;
}

/* ─── Distribution Responsive ─── */
@media (max-width: 1024px) {
  .dist-dispatch-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .dist-tab-nav {
    flex-wrap: wrap;
    gap: 4px;
  }
  .dist-tab-btn {
    flex: 1 1 calc(50% - 2px);
    padding: 18px 12px;
    gap: 8px;
  }
  .dist-tab-btn svg {
    width: 20px;
    height: 20px;
  }
  .dist-tab-btn span {
    font-size: 12px;
  }
  .dist-tab-panel {
    padding: 32px 28px;
  }
  .dist-tab-panel h3 {
    font-size: 18px;
  }
  .dist-tab-panel p {
    font-size: 14px;
  }
  .dist-dispatch-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .dist-hero {
    height: 50vh;
    min-height: 360px;
  }
  .dist-intro {
    padding: 64px 0 56px;
  }
  .dist-intro-title {
    font-size: 28px;
  }
  .dist-intro-text {
    font-size: 15px;
  }
  .dist-services,
  .dist-coverage,
  .dist-cta {
    padding: 80px 0;
  }
  .dist-tab-btn {
    padding: 14px 10px;
  }
  .dist-tab-panel {
    padding: 28px 20px;
  }
  .dist-cta-btns {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 420px) {
  .dist-hero-title {
    font-size: 28px;
    letter-spacing: 2px;
  }
  .dist-tab-btn span {
    font-size: 11px;
  }
  .dist-dispatch-card {
    padding: 28px 20px;
  }
}

@media (min-width: 1440px) {
  .dist-intro-inner {
    max-width: 780px;
  }
  .dist-tabs {
    max-width: 1000px;
  }
  .dist-dispatch-grid {
    max-width: 1060px;
  }
}
@media (min-width: 1920px) {
  .dist-dispatch-grid {
    gap: 28px;
  }
  .dist-tabs {
    max-width: 1060px;
  }
}

/* ═══════════════════════════════════════════
   WAREHOUSING PAGE
   ═══════════════════════════════════════════ */

/* ─── Hero ─── */
.wh-hero {
  position: relative;
  height: clamp(420px, 56.25vw, 800px);
  overflow: hidden;
}
.wh-hero-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.wh-hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.wh-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 46, 0.25) 0%,
    rgba(26, 26, 46, 0.55) 100%
  );
}
.wh-hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wh-hero-title {
  font-size: 44px;
  font-weight: 200;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
}

/* ─── Intro ─── */
.wh-intro {
  padding: 96px 0 88px;
}
.wh-intro-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.wh-intro-inner .section-tag {
  justify-content: center;
}
.wh-intro-inner .section-tag::before {
  display: none;
}
.wh-intro-title {
  font-size: 36px;
  font-weight: 200;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 20px;
}
.wh-intro-title strong {
  font-weight: 600;
  color: var(--hmr-purple);
}
.wh-intro-line {
  width: 48px;
  height: 2px;
  background: var(--hmr-purple);
  margin: 0 auto 24px;
}
.wh-intro-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-body);
}

/* ─── Hotspot Feature Selector ─── */
.wh-container {
  padding: 120px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border-light);
}
.wh-container-header {
  text-align: center;
  margin-bottom: 60px;
}
.wh-container-header .section-tag {
  justify-content: center;
}
.wh-container-header .section-tag::before {
  display: none;
}
.wh-container-header .section-sub {
  margin: 0 auto;
  text-align: center;
}

.wh-hotspot-layout {
  max-width: 960px;
  margin: 0 auto;
}

.wh-hotspot-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.wh-hotspot-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 16px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  font-family: var(--font);
}
.wh-hotspot-ring {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--border-light);
  transition: var(--transition);
}
.wh-hotspot-btn.active .wh-hotspot-ring {
  border-color: var(--hmr-purple);
  background: var(--hmr-purple);
  box-shadow: 0 0 0 3px var(--hmr-purple-faint);
}
.wh-hotspot-btn svg {
  width: 28px;
  height: 28px;
  color: var(--text-muted);
  transition: color 0.35s ease;
}
.wh-hotspot-btn.active svg {
  color: var(--hmr-purple);
}
.wh-hotspot-label {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.2px;
  text-align: center;
  line-height: 1.3;
  transition: color 0.35s ease;
}
.wh-hotspot-btn.active .wh-hotspot-label {
  color: var(--text-dark);
  font-weight: 500;
}
.wh-hotspot-btn:hover:not(.active) {
  border-color: rgba(74, 26, 107, 0.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}
.wh-hotspot-btn:hover:not(.active) svg {
  color: var(--hmr-purple-light);
}

.wh-hotspot-panels {
  position: relative;
  min-height: 200px;
}
.wh-hotspot-panel {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 44px 48px;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  opacity: 0;
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.wh-hotspot-panel.visible {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}
.wh-hotspot-panel-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--hmr-purple-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wh-hotspot-panel-icon svg {
  width: 24px;
  height: 24px;
  color: var(--hmr-purple);
}
.wh-hotspot-panel h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.wh-hotspot-panel p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-body);
}

/* ─── Packing Standards (sector-style cards) ─── */
.wh-packing {
  padding: 120px 0;
}
.wh-packing-header {
  text-align: center;
  margin-bottom: 60px;
}
.wh-packing-header .section-tag {
  justify-content: center;
}
.wh-packing-header .section-tag::before {
  display: none;
}
.wh-packing-header .section-sub {
  margin: 0 auto;
  text-align: center;
}

.wh-pack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.wh-pack-item {
  padding: 36px 28px 32px;
  border-radius: var(--radius);
  background: var(--white);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-light);
}
.wh-pack-item:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
  border-color: var(--hmr-purple-faint);
}
.wh-pack-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wh-pack-icon svg {
  width: 28px;
  height: 28px;
  color: var(--hmr-purple);
}
.wh-pack-item h4 {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 12px;
}
.wh-pack-item p {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
  text-wrap: pretty;
}

@media (max-width: 768px) {
  .wh-pack-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
}

.wh-accordion {
  max-width: 720px;
  margin: 0 auto;
}

.wh-acc-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow 0.35s ease;
}
.wh-acc-item:last-child {
  margin-bottom: 0;
}
.wh-acc-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.wh-acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.25s ease;
}
.wh-acc-trigger:hover {
  background: rgba(74, 26, 107, 0.02);
}
.wh-acc-trigger svg:first-child {
  width: 22px;
  height: 22px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: color 0.35s ease;
}
.wh-acc-trigger.active svg:first-child {
  color: var(--hmr-purple);
}
.wh-acc-trigger span:nth-child(2) {
  flex: 1;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-dark);
  text-align: left;
  letter-spacing: 0.1px;
}
.wh-acc-trigger.active span:nth-child(2) {
  font-weight: 500;
}
.wh-acc-arrow {
  display: flex;
  align-items: center;
  transition: transform 0.35s ease;
}
.wh-acc-arrow svg {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
}
.wh-acc-trigger.active .wh-acc-arrow {
  transform: rotate(180deg);
}

.wh-acc-body {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
  padding: 0 28px 0 66px;
}
.wh-acc-body.open {
  max-height: 300px;
  padding: 0 28px 24px 66px;
}
.wh-acc-body p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-body);
}

/* ─── CTA ─── */
.wh-cta {
  padding: 120px 0;
  background: var(--dark-section);
  position: relative;
  overflow: hidden;
}
.wh-cta-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}
.wh-cta-inner .section-title strong {
  color: var(--hmr-purple-light);
}
.wh-cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.wh-cta-btn-primary {
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: var(--white) !important;
  background: transparent !important;
  transition: all 0.35s ease !important;
}
.wh-cta-btn-primary:hover {
  color: var(--hmr-purple-light) !important;
  border-color: var(--hmr-purple-light) !important;
  background: transparent !important;
}
.wh-cta-btn-secondary {
  border-color: rgba(255, 255, 255, 0.15) !important;
  color: var(--text-muted-on-dark) !important;
  background: transparent !important;
  transition: all 0.35s ease !important;
}
.wh-cta-btn-secondary:hover {
  color: var(--hmr-purple-light) !important;
  border-color: var(--hmr-purple-light) !important;
  background: transparent !important;
}

/* ─── Warehousing Responsive ─── */
@media (max-width: 1024px) {
  .wh-hotspot-nav {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  .wh-hotspot-btn {
    padding: 20px 12px;
  }
}

@media (max-width: 768px) {
  .wh-hotspot-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .wh-hotspot-btn {
    padding: 20px 14px;
    gap: 10px;
  }
  .wh-hotspot-btn svg {
    width: 24px;
    height: 24px;
  }
  .wh-hotspot-label {
    font-size: 12px;
  }
  .wh-hotspot-panel {
    padding: 32px 28px;
    flex-direction: column;
    gap: 16px;
  }
  .wh-hotspot-panel h3 {
    font-size: 18px;
  }
  .wh-hotspot-panel p {
    font-size: 14px;
  }
  .wh-acc-body.open {
    padding: 0 20px 20px 20px;
  }
  .wh-acc-trigger {
    padding: 18px 20px;
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .wh-hero {
    height: 50vh;
    min-height: 360px;
  }
  .wh-intro {
    padding: 64px 0 56px;
  }
  .wh-intro-title {
    font-size: 28px;
  }
  .wh-intro-text {
    font-size: 15px;
  }
  .wh-container,
  .wh-packing,
  .wh-cta {
    padding: 80px 0;
  }
  .wh-hotspot-panel-icon {
    width: 44px;
    height: 44px;
  }
  .wh-hotspot-panel-icon svg {
    width: 20px;
    height: 20px;
  }
  .wh-cta-btns {
    flex-direction: column;
    align-items: center;
  }
  .wh-acc-trigger span:nth-child(2) {
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .wh-hero-title {
    font-size: 28px;
    letter-spacing: 2px;
  }
  .wh-hotspot-btn {
    padding: 16px 10px;
    gap: 8px;
  }
  .wh-hotspot-label {
    font-size: 11px;
  }
  .wh-hotspot-ring {
    width: 8px;
    height: 8px;
    top: 8px;
    right: 8px;
  }
}

@media (min-width: 1440px) {
  .wh-intro-inner {
    max-width: 780px;
  }
  .wh-hotspot-layout {
    max-width: 1060px;
  }
  .wh-accordion {
    max-width: 780px;
  }
}
@media (min-width: 1920px) {
  .wh-hotspot-nav {
    gap: 16px;
  }
  .wh-hotspot-layout {
    max-width: 1120px;
  }
}

/* ═══════════════════════════════════════════
   STORAGE SERVICES PAGE
   ═══════════════════════════════════════════ */

.stor-hero {
  position: relative;
  height: clamp(420px, 56.25vw, 800px);
  overflow: hidden;
}
.stor-hero-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.stor-hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.stor-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 46, 0.25) 0%,
    rgba(26, 26, 46, 0.55) 100%
  );
}
.stor-hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stor-hero-title {
  font-size: 44px;
  font-weight: 200;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
}

.stor-intro {
  padding: 96px 0 88px;
}
.stor-intro-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.stor-intro-inner .section-tag {
  justify-content: center;
}
.stor-intro-inner .section-tag::before {
  display: none;
}
.stor-intro-title {
  font-size: 36px;
  font-weight: 200;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 20px;
}
.stor-intro-title strong {
  font-weight: 600;
  color: var(--hmr-purple);
}
.stor-intro-line {
  width: 48px;
  height: 2px;
  background: var(--hmr-purple);
  margin: 0 auto 24px;
}
.stor-intro-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-body);
}

/* ─── Process Steps ─── */
.stor-process {
  padding: 120px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border-light);
}
.stor-process-header {
  text-align: center;
  margin-bottom: 60px;
}
.stor-process-header .section-tag {
  justify-content: center;
}
.stor-process-header .section-tag::before {
  display: none;
}
.stor-process-header .section-sub {
  margin: 0 auto;
  text-align: center;
}

.stor-steps {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  padding-left: 72px;
}
.stor-steps::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border-light);
}
.stor-step {
  position: relative;
  margin-bottom: 48px;
}
.stor-step:last-child {
  margin-bottom: 0;
}
.stor-step-num {
  position: absolute;
  left: -72px;
  top: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: var(--transition);
}
.stor-step-num span {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.35s ease;
}
.stor-step.visible .stor-step-num {
  border-color: var(--hmr-purple);
  box-shadow: 0 0 0 4px var(--hmr-purple-faint);
}
.stor-step.visible .stor-step-num span {
  color: var(--hmr-purple);
}
.stor-step-body h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 10px;
  padding-top: 4px;
}
.stor-step-body p {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-body);
}

/* ─── Know Before You Store ─── */
.stor-know {
  padding: 120px 0;
}
.stor-know-header {
  text-align: center;
  margin-bottom: 60px;
}
.stor-know-header .section-tag {
  justify-content: center;
}
.stor-know-header .section-tag::before {
  display: none;
}
.stor-know-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.stor-know-card {
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 40px 32px 36px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.5s ease,
    border-color 0.5s ease;
}
.stor-know-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--hmr-purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.stor-know-card:hover .stor-know-card-accent {
  transform: scaleX(1);
}
.stor-know-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(74, 26, 107, 0.08);
  border-color: rgba(74, 26, 107, 0.15);
}
.stor-know-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.stor-know-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stor-know-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--hmr-purple);
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.4s ease;
}
.stor-know-card:hover .stor-know-icon svg {
  transform: scale(1.08);
}
.stor-know-card h3 {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.3;
}
.stor-know-card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ─── Storage CTA ─── */
.stor-cta {
  padding: 120px 0;
  background: var(--dark-section);
}
.stor-cta-inner {
  text-align: center;
}
.stor-cta-inner .section-title strong {
  color: var(--hmr-purple-light);
}
.stor-cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.stor-cta-btn-primary {
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: var(--white) !important;
  background: transparent !important;
  transition: all 0.35s ease !important;
}
.stor-cta-btn-primary:hover {
  color: var(--hmr-purple-light) !important;
  border-color: var(--hmr-purple-light) !important;
}
.stor-cta-btn-secondary {
  border-color: rgba(255, 255, 255, 0.15) !important;
  color: var(--text-muted-on-dark) !important;
  background: transparent !important;
  transition: all 0.35s ease !important;
}
.stor-cta-btn-secondary:hover {
  color: var(--hmr-purple-light) !important;
  border-color: var(--hmr-purple-light) !important;
}

/* ─── Storage Responsive ─── */
@media (max-width: 768px) {
  .stor-know-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stor-steps {
    padding-left: 60px;
  }
  .stor-step-num {
    left: -60px;
    width: 48px;
    height: 48px;
  }
  .stor-step-num span {
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .stor-hero {
    height: 50vh;
    min-height: 360px;
  }
  .stor-intro {
    padding: 64px 0 56px;
  }
  .stor-intro-title {
    font-size: 28px;
  }
  .stor-process,
  .stor-know,
  .stor-cta {
    padding: 80px 0;
  }
  .stor-know-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
  .stor-cta-btns {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 420px) {
  .stor-hero-title {
    font-size: 28px;
    letter-spacing: 2px;
  }
}
@media (min-width: 1440px) {
  .stor-intro-inner {
    max-width: 780px;
  }
  .stor-steps {
    max-width: 740px;
  }
  .stor-know-grid {
    max-width: 1100px;
  }
}

/* ═══════════════════════════════════════════
   PACKING SERVICE PAGE
   ═══════════════════════════════════════════ */

.pack-hero {
  position: relative;
  height: clamp(420px, 56.25vw, 800px);
  overflow: hidden;
}
.pack-hero-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.pack-hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.pack-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 46, 0.25) 0%,
    rgba(26, 26, 46, 0.55) 100%
  );
}
.pack-hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pack-hero-title {
  font-size: 44px;
  font-weight: 200;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
}

.pack-intro {
  padding: 96px 0 88px;
}
.pack-intro-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.pack-intro-inner .section-tag {
  justify-content: center;
}
.pack-intro-inner .section-tag::before {
  display: none;
}
.pack-intro-title {
  font-size: 36px;
  font-weight: 200;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 20px;
}
.pack-intro-title strong {
  font-weight: 600;
  color: var(--hmr-purple);
}
.pack-intro-line {
  width: 48px;
  height: 2px;
  background: var(--hmr-purple);
  margin: 0 auto 24px;
}
.pack-intro-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-body);
}

/* ─── Material Showcase Cards ─── */
.pack-materials {
  padding: 120px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border-light);
}
.pack-materials-header {
  text-align: center;
  margin-bottom: 60px;
}
.pack-materials-header .section-tag {
  justify-content: center;
}
.pack-materials-header .section-tag::before {
  display: none;
}
.pack-materials-header .section-sub {
  margin: 0 auto;
  text-align: center;
}

/* Material-by-Item — dispatch-card style (label badge on top) */
.pack-mat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  max-width: 1060px;
  margin: 0 auto;
}
.pack-mat-card {
  grid-column: span 2;
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  background: var(--white);
  text-align: center;
  transition: var(--transition);
}
.pack-mat-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}
/* With 5 cards, centre the trailing 2 under the row of 3 */
.pack-mat-grid:has(> .pack-mat-card:nth-child(5):last-child) > .pack-mat-card:nth-child(4) {
  grid-column: 2 / span 2;
}
.pack-mat-grid:has(> .pack-mat-card:nth-child(5):last-child) > .pack-mat-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.pack-mat-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.pack-mat-label-a {
  background: rgba(74, 26, 107, 0.1);
  color: var(--hmr-purple);
}
.pack-mat-label-b {
  background: rgba(74, 26, 107, 0.06);
  color: var(--hmr-purple-light);
}
.pack-mat-label-c {
  background: var(--light-grey);
  color: var(--text-muted);
}

.pack-mat-card h4 {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.pack-mat-card p {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
  text-wrap: pretty;
}

/* ─── Professional Wrapping Advice ─── */
.pack-advice {
  padding: 80px 0;
}
.pack-advice-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 44px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: var(--white);
}
.pack-advice-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(74, 26, 107, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.pack-advice-icon svg {
  width: 22px;
  height: 22px;
  color: var(--hmr-purple);
}
.pack-advice-inner h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.pack-advice-inner p {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-body);
}

/* ─── Packing CTA ─── */
.pack-cta {
  padding: 120px 0;
  background: var(--dark-section);
}
.pack-cta-inner {
  text-align: center;
}
.pack-cta-inner .section-title strong {
  color: var(--hmr-purple-light);
}
.pack-cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.pack-cta-btn-primary {
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: var(--white) !important;
  background: transparent !important;
  transition: all 0.35s ease !important;
}
.pack-cta-btn-primary:hover {
  color: var(--hmr-purple-light) !important;
  border-color: var(--hmr-purple-light) !important;
}
.pack-cta-btn-secondary {
  border-color: rgba(255, 255, 255, 0.15) !important;
  color: var(--text-muted-on-dark) !important;
  background: transparent !important;
  transition: all 0.35s ease !important;
}
.pack-cta-btn-secondary:hover {
  color: var(--hmr-purple-light) !important;
  border-color: var(--hmr-purple-light) !important;
}

/* ─── Packing Responsive ─── */
@media (max-width: 1024px) {
  .pack-mat-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 760px;
  }
  .pack-mat-card,
  .pack-mat-grid:has(> .pack-mat-card:nth-child(5):last-child) > .pack-mat-card:nth-child(4),
  .pack-mat-grid:has(> .pack-mat-card:nth-child(5):last-child) > .pack-mat-card:nth-child(5) {
    grid-column: span 2;
  }
}
@media (max-width: 768px) {
  .pack-advice-inner {
    padding: 32px 28px;
  }
}
@media (max-width: 640px) {
  .pack-hero {
    height: 50vh;
    min-height: 360px;
  }
  .pack-intro {
    padding: 64px 0 56px;
  }
  .pack-intro-title {
    font-size: 28px;
  }
  .pack-materials,
  .pack-cta {
    padding: 80px 0;
  }
  .pack-advice {
    padding: 48px 0;
  }
  .pack-mat-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .pack-mat-card,
  .pack-mat-grid:has(> .pack-mat-card:nth-child(5):last-child) > .pack-mat-card:nth-child(4),
  .pack-mat-grid:has(> .pack-mat-card:nth-child(5):last-child) > .pack-mat-card:nth-child(5) {
    grid-column: auto;
  }
  .pack-cta-btns {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 420px) {
  .pack-hero-title {
    font-size: 28px;
    letter-spacing: 2px;
  }
}
@media (min-width: 1440px) {
  .pack-intro-inner {
    max-width: 780px;
  }
  .pack-mat-grid {
    max-width: 1180px;
  }
}

/* ═══════════════════════════════════════════
   SELF STORAGE (SIMPLY STORE) PAGE
   ═══════════════════════════════════════════ */

.ssrv-hero {
  position: relative;
  height: clamp(420px, 56.25vw, 800px);
  overflow: hidden;
}
.ssrv-hero-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.ssrv-hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.ssrv-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 46, 0.25) 0%,
    rgba(26, 26, 46, 0.55) 100%
  );
}
.ssrv-hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ssrv-hero-title {
  font-size: 44px;
  font-weight: 200;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
}

.ssrv-tag {
  color: var(--ss-orange) !important;
}
.ssrv-tag::after {
  background: var(--ss-orange) !important;
}

.ssrv-intro {
  padding: 96px 0 88px;
}
.ssrv-intro-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.ssrv-intro-inner .section-tag {
  justify-content: center;
}
.ssrv-intro-inner .section-tag::before {
  display: none;
}
.ssrv-intro-title {
  font-size: 36px;
  font-weight: 200;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 20px;
}
.ssrv-intro-title strong {
  font-weight: 600;
  color: var(--ss-orange);
}
.ssrv-intro-line {
  width: 48px;
  height: 2px;
  background: var(--ss-orange);
  margin: 0 auto 24px;
}
.ssrv-intro-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-body);
}

/* ─── Self Storage CTA (orange accents) ─── */
.ssrv-cta {
  padding: 120px 0;
  background: var(--dark-section);
}
.ssrv-cta-inner {
  text-align: center;
}
.ssrv-cta-inner .section-title strong {
  color: var(--ss-orange-light);
}
.ssrv-cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.ssrv-cta-btn-primary {
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: var(--white) !important;
  background: transparent !important;
  transition: all 0.35s ease !important;
}
.ssrv-cta-btn-primary:hover {
  color: var(--ss-orange-light) !important;
  border-color: var(--ss-orange-light) !important;
}
.ssrv-cta-btn-secondary {
  border-color: rgba(255, 255, 255, 0.15) !important;
  color: var(--text-muted-on-dark) !important;
  background: transparent !important;
  transition: all 0.35s ease !important;
}
.ssrv-cta-btn-secondary:hover {
  color: var(--ss-orange-light) !important;
  border-color: var(--ss-orange-light) !important;
}

/* ─── Self Storage Responsive ─── */
@media (max-width: 640px) {
  .ssrv-hero {
    height: 50vh;
    min-height: 360px;
  }
  .ssrv-intro {
    padding: 64px 0 56px;
  }
  .ssrv-intro-title {
    font-size: 28px;
  }
  .ssrv-cta {
    padding: 80px 0;
  }
  .ssrv-cta-btns {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 420px) {
  .ssrv-hero-title {
    font-size: 28px;
    letter-spacing: 2px;
  }
}
@media (min-width: 1440px) {
  .ssrv-intro-inner {
    max-width: 780px;
  }
}

/* ═══════════════════════════════════════════
   INSURANCE PAGE
   ═══════════════════════════════════════════ */

.ins-hero {
  position: relative;
  height: clamp(420px, 56.25vw, 800px);
  overflow: hidden;
}
.ins-hero-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.ins-hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.ins-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 46, 0.25) 0%,
    rgba(26, 26, 46, 0.55) 100%
  );
}
.ins-hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ins-hero-title {
  font-size: 44px;
  font-weight: 200;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
}

.ins-intro {
  padding: 96px 0 88px;
}
.ins-intro-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.ins-intro-inner .section-tag {
  justify-content: center;
}
.ins-intro-inner .section-tag::before {
  display: none;
}
.ins-intro-title {
  font-size: 36px;
  font-weight: 200;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 20px;
}
.ins-intro-title strong {
  font-weight: 600;
  color: var(--hmr-purple);
}
.ins-intro-line {
  width: 48px;
  height: 2px;
  background: var(--hmr-purple);
  margin: 0 auto 24px;
}
.ins-intro-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-body);
}

/* ─── Rules Grid ─── */
.ins-rules {
  padding: 120px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border-light);
}
.ins-rules-header {
  text-align: center;
  margin-bottom: 60px;
}
.ins-rules-header .section-tag {
  justify-content: center;
}
.ins-rules-header .section-tag::before {
  display: none;
}

.ins-rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.ins-rule-card {
  padding: 36px 28px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: var(--white);
  text-align: center;
  transition: var(--transition);
}
.ins-rule-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  transform: translateY(-3px);
}
.ins-rule-card svg {
  width: 32px;
  height: 32px;
  color: var(--hmr-purple);
  margin-bottom: 18px;
}
.ins-rule-card h4 {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.ins-rule-card p {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ─── Document Downloads ─── */
.ins-docs {
  padding: 120px 0;
}
.ins-docs-header {
  text-align: center;
  margin-bottom: 60px;
}
.ins-docs-header .section-tag {
  justify-content: center;
}
.ins-docs-header .section-tag::before {
  display: none;
}

.ins-docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.ins-doc-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 20px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: var(--white);
  text-decoration: none;
  transition: var(--transition);
}
.ins-doc-card:hover {
  border-color: rgba(74, 26, 107, 0.15);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}
.ins-doc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--hmr-purple-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ins-doc-icon svg {
  width: 22px;
  height: 22px;
  color: var(--hmr-purple);
}
.ins-doc-info {
  flex: 1;
  min-width: 0;
}
.ins-doc-info h4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.ins-doc-info span {
  font-size: 12.5px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.4;
}
.ins-doc-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--hmr-purple);
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--hmr-purple-faint);
  flex-shrink: 0;
}

/* ─── Insurance CTA ─── */
.ins-cta {
  padding: 120px 0;
  background: var(--dark-section);
}
.ins-cta-inner {
  text-align: center;
}
.ins-cta-inner .section-title strong {
  color: var(--hmr-purple-light);
}
.ins-cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.ins-cta-btn-primary {
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: var(--white) !important;
  background: transparent !important;
  transition: all 0.35s ease !important;
}
.ins-cta-btn-primary:hover {
  color: var(--hmr-purple-light) !important;
  border-color: var(--hmr-purple-light) !important;
}
.ins-cta-btn-secondary {
  border-color: rgba(255, 255, 255, 0.15) !important;
  color: var(--text-muted-on-dark) !important;
  background: transparent !important;
  transition: all 0.35s ease !important;
}
.ins-cta-btn-secondary:hover {
  color: var(--hmr-purple-light) !important;
  border-color: var(--hmr-purple-light) !important;
}

/* ─── Insurance Responsive ─── */
@media (max-width: 900px) {
  .ins-docs-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 760px;
  }
}
@media (max-width: 768px) {
  .ins-rules-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }
}
@media (max-width: 560px) {
  .ins-docs-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
}
@media (max-width: 640px) {
  .ins-hero {
    height: 50vh;
    min-height: 360px;
  }
  .ins-intro {
    padding: 64px 0 56px;
  }
  .ins-intro-title {
    font-size: 28px;
  }
  .ins-rules,
  .ins-docs,
  .ins-cta {
    padding: 80px 0;
  }
  .ins-doc-card {
    padding: 20px 20px;
    gap: 14px;
  }
  .ins-cta-btns {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 420px) {
  .ins-hero-title {
    font-size: 28px;
    letter-spacing: 2px;
  }
  .ins-doc-info h4 {
    font-size: 14px;
  }
}
@media (min-width: 1440px) {
  .ins-intro-inner {
    max-width: 780px;
  }
  .ins-rules-grid {
    max-width: 1060px;
  }
  .ins-docs-grid {
    max-width: 1200px;
  }
}

/* ═══════════════════════════════════════════
   GET A QUOTE / CONTACT PAGE
   ═══════════════════════════════════════════ */

/* Page-scoped overrides:
   - swap the purple accent for a neutral charcoal
   - bump border + muted-text contrast so cards/labels are readable */
.qt-hero,
.qt-main {
  --hmr-purple: #2d2d3d;
  --hmr-purple-dark: #1a1a2e;
  --hmr-purple-light: #5a5a6a;
  --hmr-purple-faint: rgba(45, 45, 61, 0.07);
  --border-light: rgba(0, 0, 0, 0.14);
  --text-muted: #6a6a7a;
}

/* ─── Hero (image-based) ─── */
.qt-hero {
  position: relative;
  height: clamp(420px, 56.25vw, 800px);
  overflow: hidden;
}
.qt-hero-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.qt-hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.qt-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 46, 0.3) 0%,
    rgba(26, 26, 46, 0.6) 100%
  );
}
.qt-hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}
.qt-hero-title {
  font-size: 44px;
  font-weight: 200;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.qt-hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted-on-dark);
}

/* ─── Main Layout ─── */
.qt-main {
  padding: 72px 0 120px;
}
.qt-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.qt-intro-title {
  font-size: 28px;
  font-weight: 300;
  color: var(--text-dark);
  letter-spacing: 0.3px;
  margin-bottom: 12px;
}
.qt-intro-text {
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-body);
}
.qt-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  max-width: 1060px;
  margin: 0 auto;
  align-items: start;
}

/* ─── Form ─── */
.qt-form {
  position: relative;
}
/* Honeypot — visually hidden but still in the DOM so bots fill it.
   We avoid display:none / visibility:hidden because some bots skip those. */
.qt-hp {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.qt-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 36px;
}
.qt-legend {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 18px;
  display: block;
  letter-spacing: 0.2px;
}

/* Service pills */
.qt-service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.qt-pill {
  cursor: pointer;
}
.qt-pill input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.qt-pill span {
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  padding: 10px 20px;
  border: 1px solid var(--border-light);
  border-radius: 24px;
  color: var(--text-muted);
  background: var(--white);
  transition: var(--transition);
  letter-spacing: 0.2px;
}
.qt-pill input:checked + span {
  border-color: var(--hmr-purple);
  color: var(--hmr-purple);
  background: var(--hmr-purple-faint);
  font-weight: 500;
}
.qt-pill:hover span {
  border-color: rgba(45, 45, 61, 0.25);
}

/* Fields */
.qt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.qt-row:last-child {
  margin-bottom: 0;
}
.qt-field {
  position: relative;
}
.qt-field-full {
  margin-bottom: 0;
}
.qt-field input,
.qt-field select,
.qt-field textarea {
  width: 100%;
  padding: 18px 16px 6px;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.25s ease;
  -webkit-appearance: none;
}
.qt-field textarea {
  resize: vertical;
  min-height: 100px;
}
.qt-field select {
  cursor: pointer;
}
.qt-field input:focus,
.qt-field select:focus,
.qt-field textarea:focus {
  border-color: var(--hmr-purple);
}

/* Floating labels */
.qt-field label {
  position: absolute;
  left: 16px;
  top: 14px;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  pointer-events: none;
  transition: all 0.2s ease;
  background: transparent;
}
.qt-field input:focus + label,
.qt-field input:not(:placeholder-shown) + label,
.qt-field textarea:focus + label,
.qt-field textarea:not(:placeholder-shown) + label,
.qt-field select:focus + label,
.qt-field select:not([value=""]):valid + label {
  top: 4px;
  font-size: 10px;
  font-weight: 500;
  color: var(--hmr-purple);
  letter-spacing: 0.4px;
}
/* Select and date always show label up */
.qt-label-date,
.qt-field select + label {
  top: 4px;
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.4px;
}
.qt-field select:focus + label {
  color: var(--hmr-purple);
}
.qt-req {
  color: var(--hmr-purple);
}

/* Checkbox */
.qt-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}
.qt-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-body);
}
.qt-checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.qt-checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-light);
  border-radius: 4px;
  flex-shrink: 0;
  position: relative;
  transition: var(--transition);
}
.qt-checkbox input:checked ~ .qt-checkmark {
  border-color: var(--hmr-purple);
  background: var(--hmr-purple);
}
.qt-checkbox input:checked ~ .qt-checkmark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.qt-checkbox a {
  color: var(--hmr-purple);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Submit button */
.qt-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hmr-purple);
  background: transparent;
  border: 1px solid var(--hmr-purple);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.qt-submit:hover {
  background: var(--hmr-purple);
  border-color: var(--hmr-purple);
  color: var(--white);
}
.qt-submit-loader {
  display: none;
}
.qt-submit-loader svg {
  width: 18px;
  height: 18px;
  color: currentColor;
}
.qt-form.sending .qt-submit-text {
  display: none;
}
.qt-form.sending .qt-submit-loader {
  display: flex;
}

/* Success state */
.qt-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
}
.qt-form.sent .qt-fieldset,
.qt-form.sent .qt-footer,
.qt-form.sent .qt-error-msg {
  display: none;
}
.qt-form.sent .qt-success {
  display: block;
}
.qt-success svg {
  width: 48px;
  height: 48px;
  color: var(--hmr-purple);
  margin-bottom: 16px;
}
.qt-success h3 {
  font-size: 22px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.qt-success p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-body);
}

/* Error states */
.qt-field input.qt-error,
.qt-field select.qt-error,
.qt-field textarea.qt-error {
  border-color: #c0392b;
}
.qt-checkbox.qt-error .qt-checkmark {
  border-color: #c0392b;
}
.qt-error-msg {
  padding: 14px 20px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  background: rgba(192, 57, 43, 0.06);
  border: 1px solid rgba(192, 57, 43, 0.15);
  font-size: 13.5px;
  font-weight: 400;
  color: #c0392b;
  line-height: 1.5;
}
.qt-form.sending .qt-submit {
  background: var(--hmr-purple);
  border-color: var(--hmr-purple);
  color: var(--white);
  opacity: 0.85;
  pointer-events: none;
}

/* ─── Sidebar ─── */
.qt-sidebar {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.qt-sidebar-card {
  padding: 28px 24px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: var(--white);
}
.qt-sidebar-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.3px;
  margin-bottom: 14px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
}
.qt-sidebar-phone {
  display: block;
  font-size: 24px;
  font-weight: 300;
  color: var(--hmr-purple);
  text-decoration: none;
  letter-spacing: 1px;
  margin-bottom: 4px;
  transition: color 0.25s ease;
}
.qt-sidebar-phone:hover {
  color: var(--hmr-purple-light);
}
.qt-sidebar-note {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
}

.qt-branch {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}
.qt-branch:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.qt-branch strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.qt-branch span {
  display: block;
  font-size: 12.5px;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 4px;
  line-height: 1.4;
}
.qt-branch a {
  font-size: 13px;
  font-weight: 400;
  color: var(--hmr-purple);
  text-decoration: none;
}
.qt-branch a:hover {
  text-decoration: underline;
}

.qt-sidebar-hours .qt-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--border-light);
}
.qt-sidebar-hours .qt-hours-row:last-child {
  border-bottom: none;
}
.qt-sidebar-hours .qt-hours-row span:first-child {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-dark);
}
.qt-sidebar-hours .qt-hours-row span:last-child {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
}

/* ─── Quote Responsive ─── */
@media (max-width: 1024px) {
  .qt-layout {
    grid-template-columns: 1fr 280px;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .qt-layout {
    grid-template-columns: 1fr;
  }
  .qt-sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .qt-sidebar-card {
    flex: 1 1 calc(50% - 8px);
    min-width: 240px;
  }
}
@media (max-width: 640px) {
  .qt-hero {
    padding: 120px 0 40px;
  }
  .qt-hero-title {
    font-size: 32px;
    letter-spacing: 3px;
  }
  .qt-main {
    padding: 48px 0 80px;
  }
  .qt-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .qt-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .qt-submit {
    width: 100%;
    justify-content: center;
  }
  .qt-sidebar-card {
    flex: 1 1 100%;
  }
  .qt-service-pills {
    gap: 6px;
  }
  .qt-pill span {
    font-size: 12px;
    padding: 8px 14px;
  }
}
@media (max-width: 420px) {
  .qt-hero-title {
    font-size: 26px;
    letter-spacing: 2px;
  }
}
@media (min-width: 1440px) {
  .qt-layout {
    max-width: 1120px;
    grid-template-columns: 1fr 340px;
    gap: 56px;
  }
}

/* ═══════════════════════════════════════════
   GLOBAL DESCRIPTION TYPOGRAPHY
   Card descriptions, intro copy and section subs
   standardised at 16px / weight 500.
   ═══════════════════════════════════════════ */
.section-sub,
.service-card p,
.about-feature p,
.about-intro-inner p,
.ss-tl-step p,
.ss-feature-card p,
.ss-how-card p,
.ss-why-card p,
.ss-intro-text,
.res-tl-card p,
.res-inc-card p,
.res-intro-text,
.of-phase-card p,
.of-diff-item p,
.of-sector-item p,
.of-intro-text,
.log-flip-back p,
.log-intro-text,
.dist-tab-panel p,
.dist-dispatch-card p,
.dist-intro-text,
.wh-hotspot-panel p,
.wh-pack-item p,
.wh-acc-body p,
.wh-intro-text,
.stor-step-body p,
.stor-know-card p,
.stor-intro-text,
.pack-mat-card p,
.pack-advice-inner p,
.pack-intro-text,
.ssrv-intro-text,
.ins-rule-card p,
.ins-intro-text,
.ins-doc-info span,
.qt-intro-text {
  font-size: 16px;
  font-weight: 500;
  text-wrap: pretty;
}

