:root {
  --bg: radial-gradient(circle at 12% 14%, #27345f 0%, transparent 30%),
    radial-gradient(circle at 85% 8%, #2b5b4a 0%, transparent 34%),
    radial-gradient(circle at 55% 90%, #3f2d1e 0%, transparent 30%),
    linear-gradient(135deg, #0c1224 0%, #121b33 48%, #121626 100%);
  --surface: rgba(255, 255, 255, 0.055);
  --surface-strong: rgba(255, 255, 255, 0.13);
  --line: rgba(255, 255, 255, 0.16);
  --text: #f4f7ff;
  --muted: #b6c2df;
  --primary: #f7b733;
  --primary-strong: #f18d09;
  --primary-soft: rgba(247, 183, 51, 0.2);
  --card-shadow: 0 18px 45px rgba(1, 8, 24, 0.45);
  --radius: 18px;
  --max-width: 1180px;
}

@property --meter-progress {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

.page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 34px 20px 88px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.2;
}

h1,
h2,
h3,
.badge,
.card__tag {
  font-family: "Barlow Condensed", "Noto Sans SC", sans-serif;
  letter-spacing: 0.3px;
}

p {
  margin: 0;
  color: var(--muted);
}

.hero {
  display: grid;
  gap: 26px;
  grid-template-columns: 1.16fr 0.84fr;
  align-items: stretch;
  padding: 42px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -80px;
  top: -100px;
  background: radial-gradient(circle, rgba(247, 183, 51, 0.18), transparent 66%);
  pointer-events: none;
}

.hero__copy h1 {
  font-size: clamp(32px, 3.3vw, 44px);
  margin: 12px 0 14px;
}

.lead {
  max-width: 60ch;
  font-size: 16px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.pill-list li {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: var(--text);
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__highlight {
  background: linear-gradient(150deg, rgba(247, 183, 51, 0.16), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--card-shadow);
}

.hero__highlight h2 {
  font-size: 24px;
  margin-bottom: 14px;
}

.highlight__list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  color: var(--muted);
  display: grid;
  gap: 9px;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffd78a;
  font-size: 14px;
}

.btn {
  border: none;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease,
    border-color 160ms ease;
  color: var(--text);
  background: var(--surface-strong);
}

.btn:active {
  transform: translateY(1px);
}

.btn-light {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 28px rgba(5, 12, 30, 0.38);
}

.btn-inline,
.btn-ghost {
  width: max-content;
  padding: 10px 14px;
  border-radius: 9px;
  font-size: 14px;
}

.btn-inline {
  border: 1px solid rgba(247, 183, 51, 0.48);
  background: linear-gradient(135deg, var(--primary-soft), rgba(255, 255, 255, 0.08));
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.btn-inline:hover {
  background: linear-gradient(135deg, rgba(247, 183, 51, 0.34), rgba(255, 255, 255, 0.1));
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.11);
}

.section {
  margin-top: 48px;
}

.section--compact {
  margin-top: 28px;
}

.section__title {
  margin-bottom: 16px;
}

.section__title h3 {
  font-size: 30px;
}

.card-grid,
.feature-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card,
.feature-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--card-shadow);
}

.card {
  display: grid;
  grid-template-rows: 110px auto auto minmax(48px, 1fr) auto;
  gap: 10px;
  align-content: start;
  height: 100%;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 183, 51, 0.45);
  box-shadow: 0 20px 48px rgba(8, 16, 35, 0.58);
}

.card__logo {
  width: 100%;
  height: 110px;
  object-fit: contain;
  object-position: center;
  margin: 0;
  border-radius: 14px;
  background: #fff;
  padding: 8px;
}

.card__tag {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0;
  font-size: 15px;
  line-height: 1.2;
  width: fit-content;
}

.card h4 {
  font-size: 20px;
  margin: 0;
  line-height: 1.35;
  min-height: 2.7em;
  display: flex;
  align-items: flex-start;
}

.card p {
  min-height: 3.2em;
}

.card__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 0;
  padding-top: 0;
  align-self: end;
}

.card__actions .btn-inline,
.card__actions .btn-ghost {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  line-height: 1;
}

.feature-card h4 {
  font-size: 23px;
  margin-bottom: 8px;
}

.feature-card p {
  color: #c4d0ea;
}

.service {
  margin-top: 42px;
  padding: 28px 22px 22px;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--line);
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

.service__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.service__line {
  flex: 1;
  max-width: 360px;
  height: 1px;
  background: linear-gradient(90deg, rgba(93, 158, 244, 0.1), rgba(93, 158, 244, 0.72), rgba(93, 158, 244, 0.1));
}

.service__header h3 {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 44px);
  letter-spacing: 0.4px;
  line-height: 1;
  background: linear-gradient(180deg, #5fd7ef, #3578eb 72%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.service__subtitle {
  margin: 10px 0 24px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.service-meters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.meter-card {
  text-align: center;
  min-width: 0;
}

.meter-gauge {
  --ring-width: 10px;
  --meter-progress: 0;
  --meter-angle: 0deg;
  position: relative;
  width: 132px;
  height: 132px;
  margin: 0 auto 8px;
  border-radius: 50%;
  transition: --meter-progress 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.meter-gauge__ticks {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: repeating-conic-gradient(from 225deg, rgba(170, 193, 234, 0.6) 0deg 2deg, transparent 2deg 6deg);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 6px), #000 calc(100% - 6px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 6px), #000 calc(100% - 6px));
}

.meter-gauge::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: conic-gradient(
    from 225deg,
    #6fe0db 0deg,
    #4a82ef var(--meter-angle),
    rgba(255, 255, 255, 0.22) var(--meter-angle),
    rgba(255, 255, 255, 0.22) 280deg,
    transparent 280deg
  );
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - var(--ring-width)), #000 calc(100% - var(--ring-width)));
  mask: radial-gradient(farthest-side, transparent calc(100% - var(--ring-width)), #000 calc(100% - var(--ring-width)));
}

.meter-gauge__core {
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(181, 206, 246, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.meter-gauge__small {
  margin: 0;
  font-size: 8px;
  color: #9caed2;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.meter-gauge__value {
  margin: 0;
  font-size: 44px;
  line-height: 0.9;
  color: #5ea1ff;
  font-family: "Barlow Condensed", "Noto Sans SC", sans-serif;
}

.meter-gauge__unit {
  margin: 0;
  font-size: 15px;
  color: #9cb0d6;
  font-weight: 700;
}

.meter-card h4 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  color: var(--text);
}

.meter-card > p {
  margin: 4px auto 0;
  max-width: 16ch;
  font-size: 11px;
  line-height: 1.35;
  color: var(--muted);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.service-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-feature-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 10px 22px rgba(5, 12, 30, 0.28);
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: start;
  gap: 12px;
  min-width: 0;
}

.service-feature-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 700;
  color: #f4f8ff;
  background: linear-gradient(160deg, #64d8ef, #3f7cea);
  box-shadow: 0 6px 16px rgba(48, 99, 182, 0.34);
}

.service-feature-card__icon-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  align-self: center;
}

.service-feature-card > div {
  min-width: 0;
}

.service-feature-card h4 {
  margin: 0 0 5px;
  font-size: 20px;
  line-height: 1.28;
  color: var(--text);
  overflow-wrap: anywhere;
}

.service-feature-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ── 美化：链接按钮基础重置 ── */
a.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.btn-icon {
  font-style: normal;
  font-size: 13px;
  opacity: 0.85;
  transition: transform 180ms ease;
}

a.btn-inline:hover .btn-icon {
  transform: translateY(2px);
}

a.btn-ghost:hover .btn-icon {
  transform: scale(1.15);
}

/* ── 美化：btn-inline 金色发光 ── */
.btn-inline {
  position: relative;
  overflow: hidden;
}

.btn-inline::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 220, 100, 0.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 480ms ease;
  pointer-events: none;
}

.btn-inline:hover::after {
  transform: translateX(100%);
}

.btn-inline:hover {
  border-color: rgba(247, 183, 51, 0.85);
  box-shadow: 0 0 14px rgba(247, 183, 51, 0.35), 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* ── 美化：btn-ghost 悬浮描边 ── */
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.08);
}

/* ── 美化：卡片发光边框 ── */
.card:hover {
  border-color: rgba(247, 183, 51, 0.6);
  box-shadow: 0 0 0 1px rgba(247, 183, 51, 0.2), 0 24px 56px rgba(8, 16, 35, 0.65);
}

/* ── 美化：Hero 主 CTA 按钮脉冲 ── */
#cycleBtn {
  background: linear-gradient(135deg, rgba(247, 183, 51, 0.22), rgba(255, 255, 255, 0.07));
  border-color: rgba(247, 183, 51, 0.55);
  font-weight: 600;
  letter-spacing: 0.4px;
  animation: pulse-cta 2.8s ease-in-out infinite;
}

#cycleBtn:hover {
  animation-play-state: paused;
  background: linear-gradient(135deg, rgba(247, 183, 51, 0.38), rgba(255, 255, 255, 0.12));
  box-shadow: 0 0 22px rgba(247, 183, 51, 0.42);
}

@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 0 0 0 rgba(247, 183, 51, 0); }
  50%       { box-shadow: 0 0 0 8px rgba(247, 183, 51, 0.18); }
}

/* ── 美化：徽章发光 ── */
.badge {
  background: linear-gradient(135deg, rgba(247, 183, 51, 0.2), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(247, 183, 51, 0.3);
  color: #ffd98a;
  box-shadow: 0 0 12px rgba(247, 183, 51, 0.15);
}

/* ── 美化：section 标题渐变色 ── */
.section__title h3 {
  background: linear-gradient(135deg, #f4f7ff 30%, #f7b733 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── 美化：highlight 列表项图标 ── */
.highlight__list li {
  padding-left: 18px;
  position: relative;
  color: var(--muted);
}

.highlight__list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 12px;
  top: 2px;
}

/* ── 美化：card__tag 金色描边 ── */
.card__tag {
  background: linear-gradient(135deg, rgba(247, 183, 51, 0.16), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(247, 183, 51, 0.28);
  color: #ffd98a;
}

/* ── 美化：卡片进场动画 ── */
@keyframes card-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.card {
  animation: card-in 480ms ease both;
}

.card:nth-child(1) { animation-delay: 0ms; }
.card:nth-child(2) { animation-delay: 80ms; }
.card:nth-child(3) { animation-delay: 160ms; }
.card:nth-child(4) { animation-delay: 240ms; }

.footer {
  margin-top: 34px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

/* ── 直播区域 ── */
.live-section {
  margin-top: 32px;
}

.live-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--card-shadow);
  background: #000;
}

.live-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Telegram 悬浮客服 ── */
.tg-float {
  position: fixed;
  right: 22px;
  bottom: 30px;
  z-index: 1500;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #229ed9 0%, #1a85b8 100%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(34, 158, 217, 0.5), 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 200ms ease, box-shadow 200ms ease;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.tg-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(34, 158, 217, 0.65), 0 4px 12px rgba(0,0,0,0.35);
}

.tg-float:active {
  transform: translateY(0);
}

.tg-float__icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
}

.tg-float__icon svg {
  width: 20px;
  height: 20px;
}

.tg-float__label {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.tg-float__title {
  font-size: 11px;
  opacity: 0.82;
  letter-spacing: 0.3px;
}

.tg-float__handle {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* 绿色在线小圆点 */
.tg-float__ping {
  position: absolute;
  top: 6px;
  right: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4cff91;
  border: 2px solid #1a85b8;
  animation: tg-ping 2s ease-in-out infinite;
}

@keyframes tg-ping {
  0%, 100% { box-shadow: 0 0 0 0 rgba(76, 255, 145, 0.6); }
  50%       { box-shadow: 0 0 0 5px rgba(76, 255, 145, 0); }
}

@media (max-width: 480px) {
  .tg-float {
    right: 14px;
    bottom: 20px;
    padding: 9px 13px 9px 10px;
    gap: 8px;
  }

  .tg-float__icon {
    width: 30px;
    height: 30px;
  }

  .tg-float__handle {
    font-size: 13px;
  }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .hero__copy h1 {
    font-size: clamp(30px, 8vw, 40px);
  }

  .section__title h3 {
    font-size: 26px;
  }

  .service {
    margin-top: 28px;
    padding: 22px 16px 18px;
  }

  .service__header {
    gap: 10px;
  }

  .service__line {
    max-width: 120px;
  }

  .service__header h3 {
    font-size: clamp(30px, 7vw, 38px);
  }

  .service__subtitle {
    margin: 8px 0 14px;
    font-size: 13px;
  }

  .service-meters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 10px;
    margin-bottom: 14px;
  }

  .meter-gauge {
    width: 112px;
    height: 112px;
  }

  .meter-gauge__core {
    inset: 19px;
  }

  .meter-gauge__small {
    font-size: 7px;
  }

  .meter-gauge__value {
    font-size: 36px;
  }

  .meter-gauge__unit {
    font-size: 13px;
  }

  .meter-card h4 {
    font-size: 15px;
  }

  .meter-card > p {
    max-width: 15ch;
    font-size: 10px;
  }

  .service-feature-grid {
    grid-template-columns: 1fr;
  }

  .service-feature-card {
    grid-template-columns: 42px 1fr;
    gap: 10px;
    padding: 12px;
  }

.service-feature-card__icon {
  width: 36px;
  height: 36px;
  font-size: 16px;
}

  .service-feature-card__icon-img {
    width: 36px;
    height: 36px;
  }

  .service-feature-card h4 {
    font-size: 17px;
  }

  .service-feature-card p {
    font-size: 13px;
  }
}

.scroll-hint {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  cursor: pointer;
  z-index: 1200;
  transition: transform 300ms ease, opacity 300ms ease, visibility 300ms;
}

.scroll-hint.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(12px) scale(0.98);
  visibility: hidden;
  pointer-events: none;
}

.scroll-hint .hint-text {
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}

.scroll-hint .arrow {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(247, 183, 51, 0.2), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  animation: float 1400ms ease-in-out infinite;
}

.scroll-hint .arrow svg {
  display: block;
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--primary);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-hint .arrow {
    animation: none;
  }

  .card,
  .btn {
    transition: none;
  }

  .meter-gauge {
    transition: none;
  }
}

@media (min-width: 961px) {
  .scroll-hint {
    display: none !important;
  }
}

@media (max-width: 480px) {
  body {
    overflow-x: hidden;
  }

  .page {
    padding: 12px 10px 20px;
    overflow-x: clip;
  }

  .hero {
    padding: 14px;
    gap: 12px;
    border-radius: 14px;
  }

  .badge {
    font-size: 12px;
    padding: 5px 9px;
  }

  .hero__copy h1 {
    font-size: 34px;
    margin: 8px 0 10px;
  }

  .lead {
    font-size: 13px;
    line-height: 1.45;
  }

  .pill-list {
    margin-top: 10px;
    gap: 6px;
  }

  .pill-list li {
    font-size: 12px;
    padding: 5px 8px;
  }

  .hero__highlight {
    padding: 12px;
    border-radius: 12px;
  }

  .hero__highlight h2 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .highlight__list {
    gap: 6px;
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 1.35;
  }

  .btn-light {
    min-height: 36px;
    font-size: 13px;
    padding: 8px 12px;
  }

  .section {
    margin-top: 14px;
  }

  .section__title {
    margin-bottom: 8px;
  }

  .section__title h3 {
    font-size: 32px;
  }

  .section__title p {
    font-size: 13px;
    line-height: 1.35;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .card {
    padding: 10px;
    grid-template-rows: 68px auto auto minmax(32px, 1fr) auto;
    gap: 6px;
  }

  .feature-card {
    padding: 10px;
  }

  .card__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
  }

  .card__logo {
    width: 100%;
    height: 68px;
    border-radius: 8px;
    padding: 4px;
  }

  .card__tag {
    font-size: 10px;
    padding: 3px 6px;
  }

  .card p {
    font-size: 11px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .card h4 {
    min-height: 2.4em;
    font-size: 13px;
    line-height: 1.3;
  }

  .card__actions .btn-inline,
  .card__actions .btn-ghost {
    min-height: 30px;
    font-size: 11px;
    padding: 6px 4px;
    border-radius: 7px;
  }

  .footer {
    margin-top: 12px;
    font-size: 11px;
    line-height: 1.2;
  }

  .scroll-hint {
    display: none !important;
  }

  .service {
    margin-top: 16px;
    padding: 14px 10px 12px;
    border-radius: 14px;
  }

  .service__header {
    gap: 8px;
  }

  .service__line {
    max-width: 46px;
    min-width: 24px;
    height: 1px;
  }

  .service__header h3 {
    font-size: 28px;
  }

  .service__subtitle {
    margin: 6px 0 12px;
    font-size: 12px;
  }

  .service-meters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 10px;
  }

  .meter-gauge {
    width: 88px;
    height: 88px;
    margin-bottom: 4px;
  }

  .meter-gauge::before {
    inset: 6px;
    --ring-width: 6px;
  }

  .meter-gauge__core {
    inset: 16px;
  }

  .meter-gauge__small {
    font-size: 5px;
  }

  .meter-gauge__value {
    font-size: 30px;
  }

  .meter-gauge__unit {
    font-size: 11px;
  }

  .meter-card h4 {
    font-size: 13px;
  }

  .meter-card > p {
    margin-top: 2px;
    max-width: 13ch;
    font-size: 9px;
  }

  .service-feature-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-feature-card {
    grid-template-columns: 36px 1fr;
    gap: 8px;
    padding: 10px;
    border-radius: 14px;
  }

.service-feature-card__icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  font-size: 14px;
}

  .service-feature-card__icon-img {
    width: 32px;
    height: 32px;
  }

  .service-feature-card h4 {
    margin-bottom: 4px;
    font-size: 14px;
  }

  .service-feature-card p {
    font-size: 11px;
    line-height: 1.45;
  }
}
