:root {
  --hk-teal-900: #063c47;
  --hk-teal-800: #0b5564;
  --hk-teal-700: #0f7681;
  --hk-teal-600: #1493a1;
  --hk-teal-100: #e8f7f8;
  --hk-yellow: #f0c51c;
  --hk-yellow-soft: #fff3bb;
  --hk-ink: #132129;
  --hk-body: #42515a;
  --hk-muted: #6d7d87;
  --hk-border: rgba(6, 60, 71, 0.1);
  --hk-bg: #f7fafb;
  --hk-white: #ffffff;
  --hk-shadow-lg: 0 30px 70px rgba(6, 60, 71, 0.12);
  --hk-shadow-md: 0 20px 45px rgba(6, 60, 71, 0.09);
  --hk-radius-xl: 40px;
  --hk-radius-lg: 28px;
  --hk-radius-md: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--hk-ink);
  background:
    radial-gradient(circle at top left, rgba(20, 147, 161, 0.08), transparent 28%),
    linear-gradient(180deg, #fbfdfd 0%, #f5f8f9 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(100% - 24px, 1280px);
}

.text-secondary { color: var(--hk-muted) !important; }
.text-white-50 { color: rgba(255,255,255,.72) !important; }

.btn {
  border-radius: 999px;
  font-weight: 700;
  padding: 0.92rem 1.5rem;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, border-color .25s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(6, 60, 71, 0.16);
}
.btn-primary {
  border: none;
  color: #182024;
  background: linear-gradient(135deg, var(--hk-yellow), #ffdd58);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  color: #182024 !important;
  background: linear-gradient(135deg, #f6cd2f, #ffe16b) !important;
}
.btn-outline-primary,
.btn-hero-outline {
  border: 1.5px solid rgba(8, 88, 102, 0.18);
  color: var(--hk-teal-900);
  background: rgba(255,255,255,.86);
}
.btn-outline-primary:hover,
.btn-hero-outline:hover {
  border-color: rgba(8, 88, 102, 0.34);
  color: var(--hk-teal-900);
}
.btn-lg { padding: 1rem 1.7rem; }

.section-space { padding: 88px 0; }
.section-light { background: transparent; }
.section-soft {
  background: linear-gradient(180deg, rgba(10, 118, 129, 0.04) 0%, rgba(255,255,255,0.96) 100%);
}
.section-dark-band {
  background: linear-gradient(135deg, #072f37 0%, #0f5560 60%, #073640 100%);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.56rem 0.96rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(240, 197, 28, 0.18), rgba(255,255,255,0.9));
  color: var(--hk-teal-900);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  box-shadow: 0 8px 18px rgba(6, 60, 71, 0.06);
}
.section-title,
.page-title {
  margin: 1rem auto 0.82rem;
  max-width: 780px;
  font-size: clamp(2.15rem, 2.2vw + 1.28rem, 3.22rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.045em;
  color: var(--hk-teal-900);
  text-wrap: balance;
}
.section-title.left,
.page-title {
  margin-left: 0;
  margin-right: 0;
}
.section-subtitle,
.page-subtitle {
  max-width: 720px;
  margin: 0 auto;
  color: #5e6f79;
  font-size: 1.05rem;
  line-height: 1.82;
  font-weight: 500;
  text-wrap: pretty;
}
.section-subtitle.left,
.page-subtitle.left { margin-left: 0; margin-right: 0; }

.utility-strip {
  background: #000;
  padding: 0.72rem 0;
}
.utility-strip-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}
.utility-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 46px;
  padding: 0.7rem 1.2rem;
  border-radius: 14px;
  font-weight: 800;
}
.utility-pill-dark {
  color: #fff;
  background: rgba(255,255,255,0.12);
}
.utility-pill-primary {
  color: #161d22;
  background: linear-gradient(135deg, var(--hk-yellow), #ffe169);
}
.utility-copy {
  color: rgba(255,255,255,.78);
  font-size: 0.94rem;
  text-align: center;
}

.site-header {
  top: 0;
  z-index: 1020;
  backdrop-filter: blur(18px);
}
.hk-navbar {
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(6, 60, 71, 0.06);
  box-shadow: 0 14px 30px rgba(6, 60, 71, 0.05);
  min-height: 84px;
  padding: 0;
}
.hk-navbar .container {
  min-height: 84px;
  display: flex;
  align-items: center;
}
.navbar-toggler {
  border: 1px solid rgba(6,60,71,.12);
  border-radius: 14px;
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%286,60,71,0.92%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.brand-wrap {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  min-height: 84px;
}
.brand-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
}
.brand-name {
  display: block;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--hk-teal-900);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: 0.02rem;
}
.brand-city {
  display: none !important;
}
.navbar-nav .nav-link {
  position: relative;
  padding: 0.68rem 0.95rem !important;
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--hk-ink);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 6px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--hk-yellow), #ffe16a);
  opacity: 0;
  transform: scaleX(.4);
  transition: all .25s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--hk-teal-900); }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { opacity: 1; transform: scaleX(1); }
.nav-contact-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(6,60,71,.05);
  color: var(--hk-teal-900);
  font-size: 0.9rem;
  font-weight: 800;
}
.btn-nav { padding-inline: 1.25rem; min-height: 46px; display: inline-flex; align-items: center; }
.navbar-brand {
  margin-right: 1.05rem;
  padding: 0;
}

.hero-section { padding: 8px 0 18px; }
.hero-banner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  gap: 0.66rem;
  min-height: 296px;
  padding: 15px 21px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 34%, rgba(240,197,28,.4), transparent 18%),
    radial-gradient(circle at 72% 42%, rgba(240,197,28,.18), transparent 28%),
    linear-gradient(135deg, #072f37 0%, #0c5461 38%, #0e7882 68%, #0b5c65 100%);
  box-shadow: var(--hk-shadow-lg);
}
.hero-banner::before,
.hero-banner::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
}
.hero-banner::before {
  width: 260px;
  height: 260px;
  top: -74px;
  right: -82px;
  background: rgba(255,255,255,.07);
}
.hero-banner::after {
  width: 200px;
  height: 200px;
  bottom: -88px;
  left: -58px;
  background: rgba(240,197,28,.08);
}
.hero-copy,
.hero-visual { position: relative; z-index: 1; }
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 0.54rem 0.94rem;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.hero-title {
  margin: 0.66rem 0 0.5rem;
  color: #fff;
  font-size: clamp(1.86rem, 2.55vw, 2.82rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.055em;
  max-width: 620px;
  text-wrap: balance;
}
.hero-title span {
  display: block;
  color: var(--hk-yellow-soft);
}
.hero-sub {
  max-width: 530px;
  color: rgba(255,255,255,.82);
  font-size: 0.82rem;
  line-height: 1.68;
  font-weight: 500;
  text-wrap: pretty;
}
.hero-price-badge {
  display: inline-flex;
  width: fit-content;
  margin: 0.72rem 0 0.62rem;
  padding: 0.4rem;
  border-radius: 999px;
  background: rgba(0,0,0,.24);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.1);
}
.price-label,
.price-value {
  display: inline-flex;
  align-items: center;
  min-height: 62px;
  border-radius: 999px;
  font-weight: 800;
}
.price-label {
  padding: 0 1.16rem;
  color: #fff;
  font-size: 0.8rem;
}
.price-value {
  gap: 0.22rem;
  padding: 0 1.58rem;
  background: linear-gradient(135deg, var(--hk-yellow), #ffdf63);
  color: #152126;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(240,197,28,.22);
}
.price-value span:first-child {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}
.price-value span:last-child {
  align-self: flex-end;
  margin-bottom: 0.28rem;
  font-size: 1.08rem;
  font-weight: 800;
  opacity: .84;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.64rem;
  margin-bottom: 0.66rem;
}
.btn-hero { min-width: 170px; }
.hero-offer-note {
  display: none !important;
}
.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 0.6rem;
  max-width: 600px;
}
 .hero-stat-card {
  padding: 0.62rem 0.68rem;
  border-radius: 22px;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(10px);
}
.hero-stat-card strong {
  display: block;
  color: #fff;
  font-size: 0.73rem;
  font-weight: 800;
}
.hero-stat-card span {
  color: rgba(255,255,255,.74);
  font-size: 0.69rem;
}

.hero-visual {
  min-height: 286px;
}
.hero-glow {
  position: absolute;
  width: 162px;
  height: 162px;
  right: 36px;
  top: 22px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,212,87,.75) 0%, rgba(255,212,87,.3) 34%, transparent 72%);
  filter: blur(6px);
}
.hero-arc {
  position: absolute;
  right: 8px;
  border-radius: 280px 280px 36px 36px;
  border-top-left-radius: 260px;
  border-top-right-radius: 260px;
  background: linear-gradient(180deg, rgba(255,255,255,.2), rgba(255,255,255,.04));
  border: 9px solid rgba(255,255,255,.1);
  border-bottom-width: 0;
  box-shadow: inset 0 -10px 26px rgba(0,0,0,.12), 0 8px 18px rgba(6,60,71,.18);
}
.hero-arc-1 { width: 214px; height: 134px; top: 28px; }
.hero-arc-2 { width: 178px; height: 112px; top: 64px; right: 24px; }
.hero-arc-3 { width: 138px; height: 84px; top: 98px; right: 42px; }
.hero-arc-4 { width: 92px; height: 54px; top: 132px; right: 60px; }
.hero-scene {
  position: absolute;
  z-index: 2;
  padding: 0.5rem 0.62rem;
  border-radius: 16px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 16px 34px rgba(6,60,71,.2);
  backdrop-filter: blur(10px);
  color: #fff;
  min-width: 102px;
  max-width: 148px;
}
.scene-kicker {
  display: block;
  margin-bottom: 0.15rem;
  color: rgba(255,255,255,.72);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.hero-scene strong {
  font-size: 0.66rem;
  line-height: 1.32;
}
.hero-scene-work { top: 34px; right: 132px; }
.hero-scene-stream { top: 88px; right: 10px; }
.hero-scene-game { top: 152px; right: 148px; }
.hero-scene-home { top: 210px; right: 22px; }
.hero-router-card {
  position: absolute;
  z-index: 2;
  left: 10px;
  bottom: 8px;
  width: 138px;
  padding: 0.64rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.08));
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  backdrop-filter: blur(12px);
  box-shadow: 0 25px 45px rgba(6,60,71,.22);
}
.router-dots { display: flex; gap: 0.3rem; margin-bottom: 0.65rem; }
.router-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hk-yellow);
  box-shadow: 0 0 10px rgba(240,197,28,.55);
}
.router-title { font-weight: 800; font-size: 0.78rem; }
.router-sub { color: rgba(255,255,255,.7); font-size: 0.68rem; }
.hero-offers-card {
  position: absolute;
  z-index: 2;
  left: 10px;
  top: 10px;
  width: 190px;
  padding: 0.7rem;
  border-radius: 22px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
}
.hero-offers-label {
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.46rem;
}
.offer-card-grid {
  display: grid;
  gap: 0.55rem;
}
.offer-card {
  position: relative;
  padding: 0.74rem 0.8rem;
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(6,60,71,.08);
  min-height: 62px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.offer-card.featured {
  background: linear-gradient(135deg, rgba(240,197,28,.34), rgba(255,255,255,.99));
  border-color: rgba(240,197,28,.72);
  box-shadow: 0 14px 28px rgba(6,60,71,.16);
  transform: translateY(-1px);
}
.offer-card.featured::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f1c61d, #ffdf63);
}
.offer-card-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.32rem;
  padding: 0.18rem 0.56rem;
  border-radius: 999px;
  background: rgba(6,60,71,.08);
  color: var(--hk-teal-900);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.offer-card.featured .offer-card-badge {
  background: linear-gradient(135deg, #f1c61d, #ffe172);
  color: #5b4800;
  box-shadow: 0 8px 16px rgba(240,197,28,.18);
}
.offer-card .title {
  color: var(--hk-teal-900);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -0.02em;
}
.offer-card.featured .title {
  font-size: 0.95rem;
}
.offer-card .sub {
  margin-top: 0.2rem;
  color: var(--hk-muted);
  font-size: 0.72rem;
  line-height: 1.5;
  font-weight: 500;
}
.offer-card.featured .sub {
  color: #395058;
}

.hero-mini-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 6px;
}
.home-mini-feature-section {
  padding: 6px 0 10px;
}
.home-plans-section {
  padding-top: 10px;
}
.mini-feature-card {
  display: flex;
  gap: 0.75rem;
  padding: 0.92rem 0.92rem;
  border-radius: 26px;
  background: linear-gradient(135deg, #092f39 0%, #0d5a66 65%, #083b46 100%);
  color: #fff;
  box-shadow: var(--hk-shadow-md);
}
.mini-feature-card strong {
  display: block;
  margin-bottom: 0.26rem;
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.mini-feature-card span {
  color: rgba(255,255,255,.76);
  font-size: 0.95rem;
  line-height: 1.62;
  font-weight: 500;
}
.mini-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  flex: 0 0 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--hk-teal-900);
  background: linear-gradient(135deg, var(--hk-yellow), #ffe169);
}

.plan-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.plan-tab {
  border: none;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 10px 20px rgba(6, 60, 71, 0.06);
  color: var(--hk-teal-900);
  font-weight: 800;
  transition: all .22s ease;
}
.plan-tab:hover,
.plan-tab.active {
  background: linear-gradient(135deg, var(--hk-teal-900), var(--hk-teal-700));
  color: #fff;
  transform: translateY(-1px);
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(6,60,71,.08);
  box-shadow: 0 22px 44px rgba(6,60,71,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 54px rgba(6,60,71,.12);
}
.plan-badge {
  position: absolute;
  top: 14px;
  right: 18px;
  z-index: 2;
  padding: 0.38rem 0.82rem;
  border-radius: 999px;
  background: rgba(255, 247, 214, 0.96);
  border: 1px solid rgba(240,197,28,.42);
  box-shadow: 0 8px 18px rgba(6,60,71,.12);
  color: #7a5a00;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1;
}
.plan-header {
  padding: 2rem 1.5rem 1.05rem;
  background:
    radial-gradient(circle at top right, rgba(240,197,28,.22), transparent 36%),
    linear-gradient(135deg, #072f37 0%, #0a5965 100%);
  color: #fff;
}
.plan-speed-label {
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,.68);
  font-weight: 800;
}
.plan-speed {
  font-size: clamp(2rem, 2.4vw, 2.8rem);
  line-height: 1.05;
  font-weight: 900;
  margin-top: 0.18rem;
}
.plan-category-banner {
  margin: 10px 1.3rem 0;
  padding: 0.7rem 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(240,197,28,.14), rgba(255,255,255,.98));
  color: var(--hk-teal-900);
  font-weight: 800;
  text-align: center;
  box-shadow: 0 8px 18px rgba(6,60,71,.06);
}
.plan-body {
  padding: 1.35rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.plan-pricing-table {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.price-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 0.68rem;
  padding: 0.92rem 0.96rem;
  border-radius: 20px;
  background: #f8fbfb;
  border: 1px solid rgba(6,60,71,.07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.price-row.best {
  transform: translateY(-1px);
}
.price-row.best::before {
  content: 'Best Value';
  position: absolute;
  top: -12px;
  left: 16px;
  padding: 0.24rem 0.62rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #0b6d79, #1493a1);
  color: #efffff;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(20,147,161,.24);
}
.price-row.highlight,
.price-row.best.highlight {
  background: linear-gradient(135deg, rgba(20,147,161,.16), rgba(233,248,250,.98));
  border-color: rgba(20,147,161,.42);
  box-shadow: 0 18px 34px rgba(6,60,71,.11);
}
.price-row.best.highlight {
  box-shadow: 0 20px 38px rgba(6,60,71,.12), 0 0 0 1px rgba(20,147,161,.08);
}
.price-row.secondary-offer {
  background: linear-gradient(135deg, rgba(240,197,28,.16), rgba(255,255,255,.98));
  border-color: rgba(240,197,28,.34);
}
.price-row:hover {
  transform: translateY(-1px);
}
.duration {
  font-weight: 900;
  color: var(--hk-ink);
  font-size: 1.04rem;
  letter-spacing: -0.02em;
}
.amount {
  color: var(--hk-teal-900);
  white-space: nowrap;
  font-size: 0.84rem;
  font-weight: 900;
}
.amount strong {
  font-size: 1.72rem;
  line-height: 1;
  letter-spacing: -0.05em;
}
.per,
.rupee { opacity: .8; }
.save-tag {
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(240,197,28,.22);
  color: #7b5d00;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.price-row.best .save-tag,
.price-row.best.highlight .save-tag {
  background: linear-gradient(135deg, #0d7883, #18a4b0);
  color: #f4feff;
  box-shadow: 0 8px 18px rgba(20,147,161,.22);
  font-size: 0.76rem;
}
.price-row.best .amount strong,
.price-row.best.highlight .amount strong {
  font-size: 1.9rem;
}
.price-row.secondary-offer .save-tag {
  background: linear-gradient(135deg, #f2c91f, #ffe172);
  color: #5f4a00;
}
.gst-note {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  color: var(--hk-muted);
  text-align: center;
  font-size: 0.86rem;
  font-weight: 600;
  border-bottom: 1px dashed rgba(6,60,71,.15);
}
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.35rem;
  display: grid;
  gap: 0.68rem;
  flex: 1;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.58rem;
  color: #32444d;
  line-height: 1.58;
  font-weight: 600;
}
.plan-features li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(20,147,161,.12);
  color: var(--hk-teal-900);
  font-size: 0.74rem;
  font-weight: 800;
}
.btn-cta {
  width: 100%;
  margin-bottom: 0.72rem;
  color: #182024;
  background: linear-gradient(135deg, var(--hk-yellow), #ffe16a);
  border: none;
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(6,60,71,.12);
  color: var(--hk-teal-900);
  font-weight: 800;
  background: #fff;
}

.section-head .section-title,
.page-shell .page-title,
.coverage-copy .section-title,
.final-cta-copy .section-title {
  position: relative;
}
.section-head .section-title::after,
.page-shell .page-title::after,
.coverage-copy .section-title::after,
.final-cta-copy .section-title::after {
  content: "";
  display: block;
  width: 86px;
  height: 5px;
  margin-top: 0.82rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--hk-yellow), #ffd95c);
  box-shadow: 0 8px 18px rgba(240,197,28,.16);
}
.section-head.text-center .section-title::after {
  margin-left: auto;
  margin-right: auto;
}
.hero-offer-note,
.utility-copy,
.router-sub,
.scene-kicker,
.hero-stat-card span,
.contact-detail span,
.process-card p,
.benefit-card p,
.testimonial-card p,
.coverage-copy .section-subtitle,
.support-card p,
.accordion-button,
.accordion-body {
  text-wrap: pretty;
}
.accordion-button {
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.45;
}
.accordion-body {
  color: #54656f;
  line-height: 1.75;
  font-weight: 500;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
.benefit-card {
  padding: 1.55rem;
  border-radius: 28px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(6,60,71,.07);
  box-shadow: 0 18px 36px rgba(6,60,71,.06);
}
.benefit-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(240,197,28,.25), rgba(255,255,255,.85));
  color: var(--hk-teal-900);
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
.benefit-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
}
.benefit-card p {
  margin: 0;
  color: var(--hk-muted);
  line-height: 1.65;
}

.coverage-panel,
.helper-panel,
.final-cta-card,
.page-banner-card,
.community-card,
.enquiry-card,
.feature-panel,
.contact-info-panel,
.contact-form-panel,
.availability-info-panel,
.availability-form-panel,
.faq-shell,
.story-card,
.footer-brand-card {
  border-radius: 30px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(6,60,71,.07);
  box-shadow: 0 22px 46px rgba(6,60,71,.08);
}
.coverage-panel {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 1.5rem;
  padding: 2rem;
  overflow: hidden;
}
.coverage-copy { padding: 0.5rem; }
.coverage-visual {
  position: relative;
  min-height: 420px;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(135deg, #072f37 0%, #0b5662 55%, #0e7984 100%);
}
.coverage-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}
.coverage-orb-1 {
  width: 320px;
  height: 320px;
  top: 50px;
  left: 110px;
  background: radial-gradient(circle, rgba(240,197,28,.75), rgba(240,197,28,.18) 46%, transparent 72%);
}
.coverage-orb-2 {
  width: 240px;
  height: 240px;
  bottom: -40px;
  right: -10px;
  background: radial-gradient(circle, rgba(255,255,255,.2), transparent 70%);
}
.coverage-device {
  position: absolute;
  left: 50%;
  top: 56%;
  transform: translate(-50%, -50%);
  width: 230px;
}
.device-top {
  height: 28px;
  border-radius: 18px 18px 8px 8px;
  background: linear-gradient(135deg, #f7fafb, #e6f0f2);
  box-shadow: 0 8px 18px rgba(0,0,0,.14);
}
.device-body {
  height: 136px;
  margin-top: 8px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fdfefe, #dbe8ea);
  box-shadow: 0 20px 44px rgba(0,0,0,.14);
}
.device-shadow {
  width: 180px;
  height: 32px;
  margin: 20px auto 0;
  border-radius: 50%;
  background: rgba(0,0,0,.2);
  filter: blur(12px);
}
.coverage-badge {
  position: absolute;
  padding: 0.78rem 0.92rem;
  border-radius: 18px;
  background: rgba(255,255,255,.16);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
}
.badge-a { top: 58px; left: 42px; }
.badge-b { top: 116px; right: 38px; }
.badge-c { bottom: 42px; left: 58px; }

.ott-band {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 1.4rem;
  align-items: center;
}
.ott-image-wrap {
  padding: 0.7rem;
  border-radius: 32px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
}
.ott-pack-img {
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.process-grid.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.process-grid.single-column { grid-template-columns: 1fr; }
.process-card {
  padding: 1.55rem;
  border-radius: 28px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(6,60,71,.07);
  box-shadow: 0 18px 36px rgba(6,60,71,.06);
}
.process-card span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--hk-yellow), #ffe169);
  color: var(--hk-teal-900);
  font-weight: 900;
}
.process-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.74rem;
}
.process-card p {
  margin: 0;
  color: var(--hk-muted);
  line-height: 1.65;
}

.community-card,
.enquiry-card,
.contact-info-panel,
.contact-form-panel,
.availability-info-panel,
.availability-form-panel {
  padding: 2rem;
  height: 100%;
}
.community-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}
.community-tags span {
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(6,60,71,.06);
  color: var(--hk-teal-900);
  font-weight: 700;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.testimonial-card {
  padding: 1.6rem;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
  border: 1px solid rgba(6,60,71,.07);
  box-shadow: 0 18px 36px rgba(6,60,71,.06);
}
.testimonial-card p {
  margin: 0 0 1.1rem;
  color: var(--hk-body);
  line-height: 1.72;
}
.testimonial-card strong { display: block; }
.testimonial-card span { color: var(--hk-muted); font-size: 0.9rem; }

.final-cta-section { padding: 0 0 88px; }
.final-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 2.2rem;
  background:
    radial-gradient(circle at 80% 20%, rgba(240,197,28,.25), transparent 18%),
    linear-gradient(135deg, #072f37 0%, #0d5a66 60%, #083c46 100%);
  color: #fff;
}

.page-banner-wrap { padding-bottom: 28px; }
.page-banner-card {
  padding: 2.2rem 2rem;
  background:
    radial-gradient(circle at 82% 18%, rgba(240,197,28,.16), transparent 18%),
    linear-gradient(135deg, rgba(6,60,71,.96) 0%, rgba(14,120,130,.94) 100%);
  color: #fff;
}
.page-title {
  max-width: 880px;
  margin-top: 1rem;
  margin-bottom: .9rem;
  font-size: clamp(2.1rem, 2.1vw + 1rem, 3.4rem);
  line-height: 1.08;
  font-weight: 900;
}
.page-subtitle {
  max-width: 820px;
  color: rgba(255,255,255,.78);
}
.plan-filter-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.6rem;
  padding: 1.3rem;
  border-radius: 28px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(6,60,71,.06);
  box-shadow: 0 18px 38px rgba(6,60,71,.05);
}
.helper-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.8rem 2rem;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, .6fr);
  gap: 1rem;
}
.story-card {
  padding: 1.7rem;
}
.story-card.large {
  background:
    radial-gradient(circle at 82% 20%, rgba(240,197,28,.18), transparent 20%),
    linear-gradient(180deg, #fff 0%, #f8fbfb 100%);
}
.story-card.stat {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
}
.story-card.stat strong {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}
.story-card.stat span { color: var(--hk-muted); line-height: 1.6; }

.contact-shell,
.availability-shell {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 1rem;
}
.contact-note-card {
  margin-top: 1.25rem;
  padding: 1.15rem;
  border-radius: 22px;
  background: rgba(240,197,28,.14);
  color: var(--hk-teal-900);
}
.contact-note-card p { color: var(--hk-teal-900); line-height: 1.65; }
.support-stack { display: grid; gap: 0.75rem; }
.support-stack.large { gap: 0.9rem; }
.support-link,
.contact-link {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0.82rem 0.88rem;
  border-radius: 18px;
  background: rgba(6,60,71,.05);
  color: var(--hk-teal-900);
  font-weight: 700;
}
.footer-section {
  color: #dcebed;
  background: linear-gradient(135deg, #052f37 0%, #0a4d59 62%, #083a44 100%);
}
.footer-brand-card {
  padding: 1.4rem;
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.08);
  box-shadow: none;
}
.feature-panel { padding: 1.6rem; }
.footer-title {
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 800;
}
.footer-links a,
.footer-section .support-link {
  color: #dcebed;
}
.footer-links a:hover,
.footer-section .support-link:hover { color: var(--hk-yellow); }
.footer-section .support-link {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.76);
}

.list-styled {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 0.72rem;
}
.list-styled li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--hk-body);
  line-height: 1.65;
}
.list-styled li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .6rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hk-yellow), #ffe16a);
  box-shadow: 0 0 0 6px rgba(240,197,28,.14);
}

.form-control,
.form-select {
  min-height: 58px;
  border-radius: 18px;
  border: 1px solid rgba(6,60,71,.12);
  padding-inline: 1rem;
  color: var(--hk-ink);
  background: rgba(255,255,255,.96);
  box-shadow: none !important;
}
textarea.form-control {
  min-height: 136px;
  padding-top: 0.95rem;
  resize: vertical;
}
.form-control:focus,
.form-select:focus {
  border-color: rgba(20,147,161,.48);
}
.form-message {
  font-size: 0.94rem;
  font-weight: 600;
}
.faq-shell { padding: 1.25rem; }
.faq-accordion .accordion-item {
  border: none;
  margin-bottom: 0.9rem;
  border-radius: 22px !important;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 28px rgba(6,60,71,.06);
}
.faq-accordion .accordion-button {
  padding: 1.2rem 1.25rem;
  font-weight: 800;
  color: var(--hk-ink);
  background: #fff;
  box-shadow: none !important;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--hk-teal-900);
  background: rgba(20,147,161,.06);
}
.faq-accordion .accordion-body {
  color: var(--hk-body);
  line-height: 1.7;
}

.mobile-cta-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1045;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  padding: 0.55rem;
  border-radius: 22px;
  background: rgba(7, 47, 55, .94);
  box-shadow: 0 20px 45px rgba(0,0,0,.22);
}
.mobile-cta-bar a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  background: rgba(255,255,255,.08);
}
.mobile-cta-bar a:last-child {
  color: #1a2024;
  background: linear-gradient(135deg, var(--hk-yellow), #ffe169);
}
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 98px;
  z-index: 1030;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1fc95a, #16a34a);
  box-shadow: 0 18px 36px rgba(22,163,74,.28);
}
.scroll-top {
  position: fixed;
  right: 30px;
  bottom: 172px;
  z-index: 1029;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: var(--hk-teal-900);
  box-shadow: 0 12px 26px rgba(6,60,71,.14);
  opacity: 0;
  visibility: hidden;
  transition: all .25s ease;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.fade-in-section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Admin */
.admin-body {
  background: linear-gradient(180deg, #f7fafb 0%, #eef4f6 100%);
}
.admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
}
.admin-sidebar {
  background: linear-gradient(180deg, #072f37 0%, #0b4f5c 100%);
  color: #fff;
  border-right: 1px solid rgba(255,255,255,.08);
}
.admin-sidebar .brand-logo { width: 64px; height: 64px; }
.admin-sidebar .nav-link {
  border-radius: 16px;
  color: rgba(255,255,255,.82);
  font-weight: 700;
  padding: 0.85rem 1rem;
}
.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
  background: rgba(255,255,255,.08);
  color: #fff;
}
.admin-main { padding: 2rem; }
.stat-card {
  padding: 1.5rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(6,60,71,.07);
  box-shadow: 0 16px 34px rgba(6,60,71,.07);
}
.stat-label {
  color: var(--hk-muted);
  font-weight: 700;
}
.stat-value {
  margin-top: .35rem;
  color: var(--hk-teal-900);
  font-size: 1.75rem;
  font-weight: 900;
}
.table {
  --bs-table-bg: transparent;
  margin-bottom: 0;
}
.table > :not(caption) > * > * {
  padding: 0.95rem 0.9rem;
  border-bottom-color: rgba(6,60,71,.08);
}
.table-responsive {
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(6,60,71,.07);
  box-shadow: 0 16px 34px rgba(6,60,71,.06);
}

@media (max-width: 1199.98px) {
  .hero-banner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 22px;
  }
  .hero-copy { order: 1; }
  .hero-visual {
    order: 2;
    min-height: 350px;
  }
  .hero-stat-grid,
  .hero-mini-cards,
  .benefit-grid,
  .testimonial-grid,
  .process-grid,
  .about-story-grid,
  .contact-shell,
  .availability-shell,
  .coverage-panel,
  .ott-band {
    grid-template-columns: 1fr 1fr;
  }
  .about-story-grid .large { grid-column: 1 / -1; }
  .plan-filter-shell,
  .helper-panel,
  .final-cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 991.98px) {
  .hk-navbar,
  .hk-navbar .container { min-height: 78px; }
  .utility-strip-inner {
    grid-template-columns: 1fr 1fr;
  }
  .brand-logo { width: 66px; height: 66px; }
  .brand-name { font-size: 1.12rem; }
  .brand-city { display: none; }
  .utility-center { display: none !important; }
  .nav-contact-chip { display: none; }
  .hero-mini-cards,
  .benefit-grid,
  .testimonial-grid,
  .process-grid,
  .process-grid.three-up,
  .about-story-grid,
  .contact-shell,
  .availability-shell,
  .coverage-panel,
  .ott-band,
  .hero-stat-grid {
    grid-template-columns: 1fr;
  }
  .hero-banner {
    padding: 16px;
    border-radius: 24px;
  }
  .hero-visual {
    min-height: 390px;
  }
  .hero-offers-card {
    left: 8px;
    right: auto;
    width: 186px;
  }
  .hero-router-card {
    left: 8px;
    bottom: 10px;
    width: 148px;
  }
  .hero-scene-work { top: 64px; right: 150px; }
  .hero-scene-stream { top: 122px; right: 16px; }
  .hero-scene-game { top: 202px; right: 162px; }
  .hero-scene-home { top: 276px; right: 24px; }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { position: sticky; top: 0; z-index: 1025; }
}

@media (max-width: 767.98px) {
  .section-space { padding: 68px 0; }
  .hero-section { padding-top: 12px; }
  .hero-title { font-size: clamp(1.82rem, 6.3vw, 2.34rem); }
  .hero-sub { font-size: 0.86rem; }
  .price-label,
  .price-value { min-height: 60px; }
  .price-label { font-size: 0.86rem; }
  .price-value span:first-child { font-size: 2.55rem; }
  .price-value span:last-child { font-size: 0.98rem; }
  .hero-visual {
    min-height: 408px;
    margin-top: 8px;
  }
  .hero-offers-card {
    position: relative;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    margin-bottom: 0.5rem;
  }
  .hero-arc-1 { width: 250px; height: 162px; top: 126px; right: 6px; }
  .hero-arc-2 { width: 208px; height: 132px; top: 172px; right: 30px; }
  .hero-arc-3 { width: 162px; height: 100px; top: 214px; right: 56px; }
  .hero-arc-4 { width: 114px; height: 70px; top: 254px; right: 82px; }
  .hero-scene {
    min-width: 118px;
    max-width: 144px;
    padding: 0.66rem 0.74rem;
  }
  .hero-scene strong { font-size: 0.78rem; }
  .hero-scene-work { top: 154px; right: 126px; }
  .hero-scene-stream { top: 208px; right: 8px; }
  .hero-scene-game { top: 282px; right: 138px; }
  .hero-scene-home { top: 338px; right: 28px; }
  .hero-router-card {
    position: absolute;
    left: 14px;
    bottom: 14px;
    width: 148px;
    padding: 0.8rem;
  }
  .hero-stat-grid,
  .hero-mini-cards,
  .benefit-grid,
  .testimonial-grid,
  .process-grid,
  .about-story-grid { gap: 0.8rem; }
  .page-banner-card,
  .coverage-panel,
  .community-card,
  .enquiry-card,
  .contact-info-panel,
  .contact-form-panel,
  .availability-info-panel,
  .availability-form-panel,
  .helper-panel,
  .final-cta-card,
  .feature-panel,
  .story-card,
  .faq-shell {
    padding: 1.35rem;
    border-radius: 20px;
  }
  .section-title,
  .page-title { font-size: clamp(1.85rem, 6.7vw, 2.4rem); }
  .wa-float { width: 56px; height: 56px; right: 16px; bottom: 88px; }
  .scroll-top { right: 20px; bottom: 154px; }
  body { padding-bottom: 88px; }
}

@media (max-width: 575.98px) {
  .hk-navbar,
  .hk-navbar .container { min-height: 72px; }
  .utility-strip-inner {
    grid-template-columns: 1fr;
  }
  .utility-pill { width: 100%; }
  .brand-wrap { gap: 0.64rem; min-height: auto; }
  .brand-logo { width: 58px; height: 58px; }
  .brand-name { font-size: 1.02rem; }
  .brand-city { display: none; }
  .hero-banner { padding: 16px; }
  .hero-price-badge {
    width: 100%;
    flex-direction: column;
    border-radius: 20px;
  }
  .price-label,
  .price-value {
    justify-content: center;
    width: 100%;
  }
  .price-value span:first-child { font-size: 2.3rem; }
  .price-value span:last-child {
    margin-bottom: 0;
    font-size: 0.96rem;
  }
  .hero-actions { flex-direction: column; }
  .btn-hero,
  .btn-hero-outline { width: 100%; }
  .hero-visual { min-height: 418px; }
  .hero-router-card { width: 140px; }
  .price-row {
    grid-template-columns: 1fr;
    justify-items: flex-start;
  }
  .mobile-cta-bar a { font-size: 0.77rem; }
}


.story-stat-group{display:contents;}

@media (max-width: 991.98px) {
  .section-title,
  .page-title { letter-spacing: -0.04em; }
  .section-head .section-title::after,
  .page-shell .page-title::after,
  .coverage-copy .section-title::after,
  .final-cta-copy .section-title::after { width: 72px; margin-top: 0.72rem; }
  .hero-sub { font-size: 0.84rem; }
}


.mini-feature-card-link {
  text-decoration: none;
  display: flex;
}
.mini-feature-card-link:hover {
  color: #fff;
  text-decoration: none;
}


.fhw-hero-section {
  padding-bottom: 34px;
}
.fhw-hero-card,
.fhw-flow-shell,
.fhw-fit-shell,
.fhw-cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(6,60,71,.08);
  box-shadow: 0 24px 52px rgba(6,60,71,.08);
}
.fhw-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 2rem;
  padding: 2.35rem;
  background:
    radial-gradient(circle at top left, rgba(240,197,28,.22), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,.98) 0%, rgba(232,247,248,.94) 100%);
}
.fhw-hero-copy,
.fhw-flow-copy,
.fhw-fit-copy {
  position: relative;
  z-index: 1;
}
.fhw-hero-copy .page-title {
  max-width: 620px;
}
.fhw-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}
.fhw-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.35rem;
}
.fhw-hero-points span,
.fhw-fit-tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(6,60,71,.06);
  color: var(--hk-teal-900);
  font-size: 0.92rem;
  font-weight: 700;
}
.fhw-hero-visual,
.fhw-flow-visual,
.fhw-fit-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.fhw-hero-image,
.fhw-flow-image,
.fhw-fit-image {
  width: 100%;
  max-width: 540px;
  filter: drop-shadow(0 22px 36px rgba(6,60,71,.08));
}
.fhw-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.fhw-benefit-card {
  height: 100%;
  padding: 1.35rem;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(6,60,71,.08);
  box-shadow: 0 18px 32px rgba(6,60,71,.06);
}
.fhw-benefit-image {
  width: 88px;
  height: 88px;
  object-fit: contain;
  margin-bottom: 1rem;
}
.fhw-benefit-card h3,
.fhw-flow-step h3 {
  margin: 0 0 0.5rem;
  color: var(--hk-teal-900);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.fhw-benefit-card p,
.fhw-flow-step p,
.fhw-fit-list li {
  color: var(--hk-muted);
}
.fhw-flow-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.92fr);
  gap: 1.8rem;
  padding: 2.1rem;
  background: linear-gradient(135deg, rgba(255,255,255,.98) 0%, rgba(232,247,248,.9) 100%);
}
.fhw-flow-steps {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.35rem;
}
.fhw-flow-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  align-items: start;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(6,60,71,.07);
}
.fhw-flow-step strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--hk-yellow), #ffe169);
  color: var(--hk-teal-900);
  font-size: 1rem;
  font-weight: 900;
}
.fhw-fit-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: 1.8rem;
  padding: 2.1rem;
  background: linear-gradient(135deg, rgba(8,47,58,.97) 0%, rgba(12,88,99,.95) 100%);
}
.fhw-fit-copy .section-title,
.fhw-fit-copy .section-subtitle,
.fhw-fit-copy .section-kicker,
.fhw-fit-copy .list-styled li {
  color: #fff;
}
.fhw-fit-copy .section-kicker {
  background: rgba(255,255,255,.14);
}
.fhw-fit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0 1.2rem;
}
.fhw-fit-tags span {
  background: rgba(255,255,255,.1);
  color: #fff;
}
.fhw-fit-list {
  margin-bottom: 0;
}
.fhw-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1fr);
  gap: 1.5rem;
  padding: 2.15rem;
  background:
    radial-gradient(circle at top left, rgba(240,197,28,.2), transparent 28%),
    linear-gradient(135deg, #072f37 0%, #0d5560 100%);
}
.fhw-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}
.fhw-form-grid .form-control,
.fhw-form-grid .form-select {
  min-height: 54px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.96);
}
.fhw-form-span-2 {
  grid-column: span 2;
}
.fhw-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

@media (max-width: 991.98px) {
  .fhw-hero-card,
  .fhw-flow-shell,
  .fhw-fit-shell,
  .fhw-cta-card {
    grid-template-columns: 1fr;
  }
  .fhw-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .fhw-hero-card,
  .fhw-flow-shell,
  .fhw-fit-shell,
  .fhw-cta-card {
    padding: 1.35rem;
    border-radius: 24px;
  }
  .fhw-benefit-grid,
  .fhw-form-grid {
    grid-template-columns: 1fr;
  }
  .fhw-form-span-2 {
    grid-column: auto;
  }
}


/* Full Home Wi-Fi premium overrides */
.fhw-hero-section {
  padding-top: 44px;
  padding-bottom: 54px;
}
.fhw-benefit-shell,
.fhw-flow-board {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(6,60,71,.08);
  box-shadow: 0 24px 52px rgba(6,60,71,.08);
}
.fhw-hero-card {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  padding: 2.6rem;
  background:
    radial-gradient(circle at 78% 18%, rgba(240,197,28,.32), transparent 18%),
    radial-gradient(circle at 88% 50%, rgba(255,255,255,.08), transparent 28%),
    linear-gradient(135deg, #072f37 0%, #0c5c66 58%, #127684 100%);
}
.fhw-hero-section .section-kicker,
.fhw-dark-kicker {
  background: rgba(255,255,255,.1);
  color: #fff;
  box-shadow: none;
}
.fhw-hero-copy .page-title {
  color: #fff;
}
.fhw-hero-copy .page-subtitle {
  color: rgba(255,255,255,.82);
}
.fhw-hero-section .btn-hero-outline {
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: #fff;
}
.fhw-hero-section .btn-hero-outline:hover,
.fhw-hero-section .btn-hero-outline:focus {
  border-color: rgba(255,255,255,.32);
  background: rgba(255,255,255,.14);
  color: #fff;
}
.fhw-hero-points span {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.1);
  color: #fff;
  backdrop-filter: blur(14px);
}
.fhw-hero-visual-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 430px;
  padding: 1.25rem;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.03) 100%);
  overflow: hidden;
}
.fhw-hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,197,28,.36) 0%, rgba(20,147,161,.18) 38%, transparent 70%);
}
.fhw-hero-floating {
  position: absolute;
  z-index: 3;
  max-width: 230px;
  padding: 0.92rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.32);
  background: linear-gradient(180deg, rgba(255,255,255,.82) 0%, rgba(243,250,251,.74) 100%);
  box-shadow: 0 18px 36px rgba(7,20,24,.16);
  backdrop-filter: blur(10px);
}
.fhw-hero-floating strong,
.fhw-hero-floating span {
  display: block;
}
.fhw-hero-floating strong {
  font-size: 0.98rem;
  font-weight: 800;
  margin-bottom: 0.22rem;
  color: #0c4754;
  text-shadow: 0 1px 0 rgba(255,255,255,.4);
}
.fhw-hero-floating span {
  font-size: 0.82rem;
  color: rgba(12,71,84,.82);
  line-height: 1.5;
}
.fhw-hero-floating-top {
  top: 22px;
  left: 18px;
}
.fhw-hero-floating-bottom {
  right: 18px;
  bottom: 18px;
}
.fhw-hero-image {
  position: relative;
  z-index: 2;
  max-width: 540px;
  filter: drop-shadow(0 26px 42px rgba(6,60,71,.16));
}
.fhw-benefit-shell {
  padding: 2.2rem;
  background:
    radial-gradient(circle at top center, rgba(240,197,28,.16), transparent 24%),
    linear-gradient(135deg, rgba(255,255,255,.98) 0%, rgba(232,247,248,.92) 100%);
}
.fhw-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 36px rgba(6,60,71,.1);
}
.fhw-flow-board {
  padding: 2.2rem;
  background: linear-gradient(135deg, rgba(255,255,255,.98) 0%, rgba(232,247,248,.9) 100%);
}
.fhw-flow-steps {
  position: relative;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}
.fhw-flow-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 11%;
  right: 11%;
  height: 2px;
  background: linear-gradient(90deg, rgba(240,197,28,.28), rgba(11,85,100,.32));
  z-index: 0;
}
.fhw-flow-step {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 1.15rem;
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(6,60,71,.07);
  box-shadow: 0 14px 28px rgba(6,60,71,.06);
  display: block;
}
.fhw-flow-step strong {
  width: 58px;
  height: 58px;
  margin-bottom: 0.95rem;
}
.fhw-flow-visual {
  margin-top: 1.3rem;
}
.fhw-flow-visual-card {
  padding: 1.15rem;
  border-radius: 28px;
  border: 1px solid rgba(6,60,71,.08);
  background: rgba(255,255,255,.7);
}
.fhw-flow-image {
  max-width: 920px;
  margin: 0 auto;
  filter: drop-shadow(0 22px 34px rgba(6,60,71,.08));
}
.fhw-fit-shell {
  grid-template-columns: minmax(340px, 0.88fr) minmax(0, 1fr);
  padding: 2.3rem;
  background: linear-gradient(135deg, #072f37 0%, #0d5560 100%);
}
.fhw-fit-visual {
  padding: 1rem;
  border-radius: 28px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
}
.fhw-fit-copy .section-kicker,
.fhw-cta-card .section-kicker {
  background: rgba(255,255,255,.12);
  color: #fff;
}
.fhw-fit-tags span {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.12);
}
.fhw-fit-list li + li {
  margin-top: 0.8rem;
}
.fhw-cta-card {
  grid-template-columns: minmax(0, 0.88fr) minmax(400px, 1fr);
  padding: 2.2rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(240,197,28,.22), transparent 28%),
    linear-gradient(135deg, #072f37 0%, #0d5560 100%);
}
@media (max-width: 991.98px) {
  .fhw-hero-card,
  .fhw-fit-shell,
  .fhw-cta-card {
    grid-template-columns: 1fr;
  }
  .fhw-flow-steps {
    grid-template-columns: 1fr;
  }
  .fhw-flow-steps::before {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .fhw-hero-card,
  .fhw-benefit-shell,
  .fhw-flow-board,
  .fhw-fit-shell,
  .fhw-cta-card {
    padding: 1.35rem;
    border-radius: 24px;
  }
  .fhw-hero-visual-shell {
    min-height: 320px;
  }
  .fhw-hero-floating {
    max-width: 180px;
    padding: 0.78rem 0.88rem;
  }
}


/* Why HK page redesign */
.whyhk-page .section-space {
  padding: 58px 0;
}
.whyhk-hero-section {
  padding-top: 36px;
  padding-bottom: 30px;
}
.whyhk-hero-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 1.6rem;
  padding: 2.15rem;
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 16%, rgba(240,197,28,.16), transparent 18%),
    radial-gradient(circle at 82% 14%, rgba(240,197,28,.14), transparent 20%),
    linear-gradient(135deg, #052f37 0%, #0b5b67 60%, #11818c 100%);
  border: 1px solid rgba(6,60,71,.07);
  box-shadow: 0 28px 56px rgba(6,60,71,.14);
}
.whyhk-hero-copy,
.whyhk-hero-visual {
  position: relative;
  z-index: 1;
}
.whyhk-page .whyhk-hero-card .section-kicker {
  color: #f4f8f8;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.12);
}
.whyhk-page .whyhk-hero-card .page-title {
  max-width: 640px;
  margin-top: 1rem;
  color: #fff6d4;
  text-shadow: 0 10px 24px rgba(0,0,0,.16);
}
.whyhk-page .whyhk-hero-card .page-subtitle {
  max-width: 620px;
  color: rgba(255,255,255,.84);
  font-size: 1.02rem;
  line-height: 1.8;
}
.whyhk-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.45rem;
}
.whyhk-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.3rem;
}
.whyhk-hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.74rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}
.whyhk-hero-visual {
  display: flex;
  align-items: stretch;
}
.whyhk-visual-shell {
  position: relative;
  min-height: 420px;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 24%, rgba(240,197,28,.24), transparent 20%),
    linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.03) 100%);
  border: 1px solid rgba(255,255,255,.08);
}
.whyhk-visual-glow,
.whyhk-visual-ring,
.whyhk-visual-card,
.whyhk-visual-chip {
  position: absolute;
}
.whyhk-visual-glow {
  border-radius: 50%;
  filter: blur(8px);
}
.whyhk-visual-glow-a {
  width: 230px;
  height: 230px;
  top: 52px;
  right: 84px;
  background: radial-gradient(circle, rgba(240,197,28,.55), rgba(240,197,28,.14) 46%, transparent 76%);
}
.whyhk-visual-glow-b {
  width: 260px;
  height: 260px;
  bottom: -54px;
  left: -24px;
  background: radial-gradient(circle, rgba(255,255,255,.18), rgba(255,255,255,.04) 48%, transparent 72%);
}
.whyhk-visual-ring {
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
}
.whyhk-visual-ring-1 {
  width: 210px;
  height: 210px;
  top: 88px;
  right: 88px;
}
.whyhk-visual-ring-2 {
  width: 160px;
  height: 160px;
  top: 112px;
  right: 112px;
}
.whyhk-visual-ring-3 {
  width: 108px;
  height: 108px;
  top: 138px;
  right: 138px;
}
.whyhk-visual-card {
  padding: 1rem 1.05rem;
  border-radius: 22px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 36px rgba(0,0,0,.14);
}
.whyhk-visual-card span {
  display: block;
  margin-bottom: 0.35rem;
  color: rgba(255,255,255,.76);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.whyhk-visual-card strong {
  display: block;
  font-size: 1rem;
  line-height: 1.35;
}
.whyhk-visual-card p {
  margin: 0.5rem 0 0;
  color: rgba(255,255,255,.78);
  font-size: 0.9rem;
  line-height: 1.6;
}
.whyhk-visual-card-main {
  left: 24px;
  right: 122px;
  bottom: 30px;
}
.whyhk-visual-card-top {
  top: 28px;
  left: 28px;
  width: 180px;
}
.whyhk-visual-card-bottom {
  right: 26px;
  bottom: 126px;
  width: 184px;
}
.whyhk-visual-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.62rem 0.82rem;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.11);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}
.whyhk-visual-chip-a { top: 58px; right: 24px; }
.whyhk-visual-chip-b { top: 198px; left: 28px; }
.whyhk-visual-chip-c { bottom: 28px; right: 28px; }
.whyhk-story-section {
  padding-top: 0;
}
.whyhk-story-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.94fr);
  gap: 1rem;
  align-items: stretch;
}
.whyhk-approach-card {
  padding: 2rem;
  background:
    radial-gradient(circle at 82% 18%, rgba(240,197,28,.15), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
}
.whyhk-approach-card .section-subtitle {
  max-width: 620px;
  color: var(--hk-body);
  line-height: 1.85;
}
.whyhk-approach-list {
  margin-top: 1.25rem;
}
.whyhk-story-shell .story-stat-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.whyhk-story-shell .story-card.stat {
  min-height: 190px;
  padding: 1.45rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
}
.whyhk-story-shell .story-card.stat:last-child {
  grid-column: 1 / -1;
  min-height: 168px;
}
.whyhk-story-shell .story-card.stat strong {
  color: var(--hk-teal-900);
  font-size: 1.06rem;
  line-height: 1.35;
}
.whyhk-story-shell .story-card.stat span {
  color: var(--hk-muted);
  line-height: 1.75;
}
.whyhk-focus-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(240,197,28,.08), transparent 18%),
    linear-gradient(180deg, #f5f9fa 0%, #eff5f6 100%);
}
.whyhk-benefit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.whyhk-benefit-grid .benefit-card {
  min-height: 230px;
  padding: 1.45rem;
  border-radius: 26px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 20px 38px rgba(6,60,71,.07);
}
.whyhk-benefit-grid .benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  margin-bottom: 1rem;
  font-size: 1.15rem;
}
.whyhk-benefit-grid .benefit-icon.whyhk-benefit-icon {
  font-size: 0;
  color: var(--hk-teal-900);
}
.whyhk-benefit-grid .benefit-icon.whyhk-benefit-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}
.whyhk-benefit-grid .benefit-card strong {
  font-size: 1rem;
  margin-bottom: 0.55rem;
  color: var(--hk-teal-900);
}
.whyhk-benefit-grid .benefit-card p {
  color: var(--hk-muted);
  line-height: 1.72;
}
.whyhk-process-section {
  padding-top: 54px;
}
.whyhk-process-shell {
  padding: 2rem;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(247,251,252,.98) 100%);
  border: 1px solid rgba(6,60,71,.07);
  box-shadow: 0 22px 46px rgba(6,60,71,.07);
}
.whyhk-process-grid {
  position: relative;
  gap: 1rem;
}
.whyhk-process-grid .process-card {
  position: relative;
  padding: 1.55rem;
  min-height: 210px;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
  box-shadow: 0 18px 36px rgba(6,60,71,.06);
}
.whyhk-process-grid .process-card::before {
  content: "";
  position: absolute;
  left: 1.55rem;
  right: 1.55rem;
  top: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--hk-yellow), #ffe169);
}
.whyhk-process-grid .process-card span {
  width: 48px;
  height: 48px;
  border-radius: 16px;
}
.whyhk-process-grid .process-card strong {
  font-size: 1rem;
  margin-bottom: 0.55rem;
  color: var(--hk-teal-900);
}
.whyhk-process-grid .process-card p {
  line-height: 1.75;
}
.whyhk-final-cta .final-cta-card {
  padding: 2.1rem 2.2rem;
  border-radius: 32px;
}

@media (max-width: 1199.98px) {
  .whyhk-hero-card {
    grid-template-columns: 1fr;
  }
  .whyhk-story-shell {
    grid-template-columns: 1fr;
  }
  .whyhk-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .whyhk-page .section-space {
    padding: 52px 0;
  }
  .whyhk-hero-card,
  .whyhk-process-shell {
    padding: 1.5rem;
    border-radius: 24px;
  }
  .whyhk-visual-shell {
    min-height: 380px;
  }
  .whyhk-visual-card-main {
    right: 26px;
  }
  .whyhk-story-shell .story-stat-group,
  .whyhk-benefit-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767.98px) {
  .whyhk-page .section-space {
    padding: 44px 0;
  }
  .whyhk-hero-card,
  .whyhk-approach-card,
  .whyhk-process-shell,
  .whyhk-final-cta .final-cta-card {
    padding: 1.25rem;
    border-radius: 22px;
  }
  .whyhk-hero-actions {
    flex-direction: column;
  }
  .whyhk-hero-actions .btn {
    width: 100%;
  }
  .whyhk-hero-points,
  .whyhk-story-shell .story-stat-group,
  .whyhk-benefit-grid {
    grid-template-columns: 1fr;
  }
  .whyhk-visual-shell {
    min-height: 340px;
  }
  .whyhk-visual-ring-1 {
    width: 180px;
    height: 180px;
    top: 86px;
    right: 54px;
  }
  .whyhk-visual-ring-2 {
    width: 134px;
    height: 134px;
    top: 109px;
    right: 77px;
  }
  .whyhk-visual-ring-3 {
    width: 94px;
    height: 94px;
    top: 129px;
    right: 97px;
  }
  .whyhk-visual-card-top {
    top: 16px;
    left: 16px;
    width: 158px;
  }
  .whyhk-visual-card-bottom {
    right: 16px;
    bottom: 106px;
    width: 160px;
  }
  .whyhk-visual-card-main {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
  .whyhk-visual-chip-a,
  .whyhk-visual-chip-b,
  .whyhk-visual-chip-c {
    display: none;
  }
  .whyhk-story-shell .story-card.stat:last-child {
    grid-column: auto;
  }
}


.policy-content p { margin-bottom: 1rem; line-height: 1.8; }
