/* ============================================================
   Hotel Management System — page-specific styles (Viqsa orange theme)
   Shared site shell: style.css, layout.css, animations.css
   ============================================================ */

.hotel-management-page {
  --hms-brand:       var(--orange);
  --hms-brand-dark:  var(--orange-dark);
  --hms-brand-light: var(--orange-light);
  --hms-accent:      var(--orange-light);
  --hms-dark-bg:     #1a1d2b;
  --hms-cream:       var(--cream);
  --hms-dark:        #121212;
  --hms-muted:       rgba(18, 18, 18, 0.7);
  --hms-border:      rgba(215, 146, 60, 0.22);
  --hms-grad:        linear-gradient(135deg, #8D4B00 0%, #D7923C 60%, #6b3a00 100%);
  --hms-grad-accent: linear-gradient(135deg, #8D4B00, #F8B05E);
  --hms-grad-dark:   linear-gradient(160deg, #1a1d2b 0%, #1f1f1f 55%, #141820 100%);
  --hms-header-offset: 132px;

  /* Legacy aliases used across component rules */
  --hms-navy: var(--hms-dark-bg);
  --hms-gold: var(--hms-brand);
  --hms-gold-light: var(--hms-brand-light);
}

/* ── HERO ── */
.hms-hero {
  position: relative;
  height: var(--page-banner-height, 660px);
  min-height: var(--page-banner-height, 660px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--hms-navy);
}

.hms-hero-bg {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(ellipse 70% 60% at 75% 40%, rgba(215, 146, 60, 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 5% 90%, rgba(248, 176, 94, 0.1) 0%, transparent 60%),
    var(--hms-grad-dark);
}

.hms-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(12, 14, 22, 0.88) 0%,
    rgba(12, 14, 22, 0.62) 50%,
    rgba(12, 14, 22, 0.78) 100%
  );
  pointer-events: none;
}

/* Home page banner image — blurred, same source as index.html .hero-bg */
.hotel-management-page .hms-hero-bg {
  background: none;
  overflow: hidden;
}

.hotel-management-page .hms-hero-bg::before {
  content: "";
  position: absolute;
  inset: -28px;
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(102, 102, 102, 0) 100%),
    var(--hero-bg-url);
  background-size: 100% 100%, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  filter: blur(10px);
  transform: scale(1.06);
  z-index: 0;
}

.hotel-management-page .hms-hero-bg::after {
  z-index: 1;
  background: linear-gradient(
    120deg,
    rgba(12, 14, 22, 0.55) 0%,
    rgba(12, 14, 22, 0.25) 50%,
    rgba(12, 14, 22, 0.4) 100%
  );
}

/* Hide grid/check overlay — banner uses image only */
.hotel-management-page .hms-hero-grid-lines {
  display: none;
}

.hms-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hms-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: var(--hms-header-offset) 40px 36px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.hms-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(248, 176, 94, 0.35);
  border-radius: 100px;
  background: rgba(248, 176, 94, 0.1);
  color: var(--hms-brand-light);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hms-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hms-gold);
  display: inline-block;
}

.hms-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.2;
}

.hms-hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--hms-gold), var(--hms-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hms-hero-desc {
  margin-bottom: 24px;
  max-width: 520px;
  font-size: 15px;
  line-height: 1.55;
}

.hms-hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hotel-management-page .btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--hms-brand-dark), var(--hms-brand-light));
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(215, 146, 60, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hotel-management-page .btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(215, 146, 60, 0.5);
}

.hotel-management-page .btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.hotel-management-page .btn-outline-white:hover {
  border-color: var(--hms-accent);
  background: rgba(248, 176, 94, 0.1);
  color: var(--hms-brand-light);
}

.hms-hero-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hms-stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(215, 146, 60, 0.2);
  border-radius: 16px;
  padding: 20px 22px;
  backdrop-filter: blur(12px);
}

.hms-stat-card h3 {
  color: var(--hms-gold-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hms-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hms-stat-item {
  text-align: center;
}

.hms-stat-num {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.hms-stat-num span {
  color: var(--hms-gold);
}

.hms-stat-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  margin-top: 4px;
}

.hms-phases-mini {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.hms-phase-chip {
  padding: 12px 10px;
  border-radius: 10px;
  border: 1px solid rgba(215, 146, 60, 0.15);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.hms-phase-chip .num {
  font-size: 11px;
  color: var(--hms-gold);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hms-phase-chip .label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
  line-height: 1.3;
}

/* ── SECTION BASE ── */
.hms-section {
  padding: 0;
}

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

.hms-section-dark {
  background: var(--hms-navy);
}

.hms-section-white {
  background: #fff;
}

.hms-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.hms-label {
  display: inline-block;
  color: var(--hms-brand);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hms-label-light {
  color: var(--hms-brand-light);
}

.hms-section-title {
  margin-bottom: 16px;
}

.hms-section-title.light {
  color: #fff;
}

.hms-section-sub {
  max-width: 680px;
}

.hms-section-sub.light {
  color: rgba(255, 255, 255, 0.6);
}

.hms-center {
  text-align: center;
}

.hms-center .hms-section-sub {
  margin: 0 auto;
}

/* ── FEATURES OVERVIEW ── */
.hms-modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.hms-module-card {
  padding: 32px;
  border-radius: 16px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hms-module-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(215, 146, 60, 0.1);
  border-color: var(--hms-accent);
}

.hms-module-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(215, 146, 60, 0.15), rgba(215, 146, 60, 0.05));
  border: 1px solid rgba(215, 146, 60, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--hms-brand);
}

.hms-module-icon svg {
  width: 24px;
  height: 24px;
}

.hms-module-card h3 {
  margin-bottom: 10px;
}

.hms-module-card p {
  line-height: 1.65;
}

.hms-module-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tag-phase1,
.tag-phase2,
.tag-phase3,
.tag-phase4 {
  background: var(--tag-bg);
  color: var(--tag-color);
}

/* ── PHASES TIMELINE ── */
.hms-phases-wrap {
  margin-top: 64px;
}

.hms-phase-block {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 4px 24px rgba(26, 29, 43, 0.08);
}

.hms-phase-aside {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.phase-aside-1 {
  background: linear-gradient(160deg, #1a1d2b, #1f1f1f);
}

.phase-aside-2 {
  background: linear-gradient(160deg, #1f1f1f, #2a1f0a);
}

.phase-aside-3 {
  background: linear-gradient(160deg, #2c1810, #4a2410);
}

.phase-aside-4 {
  background: linear-gradient(160deg, #1a1d2b, #3d2810);
}

.hms-phase-aside .phase-num {
  font-size: 56px;
  font-weight: 700;
  color: rgba(215, 146, 60, 0.25);
  line-height: 1;
  margin-bottom: 8px;
}

.hms-phase-aside h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.hms-phase-aside .timeline-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(215, 146, 60, 0.15);
  border: 1px solid rgba(215, 146, 60, 0.3);
  color: var(--hms-gold-light);
  font-size: 12px;
  font-weight: 500;
  margin-top: 10px;
}

.hms-phase-body {
  padding: 40px;
  background: #fff;
}

.hms-phase-body p {
  color: var(--hms-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.hms-feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hms-pill {
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(18, 18, 18, 0.1);
  color: var(--hms-dark);
  background: var(--hms-cream);
}

/* ── WHY CHOOSE ── */
.hms-why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 32px;
  margin-top: 56px;
  align-items: center;
}

.hms-why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hms-why-item {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 13px;
  border-radius: 14px;
  border: 1px solid rgba(18, 18, 18, 0.07);
  background: #fff;
  transition: box-shadow 0.2s ease;
}

.hms-why-item:hover {
  box-shadow: 0 8px 32px rgba(26, 29, 43, 0.08);
}

.hms-why-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--hms-brand-dark), var(--hms-brand-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  align-self: center;
}

.hms-why-icon svg {
  width: 22px;
  height: 22px;
}

.hms-why-item > div:not(.hms-why-icon) {
  flex: 1;
  min-width: 0;
}

.hms-why-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--hms-dark);
  margin-bottom: 6px;
}

.hms-why-item p {
  font-size: 14px;
  color: var(--hms-muted);
  line-height: 1.5;
  margin: 0;
  white-space: nowrap;
}

.hms-why-visual {
  background: var(--hms-grad-dark);
  border-radius: 20px;
  padding: 40px;
  color: #fff;
}

.hms-why-visual h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 28px;
  color: var(--hms-brand-light);
}

.hms-check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hms-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.hms-check-item::before {
  content: "✓";
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(215, 146, 60, 0.2);
  border: 1px solid rgba(215, 146, 60, 0.4);
  color: var(--hms-gold);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── INTEGRATIONS ── */
.hms-integrations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.hms-int-card {
  padding: 15px 15px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(215, 146, 60, 0.15);
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.hms-int-card:hover {
  border-color: rgba(215, 146, 60, 0.5);
  background: rgba(215, 146, 60, 0.05);
}

.hms-int-card .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--hms-brand-light);
}

.hms-int-card .icon svg {
  width: 28px;
  height: 28px;
}

.hms-int-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.hms-int-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

/* ── PRICING ── */
.hms-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  align-items: start;
}

.hms-price-card {
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid rgba(18, 18, 18, 0.1);
  background: #fff;
  position: relative;
}

.hms-price-card.featured {
  background: var(--hms-grad-dark);
  border-color: var(--hms-brand);
  color: #fff;
}

.hotel-management-page .featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 18px;
  background: var(--hms-grad-accent);
  border-radius: 100px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hms-price-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.hms-price-card.featured h3 {
  color: #fff;
}

.price-amount {
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  margin: 16px 0 4px;
}

.hms-price-card.featured .price-amount {
  color: var(--hms-brand-light);
}

.price-per {
  font-size: 14px;
  color: var(--hms-muted);
  margin-bottom: 24px;
}

.hms-price-card.featured .price-per {
  color: rgba(255, 255, 255, 0.55);
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-features li {
  font-size: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.price-features li::before {
  content: "✓";
  color: var(--hms-gold);
  font-weight: 700;
  flex-shrink: 0;
}

.hms-price-card.featured .price-features li {
  color: rgba(255, 255, 255, 0.8);
}

.btn-price {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

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

.btn-price-outline {
  border: 1px solid rgba(18, 18, 18, 0.2);
  color: var(--hms-dark);
}

.btn-price-outline:hover {
  border-color: var(--hms-brand);
  color: var(--hms-brand);
}

.btn-price-gold {
  background: linear-gradient(135deg, var(--hms-brand-dark), var(--hms-brand-light));
  color: #fff;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hms-hero-inner {
    grid-template-columns: 1fr;
    padding: var(--hms-header-offset) 24px 36px;
  }

  .hms-hero-visual {
    display: block;
  }

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

  .hms-why-grid {
    grid-template-columns: 1fr;
  }

  .hms-why-item p {
    white-space: normal;
  }

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

  .hms-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .hms-phase-block {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hotel-management-page { --hms-header-offset: 112px; }
  .hms-hero-inner { padding: var(--hms-header-offset) 20px 28px; }
}

@media (max-width: 640px) {
  .hms-container {
    padding: 0 20px;
  }

  .hms-modules-grid {
    grid-template-columns: 1fr;
  }

  .hms-integrations-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hms-phases-mini {
    grid-template-columns: repeat(2, 1fr);
  }

  .hotel-management-page .crm-category-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }

  .hotel-management-page .crm-category-tabs__tab {
    flex-shrink: 0;
  }
}

/* ============================================================
   NEW SECTIONS — Gap analysis implementation
   ============================================================ */

.hotel-management-page.truck-sticky-active {
  padding-bottom: 76px;
}

.hotel-management-page .truck-sticky-cta {
  position: fixed;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.hotel-management-page .truck-sticky-cta.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hotel-management-page .truck-sticky-cta--desktop {
  top: 24px;
  right: 24px;
}

.hotel-management-page .truck-sticky-cta--desktop a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--hms-brand-dark), var(--hms-brand));
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(215, 146, 60, 0.45);
}

.hotel-management-page .truck-sticky-cta--mobile {
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid rgba(215, 146, 60, 0.2);
  backdrop-filter: blur(12px);
}

.hotel-management-page .truck-sticky-cta--mobile a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--hms-brand-dark), var(--hms-brand));
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 900px) {
  .hotel-management-page .truck-sticky-cta--desktop {
    display: none;
  }
}

@media (min-width: 901px) {
  .hotel-management-page .truck-sticky-cta--mobile {
    display: none;
  }
}

/* Hero trust chips */
.hms-stats-light .hms-stat-light {
  background: #fff;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
}

.hms-stats-light .hms-stat-light .big {
  color: var(--hms-dark);
}

.hms-stats-light .hms-stat-light .big span {
  color: var(--hms-brand);
}

.hms-stats-light .hms-stat-light .lbl {
  color: var(--hms-muted);
}

.hms-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hms-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hms-trust-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hms-brand-light);
  flex-shrink: 0;
}

.hms-hero-cta--triple {
  flex-wrap: wrap;
  gap: 12px;
}

.hms-hero-cta--triple .btn-gold,
.hms-hero-cta--triple .btn-outline-white {
  font-size: 14px;
  padding: 14px 22px;
}

/* Dashboard preview card */
.hms-dashboard-preview {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(18, 20, 30, 0.85);
  backdrop-filter: blur(12px);
  padding: 22px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.hms-dashboard-preview h3 {
  color: var(--hms-brand-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hms-dash-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.hms-dash-kpi {
  padding: 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hms-dash-kpi .val {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.hms-dash-kpi .lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}

.hms-dash-rooms {
  display: grid;
  gap: 8px;
}

.hms-dash-room {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.hms-dash-room .status {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}

.hms-dash-room .status--occupied { background: rgba(215, 146, 60, 0.25); color: var(--hms-brand-light); }
.hms-dash-room .status--clean { background: rgba(76, 175, 80, 0.2); color: #81c784; }
.hms-dash-room .status--dirty { background: rgba(244, 67, 54, 0.2); color: #ef9a9a; }

/* Section CTAs */
.hms-section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 40px;
}

.hms-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.hms-cta-btn--primary {
  background: linear-gradient(135deg, var(--hms-brand-dark), var(--hms-brand-light));
  color: #fff;
  box-shadow: 0 8px 24px rgba(215, 146, 60, 0.35);
}

.hms-cta-btn--primary:hover {
  transform: translateY(-2px);
  color: #fff;
}

.hms-cta-btn--secondary {
  border: 2px solid var(--hms-brand);
  color: var(--hms-brand-dark);
  background: #fff;
}

.hms-cta-btn--secondary:hover {
  background: var(--hms-cream);
  color: var(--hms-brand-dark);
}

.hms-section-cta--on-dark .hms-cta-btn--secondary {
  border-color: rgba(248, 176, 94, 0.45);
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
}

/* Industry types */
.hms-types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.hms-type-card {
  padding: 24px 20px;
  border-radius: 14px;
  border: 1px solid rgba(18, 18, 18, 0.1);
  background: #fff;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.hms-type-card:hover {
  border-color: var(--hms-brand);
  box-shadow: 0 12px 28px rgba(215, 146, 60, 0.12);
}

.hms-type-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(215, 146, 60, 0.15), rgba(248, 176, 94, 0.1));
  color: var(--hms-brand);
}

.hms-type-icon svg {
  width: 22px;
  height: 22px;
}

.hms-type-card h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.hms-type-card p {
  font-size: 13px;
  color: var(--hms-muted);
  line-height: 1.5;
  margin: 0;
}

/* 8-step workflow */
.hms-steps-eight {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 24px);
  margin-top: 56px;
  position: relative;
}

.hms-steps-eight .da-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hms-steps-eight .hms-step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(160deg, #F8B05E 0%, #D7923C 48%, #8D4B00 100%);
  border: 3px solid #fff;
  box-shadow: 0 8px 20px rgba(141, 75, 0, 0.22);
}

.hms-steps-eight .hms-step-icon svg {
  width: 24px;
  height: 24px;
}

.hms-steps-eight .da-step h3 {
  font-size: 14px;
  margin-bottom: 6px;
}

.hms-steps-eight .da-step > p {
  font-size: 13px;
  color: var(--hms-muted);
  line-height: 1.5;
  margin-bottom: 8px;
}

.hotel-management-page .crm-step-modules {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.hotel-management-page .crm-step-modules li {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(215, 146, 60, 0.12);
  color: var(--hms-brand-dark);
}

/* Module categories */
.hotel-management-page .crm-category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 48px;
  margin-bottom: 28px;
}

.hotel-management-page .crm-category-tabs__tab {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(18, 18, 18, 0.12);
  background: #fff;
  color: var(--hms-muted);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.hotel-management-page .crm-category-tabs__tab:hover {
  border-color: var(--hms-brand);
  color: var(--hms-brand-dark);
}

.hotel-management-page .crm-category-tabs__tab.is-active {
  background: linear-gradient(135deg, var(--hms-brand-dark), var(--hms-brand));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 20px rgba(215, 146, 60, 0.28);
}

.hotel-management-page .crm-category-panel {
  display: none;
}

.hotel-management-page .crm-category-panel.is-active {
  display: block;
}

.hms-category-block {
  margin-top: 48px;
}

.hms-category-block:first-of-type {
  margin-top: 40px;
}

.hms-category-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(215, 146, 60, 0.2);
}

.hms-category-head h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.hms-category-head span {
  font-size: 12px;
  font-weight: 600;
  color: var(--hms-brand);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hms-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.hms-feature-card {
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.hms-feature-card:hover {
  border-color: var(--hms-brand);
  box-shadow: 0 8px 24px rgba(215, 146, 60, 0.1);
}

.hms-feature-card h4 {
  font-size: 15px;
  margin-bottom: 6px;
}

.hms-feature-card p {
  font-size: 13px;
  color: var(--hms-muted);
  line-height: 1.55;
  margin: 0;
}

/* Product screenshot gallery */
.hms-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.hms-product-item {
  border-radius: 14px;
  border: 1px solid rgba(18, 18, 18, 0.1);
  background: #fff;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.hms-product-item:hover {
  border-color: var(--hms-brand);
  box-shadow: 0 12px 32px rgba(215, 146, 60, 0.12);
}

.hms-product-item__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--hms-cream);
  overflow: hidden;
}

.hms-product-item__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hms-product-item__mock {
  position: absolute;
  inset: 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hms-product-item__mock.is-hidden {
  display: none;
}

.hms-mock-bar {
  height: 8px;
  border-radius: 4px;
  background: rgba(215, 146, 60, 0.2);
}

.hms-mock-bar--short { width: 40%; }
.hms-mock-bar--med { width: 65%; }

.hms-product-item figcaption {
  padding: 16px 18px;
}

.hms-product-item figcaption h4 {
  margin: 0 0 6px;
  font-size: 15px;
}

.hms-product-item figcaption p {
  margin: 0;
  font-size: 14px;
  color: var(--hms-muted);
  line-height: 1.5;
}

/* Spotlights */
.hms-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hms-spotlight--reverse {
  direction: rtl;
}

.hms-spotlight--reverse > * {
  direction: ltr;
}

.hms-spotlight-benefits {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 10px;
}

.hms-spotlight-benefits li {
  font-size: 15px;
  color: var(--hms-muted);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.hms-spotlight-benefits li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--hms-brand);
  font-weight: 700;
}

.hms-spotlight__media {
  margin: 0;
}

/* Demo video */
.hms-video-wrap {
  margin-top: 48px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(18, 18, 18, 0.1);
  box-shadow: 0 12px 40px rgba(141, 75, 0, 0.08);
}

.hms-video-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0f0f0f;
}

.hms-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 24px;
}

.hms-video-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--hms-brand-light);
}

.hms-video-placeholder a {
  color: var(--hms-brand-light);
  text-decoration: underline;
}

.hms-video-iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Reporting grid */
.hms-reporting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.hms-reporting-card {
  padding: 24px;
  border-radius: 14px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  background: #fff;
}

.hms-reporting-card h4 {
  font-size: 15px;
  margin-bottom: 8px;
}

.hms-reporting-card p {
  font-size: 14px;
  color: var(--hms-muted);
  line-height: 1.55;
  margin: 0;
}

/* Mobile section */
.hms-mobile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.hms-mobile-card {
  text-align: center;
  padding: 20px 16px;
  border-radius: 14px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  background: #fff;
}

.hms-mobile-card__frame {
  width: 120px;
  height: 220px;
  margin: 0 auto 14px;
  border-radius: 20px;
  border: 3px solid rgba(18, 18, 18, 0.12);
  background: var(--hms-grad-dark);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hms-mobile-card__frame span {
  display: block;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.15);
}

.hms-mobile-card h4 {
  font-size: 14px;
  margin-bottom: 4px;
}

.hms-mobile-card p {
  font-size: 12px;
  color: var(--hms-muted);
  margin: 0;
  line-height: 1.45;
}

/* Integration badges */
.hms-integration-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 32px;
}

.hms-integration-badge {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 600;
}

/* Logo strip */
.hms-logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.hms-logo-badge {
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid rgba(18, 18, 18, 0.1);
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: var(--hms-muted);
}

/* Security grid */
.hms-security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.hms-security-card {
  padding: 28px 24px;
  border-radius: 14px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  background: #fff;
}

.hms-security-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(215, 146, 60, 0.15), rgba(248, 176, 94, 0.1));
  color: var(--hms-brand);
  margin-bottom: 14px;
}

.hms-security-card__icon svg {
  width: 22px;
  height: 22px;
}

.hms-security-card h4 {
  font-size: 15px;
  margin-bottom: 8px;
}

.hms-security-card p {
  font-size: 14px;
  color: var(--hms-muted);
  line-height: 1.55;
  margin: 0;
}

/* Onboarding timeline */
.hms-onboarding-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}

.hms-onboarding-step {
  text-align: center;
  padding: 24px 16px;
  border-radius: 14px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  background: #fff;
}

.hms-onboarding-step__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--hms-brand-dark), var(--hms-brand));
}

.hms-onboarding-step h4 {
  font-size: 15px;
  margin-bottom: 8px;
}

.hms-onboarding-step p {
  font-size: 13px;
  color: var(--hms-muted);
  line-height: 1.55;
  margin: 0;
}

/* Support grid */
.hms-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.hms-support-card {
  padding: 24px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.hms-support-card h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 8px;
}

.hms-support-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
  margin: 0;
}

/* Contact strip */
.hms-contact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.hms-contact-item {
  text-align: center;
  padding: 24px 16px;
  border-radius: 14px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  background: #fff;
}

.hms-contact-item__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hms-cream);
  color: var(--hms-brand);
}

.hms-contact-item__icon svg {
  width: 20px;
  height: 20px;
}

.hms-contact-item h4 {
  font-size: 14px;
  margin-bottom: 6px;
}

.hms-contact-item a,
.hms-contact-item p {
  font-size: 14px;
  color: var(--hms-muted);
  text-decoration: none;
  margin: 0;
  line-height: 1.5;
}

.hms-contact-item a:hover {
  color: var(--hms-brand);
}

/* CTA banner wrapper */
.hms-cta-banner-wrap {
  padding: 48px 0;
}

.hms-cta-banner-wrap .da-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Responsive — new sections */
@media (max-width: 1200px) {
  .hms-types-grid { grid-template-columns: repeat(2, 1fr); }
  .hms-steps-eight { grid-template-columns: repeat(2, 1fr); }
  .hms-security-grid,
  .hms-support-grid,
  .hms-reporting-grid { grid-template-columns: repeat(2, 1fr); }
  .hms-onboarding-timeline { grid-template-columns: repeat(2, 1fr); }
  .hms-mobile-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .hms-spotlight,
  .hms-spotlight--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .hms-contact-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hms-types-grid,
  .hms-category-grid,
  .hms-product-grid,
  .hms-steps-eight,
  .hms-security-grid,
  .hms-support-grid,
  .hms-reporting-grid,
  .hms-onboarding-timeline,
  .hms-mobile-grid,
  .hms-contact-strip {
    grid-template-columns: 1fr;
  }

  .hms-dash-kpis {
    grid-template-columns: 1fr;
  }

  .hms-hero-cta--triple .btn-gold,
  .hms-hero-cta--triple .btn-outline-white {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

