/*==========================================================
  ORIGAMI — Health Suite Page  (hs-page.css)
  Matches main site design system: dark/orange palette
  Standalone CSS — no dependency on other site CSS files
==========================================================*/

/* ── RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body.hs-body {
  font-family: 'Rubik', system-ui, -apple-system, sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  background: #fff;
  color: #1C2533;
  overflow-x: hidden;
}

/* Accent strip at top */
body.hs-body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, #B83227, #E67E22, #F0B429, #E86020, #E67E22, #B83227);
  background-size: 300%;
  animation: hsGrad 5s linear infinite;
  z-index: 9999;
  box-shadow: 0 1px 12px rgba(230,126,34,0.3);
}
@keyframes hsGrad { 0% { background-position:0%; } 100% { background-position:300%; } }

/* ── COLOUR TOKENS ───────────────────────────────────────── */
:root {
  --c-orange:   #E67E22;
  --c-red:      #B83227;
  --c-gold:     #F0B429;
  --c-dark:     #0d1117;
  --c-dark-2:   #1a0d06;
  --c-white:    #ffffff;
  --c-text:     #1C2533;
  --c-muted:    #5A6A7A;
  --c-tint:     #FEF3E6;
  --c-border:   #FDDDB4;
}

/* ── SHARED UTILITIES ────────────────────────────────────── */
.hs-eyebrow {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 1.2rem;
}

.hs-section-h2 {
  font-size: clamp(3.2rem, 4vw, 5.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--c-text);
}
.hs-h2-white { color: #fff !important; }
.hs-h2-accent {
  background: linear-gradient(135deg, #B83227 0%, #E67E22 50%, #F0B429 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hs-section-head {
  text-align: center;
  margin-bottom: 6.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hs-section-head-dark .hs-section-sub {
  color: rgba(255,255,255,0.45);
  max-width: 58rem;
  font-size: 1.65rem;
  line-height: 1.7;
  margin-top: 1.6rem;
}

/* Buttons */
.hs-btn-primary {
  display: inline-flex; align-items: center; gap: 0.9rem;
  padding: 1.4rem 3.2rem;
  background: linear-gradient(135deg, var(--c-red), var(--c-orange));
  color: #fff;
  font-size: 1.55rem; font-weight: 700;
  border-radius: 999px; text-decoration: none; border: none;
  box-shadow: 0 6px 28px rgba(184,50,39,0.38);
  cursor: pointer;
  transition: filter 0.22s, transform 0.15s, box-shadow 0.22s;
}
.hs-btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(184,50,39,0.55);
}
.hs-btn-primary ion-icon { font-size: 1.8rem; }

.hs-btn-ghost {
  display: inline-flex; align-items: center; gap: 0.8rem;
  padding: 1.4rem 3.2rem;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-size: 1.55rem; font-weight: 600;
  border-radius: 999px; text-decoration: none;
  border: 2px solid rgba(255,255,255,0.32);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}
.hs-btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.65);
  color: #fff;
  transform: translateY(-2px);
}
.hs-btn-ghost ion-icon { font-size: 1.8rem; }
.hs-btn-large { padding: 1.7rem 4rem; font-size: 1.7rem; }


/* ══════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════ */
.hs-header {
  position: fixed;
  top: 5px; left: 0; right: 0;
  height: 6.8rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5.6rem;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid #FDDDB4;
  box-shadow: 0 2px 24px rgba(230,126,34,0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow 0.3s;
}
.hs-header-scrolled {
  box-shadow: 0 4px 32px rgba(28,37,51,0.1);
}

.hs-logo {
  display: flex; align-items: center; gap: 1.2rem;
  text-decoration: none; flex-shrink: 0;
}
.hs-logo img { height: 3.6rem; }
.hs-logo span {
  font-size: 2rem; font-weight: 800; letter-spacing: 0.2rem;
  background: linear-gradient(135deg, #E67E22, #CF711F);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hs-nav {
  display: flex; align-items: center; gap: 0.4rem;
}
.hs-nav-link {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  font-size: 1.45rem; font-weight: 500;
  color: rgba(28,37,51,0.65);
  text-decoration: none; border-radius: 999px;
  transition: color 0.18s, background 0.18s;
}
.hs-nav-link:hover { color: #1C2533; background: #FEF0E0; }
.hs-nav-active { color: var(--c-orange) !important; background: rgba(230,126,34,0.08); font-weight: 600; }
.hs-nav-cta {
  background: var(--c-orange); color: #fff !important;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(230,126,34,0.32);
}
.hs-nav-cta:hover { background: #CF711F !important; }

/* Hamburger */
.hs-hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 4rem; height: 4rem;
  background: none; border: none; cursor: pointer; padding: 6px;
  border-radius: 8px; z-index: 1002;
}
.hs-hamburger span {
  display: block; height: 2px; background: #1C2533;
  border-radius: 2px; transition: transform 0.32s, opacity 0.22s, width 0.28s;
}
.hs-hamburger span:nth-child(1) { width: 22px; }
.hs-hamburger span:nth-child(2) { width: 15px; }
.hs-hamburger span:nth-child(3) { width: 22px; }
.hs-ham-open span:nth-child(1) { transform: rotate(42deg) translateY(-1px); }
.hs-ham-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hs-ham-open span:nth-child(3) { transform: rotate(-42deg) translateY(1px); }

/* Mobile menu */
.hs-mobile-menu {
  display: none; position: fixed; inset: 0;
  z-index: 998;
  background: linear-gradient(145deg, #1C2533, #2d1f0a, #8F4A0A);
  flex-direction: column; align-items: center; justify-content: center; gap: 0.8rem;
}
.hs-mobile-menu.hs-menu-open { display: flex; animation: hsMobIn 0.3s ease; }
@keyframes hsMobIn { from { opacity:0; } to { opacity:1; } }
.hs-mobile-menu a {
  font-size: 3.6rem; font-weight: 700; color: rgba(255,255,255,0.8);
  text-decoration: none; padding: 0.8rem 3rem; border-radius: 1.2rem;
  transition: color 0.18s, background 0.18s;
}
.hs-mobile-menu a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.hs-mob-cta {
  margin-top: 2.4rem;
  background: var(--c-orange) !important;
  color: #fff !important;
  font-size: 1.8rem !important;
  border-radius: 999px !important;
  padding: 1.4rem 4rem !important;
  box-shadow: 0 8px 32px rgba(230,126,34,0.4);
}


/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hs-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--c-dark);
}

.hs-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hs-hero-vignette {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right, rgba(13,8,4,0.92) 0%, rgba(13,8,4,0.72) 42%, rgba(13,8,4,0.25) 70%, rgba(13,8,4,0.08) 100%),
    linear-gradient(to top, rgba(13,8,4,0.65) 0%, transparent 40%);
}

.hs-hero-pattern {
  position: absolute; inset: 0; z-index: 2;
  background-image: radial-gradient(circle, rgba(240,180,41,0.18) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hs-hero-deco {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
}
.hd-face {
  position: absolute; opacity: 0.065;
}
.hd-face-1 {
  right: -5%; top: -10%; width: 55vw; height: 65vh;
  background: linear-gradient(135deg, #B83227, #E67E22, #F0B429);
  clip-path: polygon(100% 0%, 100% 100%, 20% 0%);
}
.hd-face-2 {
  right: 0; bottom: 0; width: 28vw; height: 35vh;
  background: linear-gradient(135deg, #F0B429, #F8D060);
  clip-path: polygon(100% 100%, 0% 100%, 100% 20%);
  opacity: 0.04;
}
.hd-crease {
  position: absolute; width: 1px; transform-origin: top right;
  background: rgba(248,208,96,0.16);
}
.hd-crease-1 { right: 0; top: 0; height: 70vh; transform: rotate(-24deg); }

.hs-hero-inner {
  position: relative; z-index: 4;
  width: 100%; max-width: 158rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 6rem;
  padding: 12rem 7.2rem 8rem;
}

/* ── Hero badge ── */
.hs-hero-badge {
  display: inline-flex; align-items: center; gap: 0.8rem;
  padding: 0.6rem 1.8rem;
  background: rgba(230,126,34,0.18);
  border: 1px solid rgba(230,126,34,0.4);
  border-radius: 999px;
  font-size: 1.2rem; font-weight: 700; letter-spacing: 0.1em;
  color: #F0B429; text-transform: uppercase;
  margin-bottom: 2.8rem;
}
.hs-hero-badge svg { stroke: #F0B429; flex-shrink: 0; }

/* ── Hero headline ── */
.hs-hero-h1 {
  font-size: clamp(4rem, 5.5vw, 7.2rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 2.4rem;
}
.hs-hero-accent {
  background: linear-gradient(135deg, #B83227 0%, #E67E22 45%, #F0B429 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hs-hero-sub {
  font-size: 1.7rem; line-height: 1.75;
  color: rgba(255,255,255,0.6);
  max-width: 52rem; margin-bottom: 4rem;
}

.hs-hero-actions {
  display: flex; gap: 1.4rem; flex-wrap: wrap;
  margin-bottom: 5.6rem;
}

/* ── Hero stats bar ── */
.hs-hero-stats {
  display: flex; align-items: center; gap: 2.4rem; flex-wrap: wrap;
}
.hs-hstat {}
.hs-hstat-n {
  display: block; font-size: 2.8rem; font-weight: 800;
  color: var(--c-gold); line-height: 1; margin-bottom: 0.3rem;
}
.hs-hstat:nth-child(1) .hs-hstat-n { color: #D4401C; }
.hs-hstat:nth-child(3) .hs-hstat-n { color: #E86020; }
.hs-hstat:nth-child(5) .hs-hstat-n { color: #E8981A; }
.hs-hstat:nth-child(7) .hs-hstat-n { color: var(--c-gold); }
.hs-hstat-l { font-size: 1.2rem; color: rgba(255,255,255,0.45); font-weight: 500; }
.hs-hstat-sep { width: 1px; height: 3.6rem; background: rgba(255,255,255,0.12); flex-shrink: 0; }

/* ── Hero right: preview stack ── */
.hs-hero-right {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 2.4rem;
}

.hs-live-badge {
  display: inline-flex; align-items: center; gap: 0.8rem;
  padding: 0.6rem 1.4rem;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 999px;
  font-size: 1.2rem; font-weight: 600; color: #4ade80;
}
.hs-live-dot {
  width: 0.8rem; height: 0.8rem; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
  animation: hsPulse 2s ease-in-out infinite;
}
@keyframes hsPulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
  50%      { box-shadow: 0 0 0 6px rgba(34,197,94,0.06); }
}

.hs-preview-stack {
  position: relative;
  width: 100%;
  max-width: 52rem;
  height: 36rem;
}
.hs-preview-card {
  position: absolute;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 1.4rem;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  transition: transform 0.3s;
}
.hs-preview-card:hover { transform: translateY(-4px) scale(1.02); }
.hs-preview-card img { width: 100%; display: block; }
.hs-preview-card span {
  display: block;
  font-size: 1.1rem; font-weight: 600;
  color: rgba(255,255,255,0.6);
  padding: 0.6rem 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hs-preview-card-1 { width: 70%; top: 0; right: 0; z-index: 3; }
.hs-preview-card-2 { width: 58%; top: 28%; left: 0; z-index: 2; }
.hs-preview-card-3 { width: 56%; bottom: 0; right: 8%; z-index: 4; }

.hs-hero-metric {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 2rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  font-size: 1.35rem; color: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
}
.hs-metric-up {
  font-size: 1.25rem; font-weight: 700; color: #4ade80;
  background: rgba(34,197,94,0.15);
  padding: 0.2rem 0.8rem; border-radius: 999px;
}

.hs-scroll-cue {
  position: absolute; bottom: 3.2rem; right: 5.6rem;
  z-index: 5; display: flex; flex-direction: column;
  align-items: center; gap: 0.8rem;
}
.hs-scroll-cue span {
  font-size: 1.1rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
}
.hs-scroll-line {
  width: 1px; height: 3.6rem;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: hsScrollPulse 1.8s ease-in-out infinite;
}
@keyframes hsScrollPulse {
  0%,100% { opacity:0.5; transform:scaleY(1); }
  50%      { opacity:1;   transform:scaleY(1.15); }
}


/* ══════════════════════════════════════════════════════════
   MEDIA DOWNLOADS
══════════════════════════════════════════════════════════ */
.hs-media {
  background: #fff;
  padding: 12rem 7.2rem 10rem;
  scroll-margin-top: 7.5rem;
}
.hs-media-inner { max-width: 148rem; margin: 0 auto; }

.hs-media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.8rem;
}

/* scroll-in animation */
[data-hs-media] {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.23,1,0.32,1);
}
[data-hs-media].hs-anim-visible { opacity: 1; transform: translateY(0); }

.hs-media-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 2rem;
  overflow: hidden;
  text-decoration: none;
  color: var(--c-text);
  display: flex; flex-direction: column;
  box-shadow: 0 4px 20px rgba(28,37,51,0.05);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.hs-media-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(230,126,34,0.12);
  border-color: rgba(230,126,34,0.35);
}

/* Thumbnail area */
.hs-media-thumb {
  position: relative;
  width: 100%; aspect-ratio: 16/9;
  overflow: hidden;
}
.hs-media-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s;
}
.hs-media-card:hover .hs-media-thumb img { transform: scale(1.05); }

.hs-media-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent 55%);
}

.hs-media-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 5.6rem; height: 5.6rem; border-radius: 50%;
  background: rgba(230,126,34,0.88);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.22s, background 0.22s;
  box-shadow: 0 8px 24px rgba(230,126,34,0.45);
}
.hs-media-play svg { width: 2rem; height: 2rem; fill: #fff; margin-left: 0.3rem; }
.hs-media-card:hover .hs-media-play { transform: translate(-50%, -50%) scale(1.12); }

/* Flat thumbnail for non-video cards */
.hs-media-thumb-flat { overflow: hidden; }
.hs-brochure-bg { background: linear-gradient(135deg, #0f0806, #1a0d06); }
.hs-manual-bg   { background: linear-gradient(135deg, #070d14, #0a1220); }

.hs-brochure-art {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.hs-brochure-fold {
  position: absolute;
  width: 60%; height: 70%;
  border: 1.5px solid rgba(230,126,34,0.2);
  border-radius: 0.8rem;
  transform: rotate(-8deg);
}
.hs-brochure-fold-2 { width: 55%; height: 65%; transform: rotate(5deg); border-color: rgba(240,180,41,0.12); }
.hs-brochure-icon {
  width: 5.6rem; height: 5.6rem;
  stroke: rgba(230,126,34,0.7);
  position: relative; z-index: 1;
}

/* Info row */
.hs-media-info {
  display: flex; align-items: flex-start; gap: 1.6rem;
  padding: 2.4rem;
}
.hs-media-icon-wrap {
  width: 4.4rem; height: 4.4rem;
  border-radius: 1.1rem; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.hs-media-icon-wrap svg { width: 2.2rem; height: 2.2rem; }
.hs-media-icon-video  { background: rgba(230,126,34,0.12); border: 1px solid rgba(230,126,34,0.25); }
.hs-media-icon-video svg { stroke: var(--c-orange); }
.hs-media-icon-pdf    { background: rgba(239,68,68,0.1);  border: 1px solid rgba(239,68,68,0.2); }
.hs-media-icon-pdf svg { stroke: #EF4444; }
.hs-media-icon-manual { background: rgba(14,165,233,0.1); border: 1px solid rgba(14,165,233,0.2); }
.hs-media-icon-manual svg { stroke: #0EA5E9; }

.hs-media-info > div { display: flex; flex-direction: column; gap: 0.5rem; }
.hs-media-info strong { font-size: 1.6rem; font-weight: 700; color: var(--c-text); }
.hs-media-info span   { font-size: 1.35rem; color: var(--c-muted); line-height: 1.55; }
.hs-media-cta {
  font-size: 1.35rem; font-weight: 700; color: var(--c-orange);
  margin-top: 0.4rem;
  transition: gap 0.15s;
}


/* ══════════════════════════════════════════════════════════
   MODULES ACCORDION
══════════════════════════════════════════════════════════ */
.hs-modules {
  background: linear-gradient(160deg, #FEF8F0 0%, #FFFAF5 50%, #FEF3E6 100%);
  padding: 12rem 7.2rem 10rem;
  scroll-margin-top: 7.5rem;
}
.hs-modules-inner { max-width: 158rem; margin: 0 auto; }
.hs-modules .hs-section-h2 { color: var(--c-text); }
.hs-modules-subtext {
  font-size: 1.6rem;
  color: var(--c-muted);
  line-height: 1.7;
  max-width: 56rem;
  text-align: center;
  margin-top: 1.2rem;
}

.hs-accordion { display: flex; flex-direction: column; gap: 1.2rem; }

.hs-acc-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.6rem;
  overflow: hidden;
  transition: border-color 0.22s, background 0.22s;
}
.hs-acc-item:hover,
.hs-acc-item.hs-open {
  border-color: rgba(230,126,34,0.35);
  background: rgba(230,126,34,0.04);
}

.hs-acc-hdr {
  width: 100%; display: flex; align-items: center; gap: 2rem;
  padding: 2.2rem 2.8rem;
  background: none; border: none; cursor: pointer;
  text-align: left;
  transition: padding 0.2s;
}
.hs-acc-hdr:hover { padding-left: 3.2rem; }

.hs-acc-thumb {
  width: 5.6rem; height: 5.6rem;
  border-radius: 1.1rem;
  object-fit: cover; object-position: top left;
  flex-shrink: 0;
  border: 1px solid rgba(230,126,34,0.2);
  background: rgba(255,255,255,0.04);
}

.hs-acc-meta {
  flex: 1; display: flex; flex-direction: column; gap: 0.4rem;
}
.hs-acc-meta strong {
  font-size: 1.65rem; font-weight: 700;
  color: rgba(255,255,255,0.92);
}
.hs-acc-meta span {
  font-size: 1.35rem; color: rgba(255,255,255,0.42); line-height: 1.5;
}

.hs-acc-chevron {
  width: 3.2rem; height: 3.2rem; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  transition: transform 0.32s cubic-bezier(0.23,1,0.32,1), background 0.2s, color 0.2s;
}
.hs-acc-chevron svg { width: 1.6rem; height: 1.6rem; stroke: currentColor; }
.hs-acc-item.hs-open .hs-acc-chevron {
  transform: rotate(180deg);
  background: rgba(230,126,34,0.2);
  border-color: rgba(230,126,34,0.4);
  color: var(--c-orange);
}

/* Accordion body */
.hs-acc-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.23,1,0.32,1), padding 0.3s;
  padding: 0 2.8rem;
}
.hs-acc-item.hs-open .hs-acc-body {
  max-height: 120rem;
  padding: 0 2.8rem 3.2rem;
}

.hs-acc-desc {
  font-size: 1.5rem; color: rgba(255,255,255,0.55);
  line-height: 1.72; margin-bottom: 3.2rem;
  padding-top: 0.4rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 2rem;
}

/* Sub-module grid */
.hs-submod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
  gap: 1.2rem;
}
.hs-submod {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1.2rem;
  overflow: hidden;
  transition: border-color 0.22s, transform 0.18s, background 0.22s;
  cursor: default;
}
.hs-submod:hover {
  border-color: rgba(230,126,34,0.3);
  transform: translateY(-3px);
  background: rgba(230,126,34,0.04);
}
.hs-submod img {
  width: 100%; display: block;
  aspect-ratio: 16/10; object-fit: cover; object-position: top left;
}
.hs-submod span {
  display: block; font-size: 1.2rem; font-weight: 600;
  color: rgba(255,255,255,0.55);
  padding: 0.9rem 1.2rem;
  line-height: 1.4;
}


/* ══════════════════════════════════════════════════════════
   MODULE CARDS
══════════════════════════════════════════════════════════ */
.hs-mod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
  gap: 1.4rem;
  margin-bottom: 3.2rem;
}

.hs-mod-card {
  background: #fff;
  border: 1px solid rgba(230,126,34,0.15);
  border-radius: 1.8rem;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 16px rgba(28,37,51,0.06);
  transition:
    transform 0.3s cubic-bezier(0.23,1,0.32,1),
    border-color 0.25s,
    box-shadow 0.3s;
}
.hs-mod-card:hover {
  transform: translateY(-10px);
  border-color: rgba(230,126,34,0.5);
  box-shadow: 0 20px 56px rgba(230,126,34,0.14), 0 4px 16px rgba(28,37,51,0.08);
}
.hs-mod-card.hs-mod-active {
  border-color: var(--c-orange);
  box-shadow: 0 0 0 2px rgba(230,126,34,0.18), 0 16px 40px rgba(230,126,34,0.12);
}

.hs-mod-card-top {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #ffffff;
}
.hs-mod-card-top img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top left;
  display: block;
  transition: transform 0.55s cubic-bezier(0.23,1,0.32,1);
}
.hs-mod-card:hover .hs-mod-card-top img { transform: scale(1.07); }

.hs-mod-num {
  position: absolute;
  top: 0.7rem; right: 0.9rem;
  font-size: 0.95rem; font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.28);
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hs-mod-card-body {
  padding: 1.2rem 1.4rem 1.4rem;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.hs-mod-card-body > strong {
  font-size: 1.45rem; font-weight: 700;
  color: var(--c-text);
  display: block;
}
.hs-mod-card-body > p {
  font-size: 1.2rem;
  color: var(--c-muted);
  line-height: 1.5;
  margin: 0;
}
.hs-mod-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 0.8rem;
}
.hs-mod-badge {
  font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(230,126,34,0.75);
  background: rgba(230,126,34,0.1);
  border: 1px solid rgba(230,126,34,0.18);
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
}
.hs-mod-arrow {
  font-size: 1.4rem;
  color: rgba(28,37,51,0.2);
  transition: color 0.22s, transform 0.22s;
  line-height: 1;
}
.hs-mod-card:hover .hs-mod-arrow,
.hs-mod-card.hs-mod-active .hs-mod-arrow {
  color: rgba(230,126,34,0.8);
  transform: translateX(5px);
}

/* ── DETAIL PANEL ── */
.hs-mod-detail {
  border: 1px solid rgba(230,126,34,0.25);
  border-radius: 2rem;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 0.55s cubic-bezier(0.23,1,0.32,1),
    opacity 0.4s ease,
    margin-bottom 0.4s;
  margin-bottom: 0;
  background: #fff;
  box-shadow: 0 4px 32px rgba(230,126,34,0.08);
}
.hs-mod-detail.hs-mod-detail-open {
  max-height: 130rem;
  opacity: 1;
  margin-bottom: 4.8rem;
}

.hs-mod-detail-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 2.4rem 2.8rem 2rem;
  border-bottom: 1px solid rgba(230,126,34,0.1);
  gap: 2rem;
  background: #FFFAF5;
}
.hs-mod-detail-title {
  display: flex; align-items: center; gap: 1.6rem;
}
.hs-mod-detail-title img {
  width: 5.6rem; height: 5.6rem;
  border-radius: 1.2rem;
  object-fit: cover; object-position: top left;
  border: 1px solid rgba(230,126,34,0.2);
  background: #FEF3E6;
  flex-shrink: 0;
}
.hs-mod-detail-title > div { display: flex; flex-direction: column; gap: 0.3rem; }
.hs-mod-detail-title strong {
  font-size: 1.9rem; font-weight: 700;
  color: var(--c-text);
}
.hs-mod-detail-title span {
  font-size: 1.4rem;
  color: var(--c-muted);
  line-height: 1.55;
}

.hs-mod-detail-close {
  width: 3.6rem; height: 3.6rem;
  border-radius: 50%;
  background: rgba(28,37,51,0.05);
  border: 1px solid rgba(28,37,51,0.12);
  color: var(--c-muted);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.hs-mod-detail-close:hover {
  background: rgba(230,126,34,0.1);
  border-color: rgba(230,126,34,0.4);
  color: var(--c-orange);
  transform: rotate(90deg);
}
.hs-mod-detail-close svg { width: 1.6rem; height: 1.6rem; }

.hs-mod-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
  gap: 1.4rem;
  padding: 2.4rem 2.8rem 3.2rem;
}
.hs-detail-sub {
  background: #FFFAF5;
  border: 1px solid rgba(230,126,34,0.14);
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(28,37,51,0.05);
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
}
.hs-detail-sub:hover {
  border-color: rgba(230,126,34,0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(230,126,34,0.1);
}
.hs-detail-sub img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover; object-position: top left;
  display: block;
  border-bottom: 1px solid rgba(230,126,34,0.08);
}
.hs-detail-sub-info {
  padding: 0.9rem 1.2rem 1.1rem;
}
.hs-detail-sub span {
  display: block;
  font-size: 1.25rem; font-weight: 700;
  color: var(--c-text);
  line-height: 1.3;
  margin-bottom: 0.3rem;
}
.hs-detail-sub-desc {
  font-size: 1.15rem;
  color: var(--c-muted);
  line-height: 1.5;
}


/* ══════════════════════════════════════════════════════════
   MOBILE APP
══════════════════════════════════════════════════════════ */
.hs-app {
  background: #ffffff;
  padding: 12rem 7.2rem 10rem;
  scroll-margin-top: 7.5rem;
}
.hs-app-inner {
  max-width: 148rem; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8rem; align-items: center;
}

[data-hs-fade] {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.23,1,0.32,1);
}
[data-hs-fade].hs-anim-visible { opacity: 1; transform: translateY(0); }

.hs-app-content .hs-eyebrow { color: var(--c-orange); }
.hs-app-content .hs-section-h2 { color: var(--c-text); margin-bottom: 2rem; }
.hs-app-sub {
  font-size: 1.65rem; color: var(--c-muted);
  line-height: 1.75; max-width: 50rem; margin-bottom: 3.6rem;
}

.hs-app-features {
  list-style: none; display: flex; flex-direction: column;
  gap: 1.2rem; margin-bottom: 4.4rem;
}
.hs-app-features li {
  display: flex; align-items: center; gap: 1.2rem;
  font-size: 1.55rem; color: var(--c-text); font-weight: 500;
}
.hs-app-features li svg { width: 1.8rem; height: 1.8rem; flex-shrink: 0; }

.hs-app-download-row {
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.hs-app-note { font-size: 1.3rem; color: var(--c-muted); }

/* Phone mockup */
.hs-app-mockup {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hs-phone {
  position: relative; z-index: 2;
  width: 28rem;
  background: linear-gradient(145deg, #1a1a2e, #16213e);
  border-radius: 4.8rem;
  border: 1.5px solid rgba(255,255,255,0.12);
  box-shadow:
    0 32px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.06),
    inset 0 1px 0 rgba(255,255,255,0.08);
  padding: 2.4rem 1.6rem 1.6rem;
  overflow: hidden;
}
.hs-phone-notch {
  width: 10rem; height: 2.8rem;
  background: #0a0d12;
  border-radius: 999px;
  margin: 0 auto 1.6rem;
}
.hs-phone-screen { display: flex; flex-direction: column; gap: 1.2rem; }
.hs-phone-topbar {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0 0.4rem;
}
.hs-phone-topbar img { width: 2.4rem; }
.hs-phone-topbar span:nth-child(2) {
  font-size: 1.3rem; font-weight: 700; color: rgba(255,255,255,0.9); flex: 1;
}
.hs-phone-time { font-size: 1.1rem; color: rgba(255,255,255,0.45); }

.hs-phone-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem;
}
.hs-ptile {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.2rem; padding: 1rem 0.6rem;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.6rem;
  overflow: hidden;
  transition: background 0.2s, border-color 0.2s;
}
.hs-ptile:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--tc, rgba(230,126,34,0.4));
}
.hs-ptile img { width: 100%; border-radius: 0.6rem; }
.hs-ptile span { font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.6); }

.hs-phone-stats {
  display: flex; gap: 0.8rem;
  padding: 1rem; margin-top: 0.4rem;
  background: rgba(255,255,255,0.04);
  border-radius: 1.2rem;
  border: 1px solid rgba(255,255,255,0.06);
}
.hs-phone-stats > div {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; gap: 0.2rem;
}
.hs-phone-stats span {
  font-size: 1.8rem; font-weight: 800; color: var(--c-orange);
}
.hs-phone-stats small { font-size: 0.95rem; color: rgba(255,255,255,0.35); }

.hs-phone-home-bar {
  width: 40%; height: 0.5rem;
  background: rgba(255,255,255,0.25); border-radius: 999px;
  margin: 1.6rem auto 0;
}

/* Glow rings */
.hs-phone-ring {
  position: absolute; border-radius: 50%;
  border: 1.5px solid rgba(230,126,34,0.15);
  pointer-events: none;
}
.hs-phone-ring-1 { width: 36rem; height: 36rem; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.hs-phone-ring-2 { width: 50rem; height: 50rem; top: 50%; left: 50%; transform: translate(-50%,-50%); border-color: rgba(230,126,34,0.07); }


/* ══════════════════════════════════════════════════════════
   CTA
══════════════════════════════════════════════════════════ */
.hs-cta {
  background: linear-gradient(135deg, #0f0806 0%, #1a0d06 50%, #0f0806 100%);
  padding: 12rem 7.2rem;
  position: relative; overflow: hidden;
  text-align: center;
}
.hs-cta-glow {
  position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 80vw; height: 80vw; max-width: 90rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,50,39,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.hs-cta-inner {
  position: relative; z-index: 2;
  max-width: 80rem; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 2rem;
}
.hs-cta-h2 {
  font-size: clamp(3.4rem, 5vw, 6rem);
  font-weight: 800; letter-spacing: -0.03em;
  color: #fff; line-height: 1.08;
}
.hs-cta-inner > p { font-size: 1.8rem; color: rgba(255,255,255,0.5); }
.hs-cta-actions { display: flex; gap: 1.6rem; flex-wrap: wrap; justify-content: center; margin-top: 1.2rem; }
.hs-cta-details {
  display: flex; gap: 3.2rem; flex-wrap: wrap; justify-content: center;
  margin-top: 1.6rem;
}
.hs-cta-details span {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 1.4rem; color: rgba(255,255,255,0.4);
}
.hs-cta-details ion-icon { color: var(--c-orange); font-size: 1.6rem; }


/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.hs-footer { background: #060810; border-top: 1px solid rgba(230,126,34,0.12); }
.hs-footer::before {
  content: '';
  display: block; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(230,126,34,0.45) 30%, rgba(240,180,41,0.45) 50%, rgba(230,126,34,0.45) 70%, transparent 100%);
}
.hs-footer-inner {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 5.6rem; padding: 6.4rem 7.2rem 5.6rem;
  max-width: 160rem; margin: 0 auto;
}
.hs-footer-logo {
  display: flex; align-items: center; gap: 1.2rem;
  text-decoration: none; margin-bottom: 1.8rem;
}
.hs-footer-logo img { height: 3.4rem; }
.hs-footer-logo span {
  font-size: 2.1rem; font-weight: 800; letter-spacing: 0.2rem;
  background: linear-gradient(135deg, #E67E22, #CF711F);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hs-footer-brand > p {
  font-size: 1.4rem; color: rgba(255,255,255,0.38); line-height: 1.75;
  max-width: 30rem; margin-bottom: 2.8rem;
}
.hs-footer-social { display: flex; gap: 1rem; }
.hs-footer-social a {
  width: 4rem; height: 4rem; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}
.hs-footer-social a svg { width: 1.6rem; height: 1.6rem; }
.hs-footer-social a:hover {
  background: rgba(230,126,34,0.18);
  border-color: rgba(230,126,34,0.45);
  color: var(--c-orange);
  transform: translateY(-3px);
}
.hs-footer-links h4,
.hs-footer-contact h4 {
  font-size: 1.2rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 2rem;
}
.hs-footer-links { display: flex; flex-direction: column; gap: 0.4rem; }
.hs-footer-links a {
  font-size: 1.45rem; color: rgba(255,255,255,0.5);
  text-decoration: none; padding: 0.4rem 0;
  transition: color 0.18s, padding-left 0.18s;
}
.hs-footer-links a:hover { color: var(--c-orange); padding-left: 0.4rem; }
.hs-footer-contact address { font-style: normal; display: flex; flex-direction: column; gap: 1.2rem; }
.hs-footer-contact address > div {
  display: flex; align-items: flex-start; gap: 0.9rem;
  font-size: 1.4rem; color: rgba(255,255,255,0.45); line-height: 1.6;
}
.hs-footer-contact ion-icon { color: var(--c-orange); flex-shrink: 0; margin-top: 0.1rem; }
.hs-footer-contact a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.18s; }
.hs-footer-contact a:hover { color: var(--c-orange); }

.hs-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2.4rem 7.2rem;
  max-width: 160rem; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.hs-footer-bottom p { font-size: 1.35rem; color: rgba(255,255,255,0.3); }
.hs-footer-bottom > div { display: flex; gap: 1rem; align-items: center; }
.hs-footer-bottom a { font-size: 1.35rem; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.18s; }
.hs-footer-bottom a:hover { color: var(--c-orange); }
.hs-footer-bottom span { color: rgba(255,255,255,0.15); }


/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */

/* ── ≤1400px — tighten wide padding ── */
@media (max-width: 1400px) {
  .hs-hero-inner    { padding: 12rem 5.6rem 8rem; }
  .hs-media         { padding: 10rem 5.6rem 9rem; }
  .hs-modules       { padding: 10rem 5.6rem 9rem; }
  .hs-app           { padding: 10rem 5.6rem 9rem; }
  .hs-cta           { padding: 10rem 5.6rem; }
  .hs-mod-grid      { grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr)); }
}

/* ── ≤1200px — reduce padding & tighten grids ── */
@media (max-width: 1200px) {
  .hs-hero-inner    { padding: 11rem 4.8rem 8rem; gap: 4rem; }
  .hs-media         { padding: 9rem 4.8rem 8rem; }
  .hs-modules       { padding: 9rem 4.8rem 8rem; }
  .hs-app           { padding: 9rem 4.8rem 8rem; }
  .hs-cta           { padding: 9rem 4.8rem; }
  .hs-footer-inner  { padding: 5.6rem 4.8rem; gap: 4rem; }
  .hs-footer-bottom { padding: 2rem 4.8rem; }
  .hs-section-head  { margin-bottom: 4.8rem; }
  .hs-mod-grid      { grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr)); gap: 1.2rem; }
  .hs-mod-detail-grid { grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr)); }
  .hs-submod-grid   { grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr)); }
  .hs-media-grid    { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

/* ── ≤1024px — hamburger, single-column hero ── */
@media (max-width: 1024px) {
  .hs-nav           { display: none; }
  .hs-hamburger     { display: flex; }
  .hs-header        { padding: 0 3.2rem; }
  .hs-hero-inner    { grid-template-columns: 1fr; padding: 11rem 3.2rem 7rem; }
  .hs-hero-right    { display: none; }
  .hs-media         { padding: 8rem 3.2rem 7rem; }
  .hs-media-grid    { grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
  .hs-modules       { padding: 8rem 3.2rem 7rem; }
  .hs-section-head  { margin-bottom: 4rem; }
  .hs-mod-grid      { grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr)); gap: 1.2rem; }
  .hs-mod-detail-grid { grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr)); gap: 1rem; }
  .hs-mod-detail-header { padding: 2rem 2rem 1.6rem; }
  .hs-mod-detail-grid   { padding: 2rem 2rem 2.4rem; }
  .hs-app           { padding: 8rem 3.2rem 7rem; }
  .hs-app-inner     { grid-template-columns: 1fr; gap: 4.8rem; }
  .hs-app-mockup    { justify-content: center; }
  .hs-cta           { padding: 8rem 3.2rem; }
  .hs-footer-inner  { grid-template-columns: 1fr 1fr; gap: 3.2rem; padding: 5.2rem 3.2rem; }
  .hs-footer-bottom { padding: 2rem 3.2rem; }
}

/* ── ≤768px — mobile layout ── */
@media (max-width: 768px) {
  .hs-header        { padding: 0 2rem; }
  .hs-hero-inner    { padding: 10rem 2rem 6rem; }
  .hs-hero-h1       { font-size: 3.6rem; }
  .hs-hero-sub      { font-size: 1.55rem; }
  .hs-hero-actions  { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hs-hero-stats    { gap: 1.6rem; }
  .hs-hstat-sep     { display: none; }

  .hs-media         { padding: 7rem 2rem 6rem; }
  .hs-media-grid    { grid-template-columns: 1fr; gap: 1.6rem; }

  .hs-modules       { padding: 7rem 2rem 6rem; }
  .hs-section-head  { margin-bottom: 3.2rem; }
  .hs-mod-grid      { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .hs-mod-detail-header { flex-wrap: wrap; padding: 1.6rem; gap: 1.2rem; }
  .hs-mod-detail-title  { flex: 1 1 100%; }
  .hs-mod-detail-close  { position: absolute; top: 1.6rem; right: 1.6rem; }
  .hs-mod-detail-header { position: relative; }
  .hs-mod-detail-grid   { grid-template-columns: repeat(2, 1fr); gap: 1rem; padding: 1.6rem; }

  .hs-app           { padding: 7rem 2rem 6rem; }
  .hs-app-inner     { gap: 3.6rem; }
  .hs-app-mockup    { justify-content: center; }
  .hs-phone         { width: 26rem; }
  .hs-app-features  { gap: 1rem; }
  .hs-app-features li { font-size: 1.45rem; }

  .hs-cta           { padding: 7rem 2rem; }
  .hs-cta-h2        { font-size: 3.2rem; }
  .hs-cta-details   { flex-direction: column; gap: 1rem; align-items: center; }
  .hs-cta-actions   { flex-direction: column; align-items: stretch; }
  .hs-btn-large     { padding: 1.5rem 2.4rem; text-align: center; justify-content: center; }

  .hs-footer-inner  { grid-template-columns: 1fr; padding: 5rem 2rem; gap: 2.8rem; }
  .hs-footer-bottom { padding: 1.8rem 2rem; flex-direction: column; align-items: flex-start; gap: 0.8rem; }

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

/* ── ≤480px — smallest screens ── */
@media (max-width: 480px) {
  .hs-hero-h1       { font-size: 3rem; }
  .hs-hero-badge    { font-size: 1.1rem; }
  .hs-section-h2    { font-size: 2.8rem; }
  .hs-mod-grid      { grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
  .hs-mod-detail-grid { grid-template-columns: 1fr; }
  .hs-media-grid    { grid-template-columns: 1fr; }
  .hs-phone         { width: 24rem; }
  .hs-footer-inner  { padding: 4rem 1.6rem; }
  .hs-footer-bottom { padding: 1.6rem 1.6rem; }
  .hs-submod-grid   { grid-template-columns: repeat(2, 1fr); }
}
