.hms-page *::before, .hms-page *::after { box-sizing: border-box; margin: 0; padding: 0; }.hms-page {
    --brand-deep:    #0B2239;
    --brand-primary: #0F4C81;
    --brand-mid:     #1A6DB5;
    --brand-light:   #2E8FE0;
    --brand-accent:  #F97316;
    --brand-accent-light: #FFF0E5;
    --brand-accent-mid:   #FDA96A;
    --text-heading:  #0B1E35;
    --text-body:     #2A3E52;
    --text-muted:    #5A7089;
    --text-light:    #8AABC4;
    --surface-white: #FFFFFF;
    --surface-off:   #F5F8FC;
    --surface-mid:   #EBF2FA;
    --surface-dark:  #0B2239;
    --border-light:  #DDE8F4;
    --border-mid:    #B8CDE3;
    --success:       #0E7A4B;
    --success-bg:    #E6F7F0;
    --radius-sm:  6px;
    --radius-md:  10px;
    --radius-lg:  16px;
    --radius-xl:  24px;
    --shadow-card:  0 2px 20px rgba(11,34,57,0.07);
    --shadow-hover: 0 8px 32px rgba(11,34,57,0.13);
    --font-display: 'Sora', sans-serif;
    --font-body:    'DM Sans', sans-serif;
  } { scroll-behavior: smooth; } {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--surface-white);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
  }.hms-page h1, .hms-page h2, .hms-page h3, .hms-page h4 { font-family: var(--font-display); color: var(--text-heading); line-height: 1.25; }.hms-page h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 700; }.hms-page h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 600; }.hms-page h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }.hms-page h4 { font-size: 1rem; font-weight: 600; }.hms-page p { margin-bottom: 1rem; }.hms-page p:last-child { margin-bottom: 0; }.hms-page a { color: var(--brand-mid); text-decoration: none; }.hms-page a:hover { color: var(--brand-light); }.hms-page .container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }.hms-page .section { padding: 80px 0; }.hms-page .section-alt { background: var(--surface-off); }.hms-page .section-mid { background: var(--surface-mid); }.hms-page .section-dark { background: var(--brand-deep); color: #fff; }.hms-page .section-dark h2, .hms-page .section-dark h3, .hms-page .section-dark h4 { color: #fff; }.hms-page .section-dark p { color: rgba(255,255,255,0.75); }.hms-page .grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }.hms-page .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }.hms-page .grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }.hms-page .text-center { text-align: center; }/* ─── EYEBROW LABELS ─── */.hms-page .eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-accent);
    background: var(--brand-accent-light);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
  }.hms-page .eyebrow-blue {
    color: var(--brand-mid);
    background: var(--surface-mid);
  }/* ─── BUTTONS ─── */.hms-page .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
  }.hms-page .btn-primary { background: var(--brand-accent); color: #fff; }.hms-page .btn-primary:hover { background: #e8620d; color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(249,115,22,0.35); }.hms-page .btn-secondary { background: transparent; color: var(--brand-primary); border: 2px solid var(--brand-primary); }.hms-page .btn-secondary:hover { background: var(--brand-primary); color: #fff; transform: translateY(-1px); }.hms-page .btn-white { background: #fff; color: var(--brand-primary); }.hms-page .btn-white:hover { background: var(--surface-off); transform: translateY(-1px); }.hms-page .btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); }.hms-page .btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); }.hms-page .btn-lg { padding: 16px 36px; font-size: 16px; }.hms-page .btn-group { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }/* ─── NAVBAR ─── */.hms-page header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--brand-deep);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }.hms-page nav {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }.hms-page .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    text-decoration: none;
  }.hms-page .nav-logo-icon {
    width: 32px; height: 32px;
    background: var(--brand-accent);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }.hms-page .nav-logo-icon svg { width: 18px; height: 18px; fill: #fff; }.hms-page .navlinks {
    display: flex;
    gap: 28px;
    list-style: none;
  }.hms-page .navlinks a {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    transition: color 0.15s;
  }.hms-page .navlinks a:hover { color: #fff; }.hms-page .nav-cta { display: flex; gap: 10px; }@media (max-width: 860px) {.hms-page .navlinks { display: none; }}/* ─── HERO ─── */.hms-page .hero {
    background: var(--brand-deep);
    padding: 96px 0 80px;
    position: relative;
    overflow: hidden;
  }.hms-page .hero::before {
    content: '';
    position: absolute;
    top: -140px; right: -100px;
    width: 640px; height: 640px;
    background: radial-gradient(circle, rgba(30,110,185,0.18) 0%, transparent 70%);
    pointer-events: none;
  }.hms-page .hero::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -60px;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(249,115,22,0.10) 0%, transparent 65%);
    pointer-events: none;
  }.hms-page .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
  }@media (max-width: 860px) {.hms-page .hero-inner { grid-template-columns: 1fr; }}.hms-page .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249,115,22,0.15);
    border: 1px solid rgba(249,115,22,0.3);
    color: var(--brand-accent-mid);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 22px;
  }.hms-page .hero-badge .dot { width: 7px; height: 7px; background: var(--brand-accent); border-radius: 50%; }.hms-page .hero h1 { color: #fff; margin-bottom: 20px; }.hms-page .hero h1 em { font-style: normal; color: var(--brand-accent-mid); }.hms-page .hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.72);
    margin-bottom: 32px;
    line-height: 1.65;
  }.hms-page .hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }.hms-page .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
  }.hms-page .trust-item svg { width: 16px; height: 16px; color: var(--brand-accent-mid); flex-shrink: 0; }/* hero mockup */.hms-page .hero-visual { position: relative; }.hms-page .hero-mockup {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-xl);
    padding: 24px;
    backdrop-filter: blur(4px);
  }.hms-page .mockup-bar { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }.hms-page .mdot { width: 10px; height: 10px; border-radius: 50%; }.hms-page .mdot:nth-child(1) { background: #FF5F57; }.hms-page .mdot:nth-child(2) { background: #FFBC2E; }.hms-page .mdot:nth-child(3) { background: #2AC840; }.hms-page .mockup-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }.hms-page .mockup-stat {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: var(--radius-md);
    padding: 14px;
  }.hms-page .mockup-stat-label { font-size: 11px; color: rgba(255,255,255,0.45); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.06em; }.hms-page .mockup-stat-val { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: #fff; }.hms-page .mockup-stat-sub { font-size: 11px; color: var(--brand-accent-mid); margin-top: 2px; }.hms-page .mockup-row {
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }.hms-page .mockup-row:last-child { margin-bottom: 0; }.hms-page .mockup-row-label { font-size: 13px; color: rgba(255,255,255,0.7); }.hms-page .mockup-row-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
  }.hms-page .badge-green { background: rgba(14,122,75,0.25); color: #4ADE80; }.hms-page .badge-orange { background: rgba(249,115,22,0.2); color: var(--brand-accent-mid); }.hms-page .badge-blue { background: rgba(46,143,224,0.2); color: #7EC8F5; }.hms-page .floating-tag {
    position: absolute;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 10px 16px;
    box-shadow: 0 8px 30px rgba(11,34,57,0.18);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-heading);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
  }.hms-page .floating-tag-icon {
    width: 28px; height: 28px;
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
  }.hms-page .ft-bottom-left { bottom: -20px; left: -20px; }.hms-page .ft-top-right { top: -16px; right: 10px; }/* ─── SECTION HEADER ─── */.hms-page .section-head { margin-bottom: 48px; }.hms-page .section-head h2 { margin-top: 8px; }.hms-page .section-head > p { margin-top: 14px; color: var(--text-muted); max-width: 640px; font-size: 17px; }/* ─── INTRO LEDE SECTION ─── */.hms-page .lede-text {
    font-size: 18px;
    line-height: 1.75;
    color: var(--text-body);
    max-width: 780px;
  }.hms-page .lede-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 40px;
  }.hms-page .lede-card {
    background: var(--surface-off);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
  }.hms-page .lede-card h4 { margin-bottom: 8px; color: var(--text-heading); }.hms-page .lede-card p { font-size: 15px; color: var(--text-muted); margin: 0; }/* ─── PLATFORM TYPE CARDS ─── */.hms-page .platform-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
  }.hms-page .platform-card {
    background: var(--surface-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.2s, transform 0.2s;
  }.hms-page .platform-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }.hms-page .platform-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    background: var(--brand-accent-light);
    color: var(--brand-accent);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 14px;
  }.hms-page .platform-card h4 { margin-bottom: 8px; }.hms-page .platform-card p { font-size: 15px; color: var(--text-muted); margin: 0; }/* ─── ECOSYSTEM GRID ─── */.hms-page .eco-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
  }.hms-page .eco-card {
    background: var(--surface-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-card);
  }.hms-page .eco-card-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius-md);
    background: var(--surface-mid);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
  }.hms-page .eco-card-icon svg { width: 22px; height: 22px; color: var(--brand-mid); }.hms-page .eco-card h4 { margin-bottom: 8px; }.hms-page .eco-card p { font-size: 14.5px; color: var(--text-muted); margin: 0; }.hms-page .eco-card-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--brand-mid);
    background: var(--surface-mid);
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 10px;
  }.hms-page .also-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
  }.hms-page .also-card {
    background: var(--surface-mid);
    border: 1px solid var(--border-mid);
    border-radius: var(--radius-md);
    padding: 20px;
  }.hms-page .also-card h4 { font-size: 15px; margin-bottom: 6px; }.hms-page .also-card p { font-size: 14px; color: var(--text-muted); margin: 0; }.hms-page .also-heading {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    color: var(--text-heading);
    margin-bottom: 14px;
  }/* ─── REVENUE STREAMS ─── */.hms-page .revenue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
  }.hms-page .rev-card {
    background: var(--surface-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.2s;
  }.hms-page .rev-card:hover { box-shadow: var(--shadow-hover); }.hms-page .rev-no {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-accent);
    margin-bottom: 10px;
  }.hms-page .rev-card h4 { margin-bottom: 8px; font-size: 15px; }.hms-page .rev-card p { font-size: 14px; color: var(--text-muted); margin: 0; }.hms-page .models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
  }.hms-page .model-card {
    background: var(--surface-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    padding: 28px;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
  }.hms-page .model-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }.hms-page .model-num {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    color: var(--border-mid);
    line-height: 1;
    margin-bottom: 14px;
  }.hms-page .model-card h4 { font-size: 17px; margin-bottom: 10px; }.hms-page .model-card p { font-size: 14.5px; color: var(--text-muted); margin: 0; }/* ─── WHY FOUNDERS CHOOSE ─── */.hms-page .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
  }.hms-page .why-card {
    background: var(--surface-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-card);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: box-shadow 0.2s;
  }.hms-page .why-card:hover { box-shadow: var(--shadow-hover); }.hms-page .why-icon {
    width: 40px; height: 40px;
    border-radius: var(--radius-md);
    background: var(--brand-accent-light);
    color: var(--brand-accent);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
  }.hms-page .why-card h4 { margin-bottom: 6px; font-size: 15px; }.hms-page .why-card p { font-size: 14px; color: var(--text-muted); margin: 0; }/* ─── COMPARISON TABLE ─── */.hms-page .compare-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
  }.hms-page table.compare {
    width: 100%;
    border-collapse: collapse;
    min-width: 680px;
    font-size: 14.5px;
  }.hms-page table.compare th, .hms-page table.compare td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
    vertical-align: top;
  }.hms-page table.compare tr:last-child td { border-bottom: none; }.hms-page table.compare thead th {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    background: var(--brand-deep);
    color: rgba(255,255,255,0.85);
    white-space: nowrap;
  }.hms-page table.compare thead th:first-child { color: var(--brand-accent-mid); }.hms-page table.compare tbody th {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
    background: var(--surface-off);
    font-weight: 600;
    white-space: nowrap;
    border-right: 1px solid var(--border-light);
  }.hms-page table.compare td { color: var(--text-body); }.hms-page table.compare td:first-child { font-weight: 600; color: var(--text-heading); }.hms-page .compare-note {
    margin-top: 20px;
    padding: 18px 22px;
    background: var(--surface-mid);
    border-left: 3px solid var(--brand-accent);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-size: 15px;
    color: var(--text-muted);
  }.hms-page .compare-note a { color: var(--brand-primary); font-weight: 600; }/* ─── WHY NOW (DARK SECTION) ─── */.hms-page .now-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 36px;
  }.hms-page .now-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 24px;
  }.hms-page .now-stat {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-accent-mid);
    margin-bottom: 10px;
  }.hms-page .now-card p { font-size: 15px; color: rgba(255,255,255,0.75); margin: 0; }.hms-page .now-callout {
    margin-top: 32px;
    padding: 22px 28px;
    border: 1px solid rgba(249,115,22,0.3);
    background: rgba(249,115,22,0.08);
    border-radius: var(--radius-md);
    font-size: 16px;
    color: rgba(255,255,255,0.9);
  }.hms-page .now-callout strong { color: var(--brand-accent-mid); }/* ─── NICHES ─── */.hms-page .niche-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px;
  }.hms-page .niche-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--surface-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.2s, border-color 0.2s;
  }.hms-page .niche-chip:hover { box-shadow: var(--shadow-hover); border-color: var(--border-mid); }.hms-page .niche-dot {
    width: 8px; height: 8px;
    background: var(--brand-accent);
    border-radius: 50%;
    flex-shrink: 0;
  }.hms-page .niche-chip span { font-weight: 500; font-size: 14.5px; color: var(--text-heading); }.hms-page .niche-note {
    margin-top: 28px;
    font-size: 15px;
    color: var(--text-muted);
    max-width: 680px;
  }/* ─── FEATURES ─── */.hms-page .feature-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }.hms-page .feature-panel {
    background: var(--surface-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
  }.hms-page .feature-panel-head {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-mid));
    color: #fff;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }.hms-page .feature-panel-head h4 { font-size: 16px; color: #fff; font-family: var(--font-display); }.hms-page .feature-panel-head .ftag {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.06em;
  }.hms-page .feature-panel ul { list-style: none; padding: 6px 0; }.hms-page .feature-panel li {
    padding: 12px 20px;
    font-size: 14.5px;
    color: var(--text-body);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    gap: 10px;
    align-items: flex-start;
  }.hms-page .feature-panel li:last-child { border-bottom: none; }.hms-page .feature-panel li::before {
    content: "";
    width: 6px; height: 6px;
    background: var(--brand-accent);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 8px;
  }
/* ─── FAQ (upgraded card design) ─── */
.hms-page .faq-list {
  display: flex; flex-direction: column; gap: 14px;
  max-width: 920px; margin: 0 auto;
  border-top: 0 !important;
}
.hms-page .faq-item {
  background: #fff !important;
  border: 1px solid var(--border-light) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 2px 12px rgba(11,34,57,0.04);
  transition: box-shadow .25s, border-color .25s, transform .25s;
  position: relative;
}
.hms-page .faq-item::before {
  content: ""; position: absolute;
  top: 0; bottom: 0; left: 0; width: 4px;
  background: linear-gradient(180deg, var(--brand-accent) 0%, var(--brand-accent-mid) 100%);
  opacity: 0;
  transition: opacity .25s;
}
.hms-page .faq-item:hover {
  border-color: var(--brand-accent-mid) !important;
  box-shadow: 0 8px 24px rgba(249,115,22,0.08);
  transform: translateY(-1px);
}
.hms-page .faq-item.open {
  border-color: var(--brand-accent) !important;
  box-shadow: 0 14px 36px rgba(249,115,22,0.12);
}
.hms-page .faq-item.open::before { opacity: 1; }

.hms-page .faq-q {
  display: flex; align-items: center; gap: 18px;
  padding: 20px 24px;
  cursor: pointer;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--text-heading);
  transition: color .15s;
  line-height: 1.4;
}
.hms-page .faq-q:hover { color: var(--brand-primary); }
.hms-page .faq-q > span:nth-child(2) { flex: 1; }

.hms-page .fno {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  font-size: 13px;
  font-weight: 800;
  color: var(--brand-accent);
  background: var(--brand-accent-light);
  border-radius: 10px;
  flex-shrink: 0;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  transition: background .25s, color .25s;
}
.hms-page .faq-item.open .fno {
  background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-accent-mid) 100%);
  color: #fff;
  box-shadow: 0 6px 16px rgba(249,115,22,0.32);
}

.hms-page .fplus {
  margin-left: auto;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--surface-off);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform .25s, background .25s, color .25s;
}
.hms-page .faq-item:hover .fplus {
  background: var(--brand-accent-light);
  color: var(--brand-accent);
}
.hms-page .faq-item.open .fplus {
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-accent-mid) 100%);
  color: #fff;
  box-shadow: 0 6px 16px rgba(249,115,22,0.30);
}

.hms-page .faq-a {
  max-height: 0 !important;
  overflow: hidden !important;
  transition: max-height .45s ease;
  padding: 0 !important;
  font-size: 15px !important;
  color: var(--text-muted) !important;
  line-height: 1.75 !important;
}
.hms-page .faq-item.open .faq-a {
  max-height: 1200px !important;
}
.hms-page .faq-a-inner {
  padding: 4px 24px 22px 78px;
  font-size: 15px;
  color: var(--text-muted);
  max-width: 100%;
  line-height: 1.75;
  animation: hmsFaqFade .35s ease;
}
.hms-page .faq-a-inner a { color: var(--brand-primary); font-weight: 600; }

@keyframes hmsFaqFade {
  from { opacity: 0; transform: translateY(-3px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 575.98px) {
  .hms-page .faq-q { padding: 16px 18px; gap: 12px; font-size: 14.5px; }
  .hms-page .fno { width: 30px; height: 30px; font-size: 12px; }
  .hms-page .fplus { width: 28px; height: 28px; font-size: 18px; }
  .hms-page .faq-a-inner { padding: 14px 18px 18px 60px; font-size: 14px; }
}/* ─── FINAL CTA ─── */.hms-page .final-cta {
    background: var(--brand-deep);
    padding: 96px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }.hms-page .final-cta::before {
    content: '';
    position: absolute;
    top: -160px; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(30,110,185,0.2) 0%, transparent 65%);
    pointer-events: none;
  }.hms-page .final-cta .container { position: relative; z-index: 1; }.hms-page .final-cta h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 16px; }.hms-page .final-cta > .container > p { color: rgba(255,255,255,0.72); font-size: 17px; max-width: 560px; margin: 0 auto 36px; }/* ─── FOOTER ─── */.hms-page footer {
    background: #071828;
    padding: 28px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
  }.hms-page footer .foot-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
  }.hms-page footer .foot-right { display: flex; gap: 20px; }.hms-page footer a { color: rgba(255,255,255,0.45); }.hms-page footer a:hover { color: rgba(255,255,255,0.8); }