/* Price heatmaps: /price-heatmaps hub and /cheapest/{city}.
   Palette: #3554d1 blue, #051036 navy, #697488 grey, #f5f7fb bands.
   Price scale: teal (cheapest) -> green -> yellow -> orange -> red (priciest). */

/* ---- Hero ---------------------------------------------------------- */
.hm-hero { position: relative; overflow: hidden; background: #051036; color: #fff; padding: 84px 0 64px; }
.hm-hero::before { content: ''; position: absolute; inset: -10%; pointer-events: none;
  background:
    radial-gradient(55% 70% at 8% 100%, rgba(20,168,158,0.55), transparent 62%),
    radial-gradient(45% 65% at 96% 0%, rgba(226,69,59,0.48), transparent 62%),
    radial-gradient(38% 50% at 72% 96%, rgba(243,144,63,0.32), transparent 62%),
    radial-gradient(45% 60% at 42% 6%, rgba(53,84,209,0.62), transparent 62%);
  filter: blur(18px); }
.hm-hero::after { content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), transparent 90%); mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), transparent 90%); }
.hm-hero > .container { position: relative; z-index: 1; }
.hm-hero h1 { font-size: 52px; line-height: 1.06; letter-spacing: -1.4px; font-weight: 700; color: #fff; }
.hm-hero__sub { font-size: 19px; line-height: 1.5; opacity: 0.9; margin-top: 16px; max-width: 720px; }
.hm-hero__sub--center { margin-left: auto; margin-right: auto; }
.hm-pill { display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px; border-radius: 100px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; text-decoration: none; }
.hm-pill:hover { color: #fff; background: rgba(255,255,255,0.2); }
.hm-pill__dot { width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(90deg, #14a89e, #e2453b); box-shadow: 0 0 0 3px rgba(255,255,255,0.15); animation: hm-breathe 2.6s ease-in-out infinite; }
@keyframes hm-breathe { 0%, 100% { transform: scale(1); box-shadow: 0 0 0 3px rgba(255,255,255,0.15); } 50% { transform: scale(1.35); box-shadow: 0 0 0 7px rgba(255,255,255,0.06); } }
@media (prefers-reduced-motion: reduce) { .hm-pill__dot { animation: none; } }
@media (max-width: 991px) { .hm-hero { padding: 64px 0 50px; } .hm-hero h1 { font-size: 40px; } }
@media (max-width: 575px) { .hm-hero { padding: 48px 0 40px; } .hm-hero h1 { font-size: 30px; letter-spacing: -0.8px; } .hm-hero__sub { font-size: 16px; } }

/* Headline stats (glass cards) */
.hm-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 34px; }
.hm-stat { position: relative; background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.18); border-radius: 18px; padding: 20px 22px; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); overflow: hidden; }
.hm-stat--hot::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: linear-gradient(180deg, #14a89e, #6cc46a); }
.hm-stat__label { font-size: 12px; text-transform: uppercase; letter-spacing: 1.6px; font-weight: 700; color: rgba(255,255,255,0.7); }
.hm-stat__value { font-size: 30px; font-weight: 800; letter-spacing: -0.8px; margin-top: 6px; line-height: 1.1; color: #fff; }
.hm-stat__value small { font-size: 14px; font-weight: 600; letter-spacing: 0; color: rgba(255,255,255,0.75); margin-left: 4px; }
.hm-stat__hint { font-size: 13px; color: rgba(255,255,255,0.68); margin-top: 6px; }
@media (max-width: 767px) { .hm-stats { grid-template-columns: 1fr; gap: 10px; } .hm-stat { padding: 16px 18px; } .hm-stat__value { font-size: 26px; } }

/* Season chips (hero strip) */
.hm-seasons { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.hm-season-chip { display: inline-flex; align-items: center; gap: 9px; padding: 9px 16px 9px 12px; border-radius: 100px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); font-size: 14px; font-weight: 600; color: #fff; }
.hm-season-chip i { width: 12px; height: 12px; border-radius: 50%; display: inline-block; flex: 0 0 auto; }
.hm-season-chip span { opacity: 0.75; font-weight: 500; }
.hm-season-chip.-low i { background: #14a89e; box-shadow: 0 0 0 4px rgba(20,168,158,0.25); }
.hm-season-chip.-shoulder i { background: #f4cf4a; box-shadow: 0 0 0 4px rgba(244,207,74,0.25); }
.hm-season-chip.-high i { background: #e2453b; box-shadow: 0 0 0 4px rgba(226,69,59,0.25); }

/* ---- Sticky legend -------------------------------------------------- */
.hm-legend-sticky { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,0.94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid #e7ecf5; box-shadow: 0 6px 18px rgba(5,16,54,0.06); }
@media (max-width: 767px) { .hm-legend-sticky { top: 0; } }
.hm-legend { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; padding: 12px 0; font-size: 13px; color: #697488; }
.hm-legend__scale { display: flex; align-items: center; gap: 10px; flex: 1 1 320px; min-width: 0; }
.hm-legend__bar { position: relative; height: 12px; flex: 1 1 auto; min-width: 120px; border-radius: 100px; background: linear-gradient(90deg, #14a89e 0%, #6cc46a 25%, #f4cf4a 50%, #f3903f 75%, #e2453b 100%); box-shadow: inset 0 0 0 1px rgba(5,16,54,0.06); }
.hm-legend__bar i { position: absolute; top: -3px; width: 2px; height: 18px; background: rgba(5,16,54,0.28); border-radius: 2px; }
.hm-legend__end { font-weight: 700; color: #051036; white-space: nowrap; }
.hm-legend__hint { margin-left: auto; white-space: nowrap; }
.hm-legend__hint b { color: #051036; }
@media (max-width: 575px) { .hm-legend__hint { margin-left: 0; white-space: normal; } }

/* ---- Sections --------------------------------------------------------- */
.hm-section { padding: 60px 0 64px; background: #fff; }
.hm-section--alt { background: #f5f7fb; }
.hm-section__head { margin-bottom: 26px; }
.hm-h2 { font-size: 30px; font-weight: 700; color: #051036; letter-spacing: -0.6px; line-height: 1.15; }
.hm-lead { font-size: 16px; color: #697488; margin-top: 8px; line-height: 1.55; max-width: 760px; }
.hm-kicker { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: #3554d1; margin-bottom: 8px; }
@media (max-width: 767px) { .hm-section { padding: 44px 0 48px; } .hm-h2 { font-size: 25px; } }

/* ---- Calendar grid --------------------------------------------------- */
.hm-months { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
@media (max-width: 1199px) { .hm-months { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 991px) { .hm-months { grid-template-columns: minmax(0, 1fr); gap: 16px; } }
/* main.js's <main> is overflow:hidden, which disables position:sticky inside
   it; the cheapest page flags main (one-line script) so the legend can stick. */
main.hm-main { overflow: visible; }
.hm-month { scroll-margin-top: 110px; background: #fff; border: 1px solid #e7ecf5; border-radius: 20px; padding: 16px 14px 18px; box-shadow: 0 10px 30px rgba(5,16,54,0.06); min-width: 0; }
.hm-month__head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 14px; }
.hm-month__title { font-size: 19px; font-weight: 700; color: #051036; letter-spacing: -0.3px; }
.hm-month__from { font-size: 13px; color: #697488; white-space: nowrap; }
.hm-month__from b { color: #051036; font-weight: 700; }
.hm-month__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: -4px; padding: 4px; }
@media (max-width: 420px) { .hm-month { padding: 14px 10px 16px; } .hm-month__head { padding: 0 4px; } }
.hm-dow, .hm-grid { display: grid; grid-template-columns: repeat(7, minmax(42px, 1fr)); gap: 3px; min-width: 312px; }
.hm-dow { margin-bottom: 6px; }
.hm-dow span { text-align: center; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; color: #9aa5b8; text-transform: uppercase; }
.hm-cell { min-height: 54px; border-radius: 10px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-decoration: none; padding: 4px 2px; color: #fff; transition: transform 0.12s ease, box-shadow 0.12s ease; }
.hm-cell--blank { background: transparent; }
.hm-cell--empty { background: #eef1f6; }
.hm-cell--past { background: #f6f8fb; }
.hm-cell__day { font-size: 11px; font-weight: 600; opacity: 0.85; line-height: 1; }
.hm-cell__price { font-size: 12px; font-weight: 800; line-height: 1.15; margin-top: 3px; letter-spacing: -0.3px; white-space: nowrap; max-width: 100%; overflow: hidden; text-overflow: ellipsis; font-variant-numeric: tabular-nums; }
.hm-cell--priced { box-shadow: inset 0 0 0 1px rgba(5,16,54,0.05); }
.hm-cell--priced:hover, .hm-cell--priced:focus { transform: scale(1.1); z-index: 2; box-shadow: 0 8px 18px rgba(5,16,54,0.22); color: inherit; }
.hm-cell--darktext { color: #1d2a1d; }
.hm-cell--today { outline: 2px solid #051036; outline-offset: 1px; }
.hm-cell--empty .hm-cell__day, .hm-cell--past .hm-cell__day { color: #b3bdcc; }

/* ---- Season guide ------------------------------------------------- */
.hm-guide { background: #fff; border: 1px solid #e7ecf5; border-radius: 22px; padding: 28px 30px 30px; box-shadow: 0 10px 30px rgba(5,16,54,0.06); }
@media (max-width: 575px) { .hm-guide { padding: 20px 16px 22px; } }
.hm-seasonbar { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 4px; }
.hm-seasonbar__seg { position: relative; display: block; text-align: center; text-decoration: none; }
.hm-seasonbar__bar { display: block; height: 16px; border-radius: 6px; background: #e3e8f0; }
.hm-seasonbar__seg.-low .hm-seasonbar__bar { background: #14a89e; }
.hm-seasonbar__seg.-shoulder .hm-seasonbar__bar { background: #f4cf4a; }
.hm-seasonbar__seg.-high .hm-seasonbar__bar { background: #e2453b; }
.hm-seasonbar__seg.-none .hm-seasonbar__bar { background: repeating-linear-gradient(135deg, #e9edf3 0 4px, #f5f7fb 4px 8px); }
.hm-seasonbar__label { display: block; font-size: 12px; font-weight: 700; color: #051036; margin-top: 8px; letter-spacing: 0.3px; }
.hm-seasonbar__seg.-none .hm-seasonbar__label { color: #b3bdcc; }
.hm-seasonbar__price { display: block; font-size: 12px; color: #697488; margin-top: 2px; white-space: nowrap; }
@media (max-width: 767px) { .hm-seasonbar { gap: 3px; } .hm-seasonbar__label { font-size: 10px; } .hm-seasonbar__price { display: none; } }
.hm-seasonkey { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 18px; font-size: 13px; color: #697488; }
.hm-seasonkey span { display: inline-flex; align-items: center; gap: 7px; }
.hm-seasonkey i { width: 12px; height: 12px; border-radius: 4px; display: inline-block; }
.hm-sentence { font-size: 19px; line-height: 1.5; color: #051036; margin-top: 22px; font-weight: 500; }
.hm-sentence b { color: #3554d1; }
@media (max-width: 575px) { .hm-sentence { font-size: 16.5px; } }
.hm-guide__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
@media (max-width: 767px) { .hm-guide__row { grid-template-columns: 1fr; } }
.hm-guide__box { background: #f5f7fb; border-radius: 16px; padding: 18px 20px; }
.hm-guide__box-title { font-size: 12px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; color: #697488; margin-bottom: 12px; }
.hm-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.hm-chip { display: inline-flex; align-items: center; padding: 7px 13px; border-radius: 100px; background: #fff; border: 1px solid #dfe5f0; font-size: 13px; font-weight: 600; color: #051036; }
.hm-chip.-pick { background: #051036; color: #fff; border-color: #051036; }
.hm-chip.-low { background: #e3f6f3; color: #0f7f78; border-color: #bfe8e2; }
.hm-chip.-high { background: #fde9e7; color: #b3322a; border-color: #f7c9c5; }
.hm-chip.-shoulder { background: #fdf6dc; color: #8a6d0a; border-color: #f4e5a5; }
.hm-guide__note { font-size: 15px; line-height: 1.55; color: #3d4a63; margin: 0; }

/* ---- Cheapest weeks ------------------------------------------------ */
.hm-weeks { display: grid; gap: 12px; }
.hm-week { display: grid; grid-template-columns: 52px 1fr auto; align-items: center; gap: 18px; background: #fff; border: 1px solid #e7ecf5; border-radius: 18px; padding: 16px 18px; box-shadow: 0 6px 20px rgba(5,16,54,0.05); }
.hm-week__rank { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; color: #fff; }
.hm-week__dates { font-size: 18px; font-weight: 700; color: #051036; letter-spacing: -0.3px; }
.hm-week__meta { font-size: 14px; color: #697488; margin-top: 3px; }
.hm-week__meta b { color: #051036; }
.hm-week__badge { display: inline-block; margin-left: 10px; padding: 3px 9px; border-radius: 100px; background: #e3f6f3; color: #0f7f78; font-size: 12px; font-weight: 700; }
.hm-week__cta { white-space: nowrap; }
@media (max-width: 575px) { .hm-week { grid-template-columns: 44px 1fr; gap: 12px; } .hm-week__rank { width: 44px; height: 44px; font-size: 17px; } .hm-week__cta { grid-column: 1 / -1; } .hm-week__cta .button { width: 100%; } .hm-week__dates { font-size: 16px; } }

/* ---- Destination heat cards (hub grid + nearby row) ------------- */
.hm-cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
@media (max-width: 1199px) { .hm-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 991px) { .hm-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; } }
@media (max-width: 479px) { .hm-cards { grid-template-columns: minmax(0, 1fr); } }
.hm-card { display: flex; flex-direction: column; gap: 14px; background: #fff; border: 1px solid #e7ecf5; border-radius: 20px; padding: 18px 18px 16px; text-decoration: none; color: #051036; box-shadow: 0 6px 20px rgba(5,16,54,0.05); transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease; min-width: 0; }
.hm-card:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(5,16,54,0.12); border-color: #c9d4ee; color: #051036; }
.hm-card__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.hm-card__name { font-size: 18px; font-weight: 700; letter-spacing: -0.3px; line-height: 1.2; }
.hm-card__country { font-size: 13px; color: #697488; margin-top: 3px; }
.hm-strip { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 3px; }
.hm-strip__cell { height: 30px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.92); background: #eef1f6; }
.hm-strip__cell.-none { color: #b3bdcc; background: repeating-linear-gradient(135deg, #eef1f6 0 3px, #f7f9fc 3px 6px); }
.hm-strip__cell.-dark { color: #1d2a1d; }
.hm-strip--tall .hm-strip__cell { height: 38px; font-size: 11px; }
.hm-card__foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; margin-top: auto; }
.hm-card__price { font-size: 13px; color: #697488; }
.hm-card__price b { display: block; font-size: 22px; font-weight: 800; color: #051036; letter-spacing: -0.5px; line-height: 1.1; }
.hm-card__month { font-size: 13px; color: #697488; text-align: right; }
.hm-card__month b { color: #0f7f78; font-weight: 700; }
.hm-card__cta { font-size: 13px; font-weight: 700; color: #3554d1; white-space: nowrap; }
.hm-badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: 0.3px; white-space: nowrap; flex: 0 0 auto; }
.hm-badge i { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }
.hm-badge.-high { background: #fde9e7; color: #b3322a; }
.hm-badge.-high i { background: #e2453b; }
.hm-badge.-low { background: #e3f6f3; color: #0f7f78; }
.hm-badge.-low i { background: #14a89e; }
.hm-badge.-none { background: #eef1f6; color: #697488; }
.hm-badge.-none i { background: #b3bdcc; }
.hm-card--nodata { background: #fbfcfe; }
.hm-card--nodata .hm-card__name { color: #3d4a63; }

/* ---- Notes / links ---------------------------------------------------- */
.hm-note { font-size: 16px; line-height: 1.6; color: #697488; margin-top: 28px; }
.hm-note a { font-weight: 700; color: #3554d1; }
.hm-note a:hover { text-decoration: underline; }
@media (max-width: 575px) { .hm-note { font-size: 15px; } }
.hm-empty { background: #fff; border: 1px dashed #c7d4f1; border-radius: 20px; padding: 50px 30px; text-align: center; }
.hm-empty i { font-size: 44px; color: #3554d1; opacity: 0.5; }

/* ---- Luxury for less (/luxury-for-less/{city}) ------------------- */
.hm-hero--lux::before {
  background:
    radial-gradient(55% 70% at 8% 100%, rgba(20,168,158,0.5), transparent 62%),
    radial-gradient(45% 65% at 96% 0%, rgba(201,162,77,0.6), transparent 62%),
    radial-gradient(38% 50% at 72% 96%, rgba(243,212,136,0.3), transparent 62%),
    radial-gradient(45% 60% at 42% 6%, rgba(53,84,209,0.55), transparent 62%); }
.hm-hero h1 .lfl-gold { background: linear-gradient(90deg, #f3d488 0%, #c9a24d 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hm-pill--lux { background: rgba(201,162,77,0.18); border-color: rgba(201,162,77,0.45); color: #f3d488; }
.hm-pill--lux:hover { color: #f3d488; background: rgba(201,162,77,0.28); }
.hm-pill--lux .hm-pill__dot { background: linear-gradient(90deg, #f3d488, #c9a24d); box-shadow: 0 0 0 3px rgba(201,162,77,0.25); animation-name: hm-breathe-lux; }
@keyframes hm-breathe-lux { 0%, 100% { transform: scale(1); box-shadow: 0 0 0 3px rgba(201,162,77,0.25); } 50% { transform: scale(1.35); box-shadow: 0 0 0 7px rgba(201,162,77,0.12); } }
.hm-stat--gold::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: linear-gradient(180deg, #f3d488, #c9a24d); }
.hm-week__stars { display: inline-flex; align-items: center; gap: 2px; margin-right: 8px; color: #c9a24d; font-size: 12px; vertical-align: 1px; }
.hm-week__price { font-size: 15px; color: #697488; margin-top: 3px; }
.hm-week__price b { font-size: 20px; color: #051036; letter-spacing: -0.4px; }
.hm-week__price span { margin-left: 10px; }
.hm-week__price span b { font-size: 15px; font-weight: 700; }
.lfl-deals { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
@media (max-width: 991px) { .lfl-deals { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; } }
@media (max-width: 575px) { .lfl-deals { grid-template-columns: minmax(0, 1fr); } }
.lfl-deal { display: flex; flex-direction: column; gap: 12px; background: #fff; border: 1px solid #e7ecf5; border-radius: 20px; padding: 18px 18px 16px; text-decoration: none; color: #051036; box-shadow: 0 6px 20px rgba(5,16,54,0.05); transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease; min-width: 0; }
.lfl-deal:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(5,16,54,0.12); border-color: #e8d7a8; color: #051036; }
.lfl-deal__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.lfl-deal__date { font-size: 17px; font-weight: 700; letter-spacing: -0.3px; line-height: 1.2; }
.lfl-deal__dow { display: block; font-size: 13px; color: #697488; font-weight: 500; margin-top: 2px; }
.lfl-deal__gap { flex: 0 0 auto; padding: 5px 10px; border-radius: 100px; font-size: 11px; font-weight: 700; white-space: nowrap; background: #fdf6dc; color: #8a6d0a; }
.lfl-deal__gap.-win { background: #e3f6f3; color: #0f7f78; }
.lfl-deal__gap.-same { background: #e9edf9; color: #2a44b0; }
.lfl-deal__prices { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.lfl-deal__price { background: #f5f7fb; border-radius: 14px; padding: 12px 14px; min-width: 0; }
.lfl-deal__price.-lux { background: linear-gradient(135deg, #fdf6e3, #f7ead0); }
.lfl-deal__price small { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: #697488; }
.lfl-deal__price.-lux small { color: #a5822f; }
.lfl-deal__price b { display: block; font-size: 22px; font-weight: 800; letter-spacing: -0.5px; line-height: 1.1; margin-top: 4px; color: #051036; white-space: nowrap; }
.lfl-deal__price i { font-style: normal; font-size: 12px; color: #697488; font-weight: 500; }
.lfl-deal__cta { font-size: 13px; font-weight: 700; color: #3554d1; margin-top: auto; }
.lfl-months { display: grid; gap: 10px; }
.lfl-month { display: grid; grid-template-columns: 150px 1fr auto; align-items: center; gap: 18px; background: #fff; border: 1px solid #e7ecf5; border-radius: 18px; padding: 16px 20px; box-shadow: 0 6px 20px rgba(5,16,54,0.05); }
.lfl-month__name { font-size: 18px; font-weight: 700; color: #051036; letter-spacing: -0.3px; }
.lfl-month__name small { display: block; font-size: 12px; color: #697488; font-weight: 500; margin-top: 2px; }
.lfl-month__bars { display: grid; gap: 6px; min-width: 0; }
.lfl-bar { display: grid; grid-template-columns: 52px 1fr auto; align-items: center; gap: 10px; font-size: 13px; color: #697488; }
.lfl-bar b { color: #051036; white-space: nowrap; }
.lfl-bar i { display: block; height: 10px; border-radius: 100px; background: #dfe5f0; min-width: 6px; }
.lfl-bar.-lux i { background: linear-gradient(90deg, #f3d488, #c9a24d); }
.lfl-bar.-std i { background: #14a89e; }
.lfl-month__premium { text-align: right; white-space: nowrap; }
.lfl-month__premium b { display: block; font-size: 24px; font-weight: 800; letter-spacing: -0.6px; color: #051036; line-height: 1.05; }
.lfl-month__premium.-low b { color: #0f7f78; }
.lfl-month__premium.-high b { color: #b3322a; }
.lfl-month__premium span { font-size: 12px; color: #697488; }
.lfl-month__sentence { grid-column: 1 / -1; font-size: 15px; color: #3d4a63; line-height: 1.5; margin: 0; padding-top: 10px; border-top: 1px dashed #e7ecf5; }
@media (max-width: 767px) { .lfl-month { grid-template-columns: 1fr auto; gap: 12px; padding: 14px 16px; } .lfl-month__bars { grid-column: 1 / -1; } .lfl-month__name { font-size: 16px; } .lfl-month__premium b { font-size: 20px; } }
.lfl-legend { margin-bottom: 18px; }
.lfl-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; margin-top: 26px; }
.lfl-link { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: 16px; background: #fff; border: 1px solid #e7ecf5; box-shadow: 0 8px 24px rgba(5,16,54,0.06); color: #051036; text-decoration: none; transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease; }
.lfl-link:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(5,16,54,0.12); border-color: #c9d3ea; color: #051036; }
.lfl-link__icon { flex: 0 0 44px; width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; color: #3554d1; background: #e5f0fd; }
.lfl-link--gold .lfl-link__icon { color: #a8802a; background: #fbf1d6; }
.lfl-link--teal .lfl-link__icon { color: #0f8f87; background: #dcf4f2; }
.lfl-link__text { min-width: 0; }
.lfl-link__title { display: block; font-size: 15px; font-weight: 600; line-height: 1.3; }
.lfl-link__sub { display: block; font-size: 13px; color: #697488; margin-top: 2px; }
.lfl-link__arrow { margin-left: auto; color: #3554d1; font-size: 14px; flex: 0 0 auto; }

/* ---- Hub-only ------------------------------------------------------ */
.hh-hero__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: 40px; align-items: center; }
@media (max-width: 991px) { .hh-hero__grid { grid-template-columns: minmax(0, 1fr); gap: 28px; } }
.hh-art { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 6px; transform: perspective(900px) rotateX(18deg) rotateY(-12deg) rotateZ(3deg); transform-origin: center; opacity: 0.95; }
.hh-art span { display: block; aspect-ratio: 1 / 1; border-radius: 6px; box-shadow: 0 6px 14px rgba(0,0,0,0.22); }
@media (max-width: 991px) { .hh-art { display: none; } }
.hh-search { background: #fff; border-radius: 22px; padding: 18px; box-shadow: 0 24px 50px rgba(5,16,54,0.28); display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 34px; color: #051036; }
@media (max-width: 767px) { .hh-search { grid-template-columns: 1fr; padding: 14px; } }
.hh-field { position: relative; }
.hh-field label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: #697488; margin-bottom: 6px; }
.hh-input-wrap { position: relative; }
.hh-input-wrap > i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: #3554d1; font-size: 18px; pointer-events: none; }
.hh-input { width: 100%; height: 54px; border: 1.5px solid #dfe5f0; border-radius: 14px; padding: 0 92px 0 42px; font-size: 15px; font-weight: 500; color: #051036; background: #f9fafc; outline: none; transition: border-color 0.15s, box-shadow 0.15s; }
.hh-input:focus { border-color: #3554d1; box-shadow: 0 0 0 4px rgba(53,84,209,0.14); background: #fff; }
.hh-go { position: absolute; right: 6px; top: 6px; height: 42px; padding: 0 16px; border: 0; border-radius: 10px; background: #3554d1; color: #fff; font-weight: 700; font-size: 14px; cursor: pointer; }
.hh-go:hover { background: #2a44b0; }
.hh-dd { position: absolute; left: 0; right: 0; top: calc(100% + 6px); background: #fff; border: 1px solid #e7ecf5; border-radius: 14px; box-shadow: 0 18px 40px rgba(5,16,54,0.18); z-index: 30; overflow: hidden; max-height: 320px; overflow-y: auto; }
.hh-dd[hidden] { display: none; }
.hh-dd__item { display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%; text-align: left; padding: 11px 14px; border: 0; background: #fff; cursor: pointer; font-family: inherit; }
.hh-dd__item:hover, .hh-dd__item.-active { background: #f0f3fb; }
.hh-dd__name { font-size: 14px; font-weight: 600; color: #051036; }
.hh-dd__sub { font-size: 12px; color: #697488; white-space: nowrap; }
.hh-dd__tag { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #0f7f78; background: #e3f6f3; padding: 3px 7px; border-radius: 100px; margin-left: 6px; }
.hh-dd__empty { padding: 12px 14px; font-size: 13px; color: #697488; }
.hh-filters { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 26px; }
.hh-chip { padding: 9px 16px; border-radius: 100px; border: 1.5px solid #dfe5f0; background: #fff; color: #051036; font-size: 14px; font-weight: 600; cursor: pointer; font-family: inherit; transition: all 0.12s; }
.hh-chip:hover { border-color: #3554d1; color: #3554d1; }
.hh-chip.-active { background: #051036; border-color: #051036; color: #fff; }
.hh-chip small { font-weight: 600; opacity: 0.6; margin-left: 4px; }
.hh-count { margin-left: auto; font-size: 14px; color: #697488; }
@media (max-width: 575px) { .hh-count { margin-left: 0; width: 100%; } .hh-chip { padding: 8px 13px; font-size: 13px; } }
.hh-how { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
@media (max-width: 991px) { .hh-how { grid-template-columns: 1fr; } }
.hh-how__step { background: #fff; border: 1px solid #e7ecf5; border-radius: 20px; padding: 24px 24px 26px; box-shadow: 0 6px 20px rgba(5,16,54,0.05); }
.hh-how__num { width: 40px; height: 40px; border-radius: 12px; background: #051036; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; margin-bottom: 16px; }
.hh-how__step h3 { font-size: 18px; font-weight: 700; color: #051036; margin-bottom: 8px; }
.hh-how__step p { font-size: 15px; line-height: 1.6; color: #697488; margin: 0; }
.hh-how__scale { margin-top: 14px; height: 10px; border-radius: 100px; background: linear-gradient(90deg, #14a89e 0%, #6cc46a 25%, #f4cf4a 50%, #f3903f 75%, #e2453b 100%); }
.hh-how__scale-ends { display: flex; justify-content: space-between; font-size: 12px; font-weight: 700; color: #051036; margin-top: 6px; }
.hh-hero__stats { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 30px; }
.hh-hero__stat b { display: block; font-size: 28px; font-weight: 800; letter-spacing: -0.8px; line-height: 1.05; }
.hh-hero__stat span { font-size: 13px; color: rgba(255,255,255,0.7); }
