/* Hotel Gym Solutions - Leadman Fitness */
html:has(.hg-page) {
  scroll-padding-top: 100px;
}

body.hg-page {
  padding: 0 !important;
}

.hg-page {
  --hg-gold: #B89047;
  --hg-orange: #E05600;
  --hg-dark: #111111;
  --hg-grey: #666666;
  --hg-light: #FBFBFA;
  --hg-accent: #F5F5F3;
  --hg-font-display: 'Oswald', sans-serif;
  --hg-font-body: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-family: var(--hg-font-body);
  color: var(--hg-dark);
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.hg-page *,
.hg-page *::before,
.hg-page *::after {
  box-sizing: border-box;
}

.hg-page h1,
.hg-page h2,
.hg-page h3,
.hg-page h4,
.hg-page h5,
.hg-page h6 {
  font-family: var(--hg-font-display);
  font-weight: 600;
  color: inherit;
  margin-top: 0;
}

.hg-page p {
  margin-top: 0;
}

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

.hg-page a {
  color: inherit;
  text-decoration: none;
}

.hg-page button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

.hg-page input,
.hg-page select,
.hg-page textarea {
  font-family: inherit;
  font-size: 16px;
}

/* Hero */
.hg-hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--hg-accent);
}

.hg-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hg-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
}

.hg-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 45%, rgba(255, 255, 255, 0.25) 100%);
}

.hg-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 3rem 0;
}

.hg-hero__content {
  max-width: 36rem;
}

.hg-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--hg-gold);
  margin-bottom: 1.25rem;
}

.hg-kicker::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: var(--hg-gold);
}

.hg-kicker--center {
  justify-content: center;
}

.hg-hero h1 {
  font-family: var(--hg-font-display);
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.hg-hero h1 em {
  font-style: normal;
  font-weight: 400;
  border-bottom: 1px solid rgba(184, 144, 71, 0.55);
}

.hg-lead {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  color: var(--hg-grey);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.hg-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.35rem;
}

.hg-hero__stat-pill {
  display: flex;
  flex-direction: column;
  padding: 0.55rem 0.85rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(184, 144, 71, 0.28);
  border-radius: 8px;
  min-width: 5.25rem;
}

.hg-hero__stat-pill strong {
  font-family: var(--hg-font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--hg-gold);
  line-height: 1.2;
}

.hg-hero__stat-pill span {
  font-size: 0.62rem;
  color: var(--hg-grey);
  margin-top: 0.15rem;
  letter-spacing: 0.04em;
}

.hg-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hg-page .hg-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  background: var(--hg-orange) !important;
  color: #fff !important;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.25s;
  border: none !important;
}

.hg-page .hg-btn-primary:hover {
  background: var(--hg-dark) !important;
}

.hg-page .hg-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid #d4d4d4 !important;
  color: var(--hg-dark) !important;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.25s;
}

.hg-page .hg-btn-outline:hover {
  background: var(--hg-light) !important;
}

.hg-page .hg-btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  background: var(--hg-dark) !important;
  color: #fff !important;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.25s;
  width: 100%;
  border: none !important;
}

.hg-page .hg-btn-dark:hover {
  background: var(--hg-orange) !important;
}

/* Split pain */
.hg-split {
  display: grid;
}

@media (min-width: 992px) {
  .hg-split {
    grid-template-columns: 1fr 1fr;
  }
}

.hg-split__text {
  background: var(--hg-light);
  padding: 3rem 1.25rem;
  border-bottom: 1px solid var(--hg-accent);
}

@media (min-width: 992px) {
  .hg-split__text {
    padding: 5rem 3rem;
    border-bottom: none;
    border-right: 1px solid var(--hg-accent);
  }
}

.hg-split__text-inner {
  max-width: 32rem;
}

.hg-tag {
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--hg-orange);
  display: block;
  margin-bottom: 0.75rem;
}

.hg-title {
  font-family: var(--hg-font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hg-title--center {
  text-align: center;
}

.hg-title em {
  font-style: italic;
  font-weight: 300;
}

.hg-divider {
  width: 3rem;
  height: 1px;
  background: var(--hg-gold);
  margin: 1rem 0;
}

.hg-divider--center {
  margin-left: auto;
  margin-right: auto;
}

.hg-body {
  font-size: 0.82rem;
  color: var(--hg-grey);
  font-weight: 300;
  line-height: 1.75;
}

.hg-mini-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

@media (min-width: 576px) {
  .hg-mini-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hg-mini {
  border-left: 2px solid rgba(239, 68, 68, 0.25);
  padding-left: 1rem;
}

.hg-mini strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--hg-dark);
  margin-bottom: 0.25rem;
}

.hg-split__visual {
  position: relative;
  min-height: 320px;
  background: #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

@media (min-width: 992px) {
  .hg-split__visual {
    min-height: 100%;
  }
}

.hg-split__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hg-split__visual::after {
  content: '';
  position: absolute;
  inset: 0;
}

.hg-overlay-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.96);
  padding: 1.75rem;
  max-width: 20rem;
  border: 1px solid rgba(184, 144, 71, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.hg-link {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hg-orange);
  border-bottom: 1px solid var(--hg-orange);
  padding-bottom: 2px;
  background: none;
  cursor: pointer;
}

.hg-link:hover {
  color: var(--hg-dark);
  border-color: var(--hg-dark);
}

.hg-split-section {
  border-bottom: 1px solid var(--hg-accent);
}

.hg-split--boxed {
  border: 1px solid var(--hg-accent);
  background: #fff;
  overflow: hidden;
}

.hg-split--boxed .hg-split__text {
  border-bottom: 1px solid var(--hg-accent);
}

@media (min-width: 992px) {
  .hg-split--boxed .hg-split__text {
    border-bottom: none;
    border-right: 1px solid var(--hg-accent);
  }
}

.hg-split-section .hg-split__visual::after {
  background: rgba(17, 17, 17, 0.12);
}

.hg-mini p.hg-body {
  margin: 0.25rem 0 0;
  font-size: 0.72rem;
  line-height: 1.55;
}

.hg-card--compact {
  padding: 1.35rem 1.25rem;
}

.hg-card--compact h3 {
  margin-bottom: 0.45rem;
}

.hg-card--compact p {
  font-size: 0.74rem;
  line-height: 1.55;
}

.hg-process__step--compact {
  padding: 1.15rem 1rem;
}

.hg-process__step--compact h3 {
  margin-bottom: 0;
}

.hg-pkg--compact h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.hg-pkg--compact ul {
  margin-bottom: 1rem;
}

.hg-pkg--compact li {
  font-size: 0.72rem;
}

.hg-eco--compact {
  gap: 2rem;
}

@media (min-width: 992px) {
  .hg-eco--compact {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }
}

.hg-eco-list {
  list-style: none;
  padding: 0;
  margin: 1.15rem 0 0;
  border-top: 1px solid var(--hg-accent);
  padding-top: 0.85rem;
}

.hg-eco-list li {
  font-size: 0.74rem;
  color: var(--hg-grey);
  font-weight: 300;
  line-height: 1.55;
  padding-left: 0.85rem;
  position: relative;
  margin-bottom: 0.4rem;
}

.hg-eco-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--hg-gold);
}

/* Section */
.hg-section {
  padding: 4rem 0;
}

.hg-section--light {
  background: var(--hg-light);
}

.hg-section--dark {
  background: var(--hg-dark);
  color: #fff;
}

.hg-section--dark .hg-kicker {
  color: rgba(255, 255, 255, 0.55);
}

.hg-section--dark .hg-kicker::before {
  background: var(--hg-gold);
}

.hg-section--dark .hg-title {
  color: #fff;
}

.hg-split--reverse .hg-split__text {
  order: 2;
}

.hg-split--visual-first .hg-split__text {
  border-bottom: 1px solid var(--hg-accent);
}

@media (min-width: 992px) {
  .hg-split--reverse .hg-split__text {
    border-right: none;
    border-left: 1px solid var(--hg-accent);
  }

  .hg-split--reverse .hg-split__visual {
    order: 1;
  }

  .hg-split--visual-first .hg-split__text {
    border-bottom: none;
    border-right: none;
    border-left: 1px solid var(--hg-accent);
  }

  .hg-split--boxed.hg-split--visual-first .hg-split__text {
    border-right: none;
    border-left: 1px solid var(--hg-accent);
  }
}

/* Package visual cards */
.hg-pkg--visual {
  padding: 0;
  overflow: hidden;
}

.hg-pkg--visual .hg-pkg__body {
  padding: 1.35rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: inherit;
}

.hg-pkg--visual.hg-pkg--featured .hg-pkg__body {
  background: #fff;
}

.hg-pkg--visual .hg-tag {
  display: inline-block;
  margin-bottom: 0.65rem;
}

.hg-pkg--visual h3 {
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
}

.hg-pkg--visual ul {
  flex: 1;
  margin-bottom: 0;
}

.hg-pkg--visual .hg-pkg__foot {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--hg-accent);
}

.hg-pkg--visual .hg-pkg__foot .hg-btn-dark,
.hg-pkg--visual .hg-pkg__foot .hg-btn-primary {
  width: 100%;
  margin: 0;
}

.hg-pkg__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--hg-accent);
  flex-shrink: 0;
  position: relative;
}

.hg-pkg--visual .hg-pkg__media .hg-pkg__badge {
  position: absolute;
  top: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  margin: 0;
}

.hg-pkg__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.hg-pkg--visual:hover .hg-pkg__media img {
  transform: scale(1.04);
}

/* Case studies */
.hg-cases {
  position: relative;
  overflow: hidden;
}

.hg-cases::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hg-gold), transparent);
  pointer-events: none;
}

.hg-cases__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .hg-cases__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.hg-case {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem;
  height: 100%;
}

.hg-case__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.hg-case__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hg-gold), #96752f);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--hg-dark);
  flex-shrink: 0;
}

.hg-case__head h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
}

.hg-case__quote {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.hg-case__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hg-case__metric-val {
  font-family: var(--hg-font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--hg-gold);
  line-height: 1.1;
}

.hg-case__metric-label {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.25rem;
}

/* Assurance / SLA */
.hg-assurance {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hg-assurance {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
  }
}

.hg-checklist {
  margin-top: 1.25rem;
}

.hg-check {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  font-size: 0.82rem;
  color: var(--hg-dark);
}

.hg-check span:first-child {
  color: var(--hg-orange);
  font-weight: 700;
}

.hg-sla {
  border: 1px solid var(--hg-accent);
  padding: 1.5rem;
  background: #fff;
}

.hg-sla__head {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hg-grey);
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--hg-accent);
}

.hg-sla__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.hg-sla__cell {
  text-align: center;
  padding: 0.75rem 0.5rem;
}

.hg-sla__val {
  font-family: var(--hg-font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--hg-gold);
  line-height: 1;
}

.hg-sla__label {
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hg-grey);
  margin-top: 0.45rem;
}

/* CTA aside */
.hg-cta__aside {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hg-cta__aside .hg-cta__stat {
  min-height: auto;
  padding: 1.75rem 2rem;
  border-bottom: none;
}

.hg-cta__aside .hg-trust {
  background: #fff;
  border: 1px solid var(--hg-accent);
  border-top: none;
  padding: 1.25rem 1.5rem 1rem;
  margin-top: 0;
}

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

.hg-section-head .hg-body {
  max-width: 34rem;
  margin: 0 auto;
}

/* Packages */
.hg-packages {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 992px) {
  .hg-packages {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.hg-pkg {
  background: var(--hg-light);
  border: 1px solid var(--hg-accent);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.hg-pkg:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(184, 144, 71, 0.25);
}

.hg-pkg--featured {
  background: #fff;
  border-color: rgba(184, 144, 71, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  position: relative;
}

.hg-pkg__badge {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--hg-orange);
  color: #fff;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  white-space: nowrap;
}

.hg-pkg__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.hg-pkg__code {
  font-size: 0.52rem;
  font-family: monospace;
  letter-spacing: 0.12em;
  color: var(--hg-gold);
  font-weight: 700;
}

.hg-pkg__label {
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.45rem;
  background: #e5e5e5;
  color: var(--hg-dark);
}

.hg-pkg--featured .hg-pkg__label {
  background: rgba(224, 86, 0, 0.12);
  color: var(--hg-orange);
}

.hg-pkg h3 {
  font-family: var(--hg-font-display);
  font-size: 1.35rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.hg-pkg__sub {
  display: block;
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 400;
  color: var(--hg-grey);
  margin-top: 0.25rem;
  letter-spacing: 0.02em;
}

.hg-pkg__scene {
  font-size: 0.62rem;
  color: var(--hg-gold);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin: -0.35rem 0 0.85rem;
  line-height: 1.5;
}

.hg-pkg ul {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  flex: 1;
}

.hg-pkg li {
  font-size: 0.72rem;
  color: var(--hg-grey);
  font-weight: 300;
  padding: 0.3rem 0;
  display: flex;
  gap: 0.4rem;
  line-height: 1.5;
}

.hg-pkg li::before {
  content: '\2022';
  color: var(--hg-gold);
  flex-shrink: 0;
}

.hg-pkg--featured li::before {
  color: var(--hg-orange);
}

.hg-pkg__foot {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--hg-accent);
}

.hg-pkg__solved {
  font-size: 0.72rem;
  color: var(--hg-grey);
  font-weight: 300;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.hg-pkg__solved strong {
  display: block;
  font-size: 0.52rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hg-orange);
  margin-bottom: 0.25rem;
}

/* Eco */
.hg-eco {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hg-eco {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hg-checklist {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--hg-accent);
}

.hg-check {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.hg-check__icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(224, 86, 0, 0.1);
  color: var(--hg-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.hg-check h4 {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}

.hg-check p {
  font-size: 0.72rem;
  color: var(--hg-grey);
  font-weight: 300;
  line-height: 1.55;
  margin: 0;
}

.hg-eco__img {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #e5e5e5;
  overflow: hidden;
  border: 1px solid var(--hg-accent);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.hg-eco__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hg-eco__stat {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.96);
  padding: 1rem 1.25rem;
  border: 1px solid rgba(184, 144, 71, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.hg-eco__stat-val {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--hg-orange);
  line-height: 1;
}

.hg-eco__stat-label {
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--hg-grey);
}

/* Durability */
.hg-grid-3 {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .hg-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hg-card {
  border: 1px solid var(--hg-accent);
  padding: 1.75rem;
  background: #fff;
  position: relative;
}

.hg-card__num {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-family: var(--hg-font-display);
  font-style: italic;
  font-size: 2.5rem;
  color: rgba(184, 144, 71, 0.12);
  line-height: 1;
}

.hg-card h3 {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.hg-card p {
  font-size: 0.72rem;
  color: var(--hg-grey);
  font-weight: 300;
  line-height: 1.65;
  margin: 0;
}

.hg-banner {
  margin-top: 2.5rem;
  border: 1px solid var(--hg-accent);
  background: var(--hg-light);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .hg-banner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 3rem;
  }
}

/* Solution cards */
.hg-card--solution {
  padding-bottom: 1.5rem;
}

.hg-solution__pain {
  display: inline-block;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hg-orange);
  margin-bottom: 0.65rem;
}

.hg-solution__list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  border-top: 1px solid var(--hg-accent);
  padding-top: 0.85rem;
}

.hg-solution__list li {
  font-size: 0.68rem;
  color: var(--hg-grey);
  font-weight: 300;
  line-height: 1.55;
  padding-left: 0.85rem;
  position: relative;
  margin-bottom: 0.35rem;
}

.hg-solution__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--hg-gold);
}

/* Process steps */
.hg-process {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hg-process {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .hg-process {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hg-process__step {
  border: 1px solid var(--hg-accent);
  background: #fff;
  padding: 1.5rem 1.25rem;
  position: relative;
}

.hg-process__num {
  display: block;
  font-family: var(--hg-font-display);
  font-size: 2rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(184, 144, 71, 0.25);
  line-height: 1;
  margin-bottom: 0.65rem;
}

.hg-process__step h3 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.hg-process__step p {
  font-size: 0.72rem;
  color: var(--hg-grey);
  font-weight: 300;
  line-height: 1.65;
  margin: 0;
}

/* CTA */
.hg-cta {
  background: var(--hg-light);
  border-top: 1px solid var(--hg-accent);
  padding: 4rem 0;
}

.hg-cta__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hg-cta__grid {
    grid-template-columns: 5fr 7fr;
  }
}

.hg-cta__stat {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  background: #fff;
  border: 1px solid var(--hg-accent);
  padding: 2rem;
  text-align: center;
}

.hg-cta__stat-num {
  font-family: var(--hg-font-display);
  font-size: 2rem;
  color: var(--hg-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hg-cta__stat-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
}

.hg-trust {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hg-accent);
}

.hg-trust-item {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.hg-trust-item:last-child {
  margin-bottom: 0;
}

.hg-trust-item span:first-child {
  color: var(--hg-orange);
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.4;
}

.hg-trust-item strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hg-trust-item p {
  font-size: 0.72rem;
  color: var(--hg-grey);
  font-weight: 300;
  margin: 0.15rem 0 0;
}

/* Modal */
.hg-modal {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.75);
  backdrop-filter: blur(4px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.hg-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.hg-modal__box {
  background: #fff;
  max-width: 560px;
  width: 100%;
  padding: 1.35rem 1.5rem;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid var(--hg-accent);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  transform: scale(0.96);
  transition: transform 0.3s;
}

.hg-modal.is-active .hg-modal__box {
  transform: scale(1);
}

.hg-modal__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.hg-modal__head h3 {
  font-family: var(--hg-font-display);
  font-size: 1.35rem;
  font-weight: 400;
}

.hg-modal__close {
  font-size: 1.75rem;
  color: var(--hg-grey);
  line-height: 1;
  background: none;
}

.hg-modal__hint {
  font-size: 0.78rem;
  color: var(--hg-orange);
  margin-bottom: 1rem;
  min-height: 1.1em;
}

.hg-modal .ig-form .form-group {
  margin-bottom: 0.65rem;
}

.hg-modal .ig-form__row {
  align-items: stretch;
}

.hg-modal .ig-form__col {
  display: flex;
  flex-direction: column;
}

.hg-modal .ig-form__group--last {
  margin-bottom: 0;
}

.hg-modal .ig-form__group--grow {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  margin-bottom: 0.65rem;
  min-height: 0;
}

.hg-modal .ig-form__group--grow textarea {
  flex: 1 1 auto;
  min-height: 96px;
}

.hg-modal .ig-form label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hg-grey);
  margin-bottom: 0.25rem;
}

.hg-modal .ig-form input,
.hg-modal .ig-form select,
.hg-modal .ig-form textarea {
  width: 100%;
  background: var(--hg-light);
  border: 1px solid var(--hg-accent);
  padding: 0.5rem 0.65rem;
  font-size: 0.78rem;
  color: var(--hg-dark);
  outline: none;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.4;
}

.hg-modal .ig-form__hint {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.62rem;
  color: var(--hg-grey);
  line-height: 1.35;
}

.hg-modal .ig-form input:focus,
.hg-modal .ig-form select:focus,
.hg-modal .ig-form textarea:focus {
  border-color: var(--hg-gold);
  background: #fff;
}

.hg-modal .ig-form__submit {
  display: block;
  width: 100%;
  padding: 0.7rem 1rem;
  background: var(--hg-orange) !important;
  color: #fff !important;
  border: none !important;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s;
}

.hg-modal .ig-form__submit:hover {
  background: var(--hg-dark) !important;
}

.hg-page .hg-modal .ig-form button[type="submit"]:before,
.hg-page .hg-modal .ig-form .ig-form__submit:before,
.hg-page .hg-float .hg-float__btn:before {
  display: none !important;
}

.hg-form label {
  display: block;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hg-grey);
  margin-bottom: 0.25rem;
}

.hg-form input,
.hg-form select,
.hg-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #d4d4d4;
  padding: 0.55rem 0;
  font-size: 0.78rem;
  color: var(--hg-dark);
  outline: none;
  margin-bottom: 1rem;
  font-weight: 300;
}

.hg-form input:focus,
.hg-form select:focus,
.hg-form textarea:focus {
  border-color: var(--hg-orange);
}

.hg-form textarea {
  resize: vertical;
  min-height: 72px;
}

.hg-form__submit {
  width: 100%;
  padding: 0.9rem;
  background: var(--hg-dark) !important;
  color: #fff !important;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.25s;
  margin-top: 0.5rem;
  border: none !important;
}

.hg-form__submit:hover {
  background: var(--hg-orange) !important;
}

/* Breadcrumb */
.hg-breadcrumb {
  padding: 0.85rem 0;
  background: var(--hg-light);
  border-bottom: 1px solid var(--hg-accent);
  font-size: 0.68rem;
  color: var(--hg-grey);
}

.hg-breadcrumb a {
  color: var(--hg-grey);
  transition: color 0.2s;
}

.hg-breadcrumb a:hover {
  color: var(--hg-orange);
}

.hg-breadcrumb span[aria-hidden="true"] {
  margin: 0 0.45rem;
  opacity: 0.45;
}

/* Deliverables showcase */
.hg-deliverables {
  padding: 4rem 0;
}

.hg-deliverables__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .hg-deliverables__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.hg-deliverable {
  border: 1px solid var(--hg-accent);
  background: #fff;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.hg-deliverable:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
  border-color: rgba(184, 144, 71, 0.3);
}

.hg-deliverable__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hg-light);
  border: 1px solid var(--hg-accent);
  border-radius: 8px;
  font-family: var(--hg-font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--hg-gold);
  margin-bottom: 1rem;
}

.hg-deliverable h3 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.65rem;
}

.hg-deliverable p {
  font-size: 0.72rem;
  color: var(--hg-grey);
  font-weight: 300;
  line-height: 1.65;
  margin: 0 0 1rem;
  flex: 1;
}

.hg-deliverable ul {
  list-style: none;
  margin: 0;
  padding: 0.85rem 0 0;
  border-top: 1px solid var(--hg-accent);
}

.hg-deliverable li {
  font-size: 0.68rem;
  color: var(--hg-grey);
  padding-left: 0.85rem;
  position: relative;
  margin-bottom: 0.35rem;
  line-height: 1.55;
}

.hg-deliverable li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--hg-gold);
}

.hg-banner__text {
  margin-top: 0.5rem;
  max-width: 28rem;
}

/* Floating actions - PC default (slightly larger) */
.hg-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 10050;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.hg-float .hg-float__btn {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  border-radius: 50% !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s, box-shadow 0.2s;
  line-height: 1;
  border: none !important;
  background-image: none !important;
}

.hg-float .hg-float__btn::before {
  display: none !important;
}

.hg-float .hg-float__btn i {
  display: inline-block;
  font-style: normal;
  line-height: 1;
  margin: 0 !important;
  pointer-events: none;
}

.hg-float .hg-float__btn:hover {
  transform: scale(1.06);
}

.hg-float .hg-float__form {
  background: var(--hg-gold) !important;
  color: var(--hg-dark) !important;
}

.hg-float .hg-float__form i {
  color: var(--hg-dark) !important;
  font-size: 18px;
}

.hg-float .hg-float__email {
  background: var(--hg-gold) !important;
  color: var(--hg-dark) !important;
}

.hg-float .hg-float__email i {
  color: var(--hg-dark) !important;
  font-size: 17px;
}

.hg-float .hg-float__wa {
  background: #25D366 !important;
  color: #fff !important;
}

.hg-float .hg-float__wa i {
  color: #fff !important;
  font-size: 20px;
}

.hg-float .hg-float__top {
  background: var(--hg-dark) !important;
  color: #fff !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.85);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
}

.hg-float .hg-float__top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
}

.hg-float .hg-float__top i {
  color: #fff !important;
  font-size: 17px;
}

/* Mobile - keep original smaller size */
@media (max-width: 767px) {
  .hg-float {
    bottom: 1rem;
    right: 1rem;
    gap: 0.4rem;
  }

  .hg-float .hg-float__btn {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
  }

  .hg-float .hg-float__form i {
    font-size: 13px;
  }

  .hg-float .hg-float__email i {
    font-size: 12px;
  }

  .hg-float .hg-float__wa i {
    font-size: 15px;
  }

  .hg-float .hg-float__top i {
    font-size: 12px;
  }

  .hg-section {
    padding: 3rem 0;
  }

  .hg-hero {
    min-height: auto;
  }

  .hg-hero__inner {
    padding: 2.5rem 0;
  }

  .hg-overlay-card {
    max-width: 100%;
  }
}

.hg-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hg-reveal.is-visible {
  opacity: 1;
  transform: none;
}
