/* etaoxue.com · LokiProxy 视觉对标 · Rola IP · lp-* 命名空间 */
:root {
  /* 对齐 lokiproxy：青绿主色 + 珊瑚强调 */
  --lp-accent: #14b8a6;
  --lp-accent-dark: #0f766e;
  --lp-accent-soft: #f0fdfa;
  --lp-coral: #f07167;
  --lp-coral-dark: #e85a4f;
  --lp-text: #1a2744;
  --lp-muted: #64748b;
  --lp-border: #e2e8f0;
  --lp-bg: #f7f9fc;
  --lp-surface: #ffffff;
  --lp-radius: 12px;
  --lp-shadow: 0 12px 40px rgba(26, 39, 68, 0.08);
  --lp-header-h: 80px;
  --lp-wrap: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body.lp-body {
  font-family: "DM Sans", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  background: var(--lp-surface);
  color: var(--lp-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.lp-wrap {
  max-width: var(--lp-wrap);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Buttons ---------- */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 10px;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.1s;
}

.lp-btn--primary {
  background: var(--lp-accent);
  color: #fff;
}

.lp-btn--primary:hover {
  background: var(--lp-accent-dark);
}

.lp-btn--ghost {
  color: var(--lp-text);
  border: 1px solid var(--lp-border);
}

.lp-btn--ghost:hover {
  border-color: var(--lp-accent);
  color: var(--lp-accent-dark);
}

.lp-btn--outline {
  border: 1px solid var(--lp-accent);
  color: var(--lp-accent);
}

.lp-btn--outline:hover {
  background: var(--lp-accent-soft);
}

.lp-tag {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 7px;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 700;
  color: #fff;
  background: var(--lp-accent);
  border-radius: 999px;
  vertical-align: middle;
}

/* ---------- Header ---------- */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--lp-border);
  transition: box-shadow 0.2s;
}

.lp-header.is-scrolled {
  box-shadow: var(--lp-shadow);
}

.lp-header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: var(--lp-header-h);
}

.lp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.22rem;
  flex-shrink: 0;
}

.lp-logo img {
  width: 32px;
  height: 28px;
}

.lp-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.lp-nav > ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.lp-nav > ul > li {
  position: relative;
}

.lp-nav > ul > li > button,
.lp-nav__link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 18px;
  font-size: 1.18rem;
  font-weight: 600;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.12s, color 0.12s;
}

.lp-nav > ul > li > button:hover,
.lp-nav__link:hover,
.lp-nav > ul > li.is-open > button {
  background: var(--lp-accent-soft);
  color: var(--lp-accent-dark);
}

.lp-nav__chev {
  width: 12px;
  height: 8px;
  opacity: 0.45;
  transition: transform 0.15s;
}

.lp-nav > ul > li.is-open .lp-nav__chev {
  transform: rotate(180deg);
}

.lp-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* 顶栏登录/注册按钮单独放大，避免影响页内其它按钮 */
.lp-header__actions .lp-btn {
  padding: 12px 22px;
  font-size: 1rem;
  border-radius: 10px;
  min-height: 44px;
}

.lp-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.lp-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--lp-text);
  border-radius: 2px;
}

/* Mega / dropdown */
.lp-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 280px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow);
  padding: 12px;
  z-index: 1100;
}

.lp-dropdown--mega {
  min-width: 560px;
  padding: 20px;
}

.lp-nav > ul > li.is-open .lp-dropdown {
  display: block;
}

.lp-dropdown__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lp-muted);
  margin-bottom: 12px;
}

.lp-dropdown__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.lp-dropdown__grid--3 {
  grid-template-columns: repeat(3, 1fr);
  min-width: 640px;
}

.lp-dropdown__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp-dropdown__item {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: background 0.12s, border-color 0.12s;
}

.lp-dropdown__item:hover {
  background: var(--lp-accent-soft);
  border-color: #bfdbfe;
}

.lp-dropdown__item strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.lp-dropdown__item span {
  display: block;
  font-size: 0.8rem;
  color: var(--lp-muted);
  line-height: 1.4;
}

.lp-dropdown__price {
  color: var(--lp-accent) !important;
  font-weight: 600;
}

/* ---------- Footer ---------- */
.lp-footer {
  background: #0b1220;
  color: #cbd5e1;
  padding: 56px 0 28px;
  margin-top: auto;
}

.lp-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.lp-footer__brand .lp-logo {
  color: #fff;
  margin-bottom: 14px;
}

.lp-footer__brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 12px;
  max-width: 280px;
}

.lp-footer__mail {
  color: #93c5fd;
  font-weight: 500;
}

.lp-footer__mail:hover {
  color: #fff;
}

.lp-footer__col h3 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.lp-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-footer__col a {
  font-size: 0.88rem;
  color: #94a3b8;
  transition: color 0.12s;
}

.lp-footer__col a:hover {
  color: #fff;
}

.lp-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.lp-footer__legal a {
  font-size: 0.82rem;
  color: #94a3b8;
}

.lp-footer__legal a:hover {
  color: #fff;
}

.lp-footer__bottom {
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.82rem;
  color: #64748b;
}

.lp-footer__addr {
  max-width: 520px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .lp-dropdown--mega,
  .lp-dropdown__grid--3 {
    min-width: 0;
  }

  .lp-dropdown__grid,
  .lp-dropdown__grid--3 {
    grid-template-columns: 1fr;
  }

  .lp-toggle {
    display: flex;
    margin-left: auto;
    order: 3;
  }

  .lp-header__actions {
    order: 2;
  }

  .lp-nav {
    display: none;
    position: absolute;
    top: var(--lp-header-h);
    left: 0;
    right: 0;
    background: var(--lp-surface);
    border-bottom: 1px solid var(--lp-border);
    box-shadow: var(--lp-shadow);
    padding: 12px 16px 20px;
    max-height: calc(100vh - var(--lp-header-h));
    overflow-y: auto;
  }

  .lp-nav.open {
    display: block;
  }

  .lp-nav > ul {
    flex-direction: column;
    align-items: stretch;
  }

  .lp-nav > ul > li > button,
  .lp-nav__link {
    width: 100%;
    justify-content: space-between;
  }

  .lp-dropdown,
  .lp-dropdown--mega {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 4px 0 8px 12px;
    min-width: 0;
    display: none;
  }

  .lp-nav > ul > li.is-open .lp-dropdown {
    display: block;
  }

  .lp-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .lp-header__actions .lp-btn--ghost {
    display: none;
  }

  .lp-footer__grid {
    grid-template-columns: 1fr;
  }
}

/* ========== 首页 ========== */
.lp-btn--sm {
  padding: 8px 14px;
  font-size: 0.82rem;
}

.lp-btn--coral {
  background: var(--lp-coral);
  color: #fff;
}

.lp-btn--coral:hover {
  background: var(--lp-coral-dark);
}

.lp-btn--google {
  gap: 8px;
}

.lp-btn--google img {
  width: 18px;
  height: 18px;
}

.lp-link {
  color: var(--lp-accent-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

.lp-link:hover {
  text-decoration: underline;
}

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--lp-accent-dark);
  margin-bottom: 10px;
}

.lp-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.lp-section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--lp-text);
}

.lp-section-head p {
  color: var(--lp-muted);
  font-size: 1.02rem;
}

.lp-section-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  max-width: none;
}

.lp-section-head--row > div {
  max-width: 640px;
}

/* Topbar */
.lp-topbar {
  background: #d8f3ee;
  color: var(--lp-text);
  font-size: 0.9rem;
}

.lp-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 42px;
  flex-wrap: wrap;
  padding-top: 8px;
  padding-bottom: 8px;
}

.lp-topbar__cta {
  background: var(--lp-coral);
  color: #fff;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 6px 14px;
  border-radius: 999px;
}

.lp-topbar__cta:hover {
  background: var(--lp-coral-dark);
}

/* Hero */
.lp-hero {
  position: relative;
  padding: 56px 0 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #f7fbfb 0%, #fff 60%);
}

.lp-hero__line {
  position: absolute;
  top: 40px;
  width: min(220px, 22vw);
  opacity: 0.55;
  pointer-events: none;
}

.lp-hero__line--l {
  left: 0;
}

.lp-hero__line--r {
  right: 0;
}

.lp-hero__inner {
  position: relative;
  text-align: center;
}

.lp-hero h1 {
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.2;
  color: var(--lp-text);
  margin-bottom: 16px;
}

.lp-hero h1 em {
  color: var(--lp-coral);
  font-style: normal;
}

.lp-hero__lead {
  max-width: 640px;
  margin: 0 auto 28px;
  color: var(--lp-muted);
  font-size: 1.05rem;
}

.lp-hero__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Hero 下方核心能力卡片（替代原控制台大图） */
.lp-trust-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  text-align: left;
  max-width: 1100px;
  margin: 0 auto;
}

.lp-trust-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  padding: 20px 18px;
  box-shadow: 0 8px 24px rgba(26, 39, 68, 0.04);
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.lp-trust-card:hover {
  border-color: #99f6e4;
  box-shadow: var(--lp-shadow);
  transform: translateY(-2px);
}

.lp-trust-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lp-accent-soft);
  border-radius: 12px;
  margin-bottom: 14px;
}

.lp-trust-card__icon img {
  width: 28px;
  height: 28px;
}

.lp-trust-card h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--lp-text);
  margin-bottom: 8px;
  line-height: 1.35;
}

.lp-trust-card p {
  font-size: 0.82rem;
  color: var(--lp-muted);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 1100px) {
  .lp-trust-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .lp-trust-cards {
    grid-template-columns: 1fr;
  }
}

/* Products：五行横向卡片 */
.lp-products {
  padding: 72px 0;
  background: var(--lp-bg);
}

.lp-products__grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.lp-product-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 22px 28px;
  display: grid;
  grid-template-columns: minmax(200px, 1.1fr) minmax(180px, 1fr) auto;
  gap: 20px 28px;
  align-items: center;
  transition: box-shadow 0.15s, border-color 0.15s;
}

.lp-product-card:hover {
  border-color: #99f6e4;
  box-shadow: var(--lp-shadow);
}

.lp-product-card__icon {
  display: inline-flex;
  margin-bottom: 10px;
}

.lp-product-card__icon img {
  width: 40px;
  height: 40px;
}

.lp-product-card__main h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.lp-product-card__main p {
  color: var(--lp-muted);
  font-size: 0.92rem;
  margin-bottom: 0;
  line-height: 1.55;
}

.lp-product-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
}

.lp-product-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
}

.lp-product-card li img {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.lp-product-card__side {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  min-width: 128px;
}

.lp-product-card__price {
  font-weight: 700;
  color: var(--lp-accent-dark);
  margin: 0 !important;
  text-align: right;
}

.lp-product-card__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.lp-product-card__actions .lp-link {
  text-align: center;
}

@media (max-width: 800px) {
  .lp-product-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .lp-product-card__price {
    text-align: left;
  }

  .lp-product-card__actions {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* Locations */
.lp-locations {
  padding: 72px 0;
}

.lp-locations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lp-loc-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  background: var(--lp-surface);
}

.lp-loc-card img {
  width: 36px;
  height: auto;
}

.lp-loc-card h3 {
  font-size: 1.05rem;
}

.lp-loc-card p {
  color: var(--lp-muted);
  font-size: 0.9rem;
}

.lp-locations__more {
  display: flex;
  justify-content: center;
  margin: 28px 0 40px;
}

.lp-locations__more .lp-btn {
  gap: 8px;
}

.lp-kpi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
}

.lp-kpi div {
  padding: 24px 12px;
  background: var(--lp-accent-soft);
  border-radius: var(--lp-radius);
}

.lp-kpi strong {
  display: block;
  font-size: 1.8rem;
  color: var(--lp-accent-dark);
  margin-bottom: 4px;
}

.lp-kpi span {
  color: var(--lp-muted);
  font-size: 0.9rem;
}

/* Code */
.lp-code {
  padding: 72px 0;
  background: #0b1220;
  color: #e2e8f0;
}

.lp-code__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.lp-code__intro h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  line-height: 1.3;
  margin-bottom: 16px;
  color: #fff;
}

.lp-code__intro h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: #fff;
}

.lp-code__intro > p {
  color: #94a3b8;
  margin-bottom: 20px;
}

.lp-code__side {
  margin-top: 28px;
  max-width: 280px;
  opacity: 0.9;
}

.lp-code__panel {
  background: #111827;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 14px;
  overflow: hidden;
}

.lp-code__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 12px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
  align-items: center;
}

.lp-code__tabs button {
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.82rem;
  color: #94a3b8;
}

.lp-code__tabs button.is-active,
.lp-code__tabs button:hover {
  background: rgba(20, 184, 166, 0.15);
  color: #5eead4;
}

.lp-code__copy {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lp-code__pre {
  margin: 0;
  padding: 20px;
  overflow: auto;
  max-height: 360px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  line-height: 1.55;
  color: #d1d5db;
}

.lp-code__pre[hidden] {
  display: none;
}

/* Dashboard */
.lp-dashboard {
  padding: 72px 0 40px;
}

.lp-dashboard__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.lp-dashboard__grid h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  margin-bottom: 12px;
}

.lp-dashboard__grid > div > p {
  color: var(--lp-muted);
  margin-bottom: 18px;
}

.lp-dashboard__bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.lp-dashboard__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.lp-dashboard__visual img {
  width: 100%;
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow);
}

.lp-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp-features article {
  padding: 24px;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  background: var(--lp-surface);
}

.lp-features img {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
}

.lp-features h3 {
  margin-bottom: 8px;
}

.lp-features p {
  color: var(--lp-muted);
  font-size: 0.92rem;
}

/* Use cases */
.lp-usecases {
  padding: 72px 0;
}

.lp-usecases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lp-usecase {
  display: block;
  padding: 24px;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  background: var(--lp-surface);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.lp-usecase:hover {
  border-color: #99f6e4;
  box-shadow: var(--lp-shadow);
}

.lp-usecase img {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
}

.lp-usecase h3 {
  margin-bottom: 8px;
}

.lp-usecase p {
  color: var(--lp-muted);
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.lp-usecase span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--lp-accent-dark);
}

.lp-usecase span img {
  width: 12px;
  height: 12px;
  margin: 0;
}

/* Testimonials */
.lp-testimonials {
  padding: 72px 0;
  background: var(--lp-bg);
}

.lp-testimonials__track {
  position: relative;
  min-height: 220px;
}

.lp-tcard {
  display: none;
  max-width: 720px;
  margin: 0 auto;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 32px;
  box-shadow: var(--lp-shadow);
}

.lp-tcard.is-active {
  display: block;
}

.lp-tcard > p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.lp-tcard footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-tcard footer img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.lp-tcard footer strong {
  display: block;
}

.lp-tcard footer span {
  color: var(--lp-muted);
  font-size: 0.88rem;
}

.lp-testimonials__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.lp-testimonials__nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--lp-border);
  background: var(--lp-surface);
  font-size: 1.2rem;
  line-height: 1;
}

.lp-testimonials__nav button:hover {
  border-color: var(--lp-accent);
  color: var(--lp-accent-dark);
}

/* Blog */
.lp-blog {
  padding: 72px 0;
}

.lp-blog__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}

.lp-blog__featured {
  display: block;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  overflow: hidden;
  background: var(--lp-surface);
}

.lp-blog__featured img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--lp-accent-soft);
}

.lp-blog__featured div {
  padding: 20px;
}

.lp-blog__featured h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.lp-blog__featured p {
  color: var(--lp-muted);
  font-size: 0.92rem;
}

.lp-blog__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-blog__list a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  transition: border-color 0.12s, background 0.12s;
}

.lp-blog__list a:hover {
  background: var(--lp-accent-soft);
  border-color: #99f6e4;
}

.lp-blog__list strong {
  font-size: 0.95rem;
}

.lp-blog__list time {
  flex-shrink: 0;
  color: var(--lp-muted);
  font-size: 0.82rem;
}

/* CTA */
.lp-cta {
  padding: 0 0 72px;
}

.lp-cta__inner {
  text-align: center;
  padding: 48px 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0f766e 0%, #134e4a 100%);
  color: #fff;
}

.lp-cta__inner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 12px;
}

.lp-cta__inner p {
  max-width: 560px;
  margin: 0 auto 24px;
  color: #ccfbf1;
}

/* Home responsive */
@media (max-width: 1024px) {
  .lp-locations__grid,
  .lp-usecases__grid,
  .lp-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-code__grid,
  .lp-dashboard__grid,
  .lp-blog__grid {
    grid-template-columns: 1fr;
  }

  .lp-section-head--row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .lp-locations__grid,
  .lp-usecases__grid,
  .lp-features,
  .lp-kpi {
    grid-template-columns: 1fr;
  }

  .lp-hero {
    padding-top: 36px;
  }
}

/* ========== 产品页 ========== */
.lp-bc {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--lp-muted);
  margin-bottom: 16px;
}

.lp-bc a:hover {
  color: var(--lp-accent-dark);
}

.lp-btn--block {
  width: 100%;
}

.lp-phero {
  padding: 56px 0 64px;
  background: linear-gradient(180deg, #f7fbfb 0%, #fff 70%);
}

/* 产品 Banner：无右侧图，内容放大居中 */
.lp-phero--center .lp-phero__grid {
  display: block;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.lp-phero--center .lp-bc {
  justify-content: center;
}

.lp-phero--center h1 {
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.2;
  margin-bottom: 16px;
}

.lp-phero--center .lp-phero__lead {
  color: var(--lp-muted);
  font-size: 1.12rem;
  line-height: 1.7;
  margin: 0 auto 18px;
  max-width: 680px;
}

.lp-phero--center .lp-phero__extra {
  color: var(--lp-text);
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0 auto 24px;
  max-width: 640px;
}

.lp-phero--center .lp-phero__feats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 16px;
  margin: 0 auto 28px;
  max-width: 720px;
  text-align: left;
}

.lp-phero--center .lp-phero__feats li {
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 14px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: 10px;
}

.lp-phero--center .lp-phero__feats strong {
  color: var(--lp-coral);
}

.lp-phero--center .lp-phero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

@media (max-width: 720px) {
  .lp-phero--center .lp-phero__feats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .lp-phero--center .lp-phero__feats {
    grid-template-columns: 1fr;
  }
}

.lp-locations--product {
  background: var(--lp-bg);
}

/* Pricing plans */
.lp-pricing {
  padding: 72px 0;
}

.lp-pricing__switch {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.lp-pricing__switch button {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid var(--lp-border);
  font-weight: 600;
  font-size: 0.92rem;
  background: var(--lp-surface);
}

.lp-pricing__switch button.is-active {
  background: var(--lp-accent);
  border-color: var(--lp-accent);
  color: #fff;
}

.lp-pricing__hint {
  text-align: center;
  color: var(--lp-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.lp-pricing__grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lp-pricing__grid.is-active {
  display: grid;
}

.lp-pricing__grid--5 {
  grid-template-columns: repeat(5, 1fr);
}

.lp-phero__icon-lg {
  width: min(200px, 40vw);
  height: auto;
  margin: 0 auto;
  box-shadow: none !important;
}

.lp-pricing__grid[hidden] {
  display: none !important;
}

.lp-price-card {
  position: relative;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 22px 20px;
  background: var(--lp-surface);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.lp-price-card:hover {
  border-color: #99f6e4;
  box-shadow: var(--lp-shadow);
}

.lp-price-card--hot {
  border-color: var(--lp-coral);
  box-shadow: 0 8px 28px rgba(240, 113, 103, 0.15);
}

.lp-price-card__badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--lp-accent-dark);
  background: var(--lp-accent-soft);
  padding: 3px 8px;
  border-radius: 999px;
}

.lp-price-card h3 {
  font-size: 1.35rem;
}

.lp-price-card__unit {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lp-text);
}

.lp-price-card__unit span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--lp-muted);
}

.lp-price-card__total {
  color: var(--lp-muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.lp-pricing__custom {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.lp-pricing__custom p {
  font-weight: 600;
}

/* Why / pillars */
.lp-why {
  padding: 72px 0;
  background: var(--lp-bg);
}

.lp-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.lp-why__grid article {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 20px;
}

.lp-why__grid h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.lp-why__grid p {
  color: var(--lp-muted);
  font-size: 0.9rem;
}

.lp-why__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lp-why__pillars article {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 24px;
}

.lp-why__pillars h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--lp-accent-dark);
  margin-bottom: 8px;
}

.lp-why__pillars h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.lp-why__pillars p {
  color: var(--lp-muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

/* 定价页 Hero */
.lp-price-hero {
  padding: 48px 0 32px;
  background: linear-gradient(180deg, #f7fbfb 0%, #fff 80%);
  text-align: center;
}

.lp-price-hero__inner {
  max-width: 760px;
}

.lp-price-hero .lp-bc {
  justify-content: center;
}

.lp-price-hero h1 {
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 1.25;
  margin-bottom: 12px;
}

.lp-price-hero p {
  color: var(--lp-muted);
  font-size: 1.05rem;
  margin-bottom: 22px;
}

.lp-price-hero__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.lp-feat-strip {
  padding: 56px 0;
  background: var(--lp-bg);
}

.lp-feat-strip__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.lp-feat-strip__list li {
  padding: 10px 16px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* 静态代理订购 Widget */
.lp-static-widget {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

.lp-static-widget__form,
.lp-static-widget__summary {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 24px;
}

.lp-static-field {
  margin-bottom: 18px;
}

.lp-static-field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.lp-static-seg {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lp-static-seg button {
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid var(--lp-border);
  font-weight: 500;
  font-size: 0.9rem;
  background: #fff;
}

.lp-static-seg button.is-active {
  background: var(--lp-accent-soft);
  border-color: var(--lp-accent);
  color: var(--lp-accent-dark);
}

.lp-static-field select,
.lp-static-field input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--lp-border);
  border-radius: 8px;
  font: inherit;
  background: #fff;
}

.lp-static-widget__summary h3 {
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.lp-static-widget__summary ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.lp-static-widget__summary li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--lp-muted);
}

.lp-static-widget__summary li strong {
  color: var(--lp-text);
  font-weight: 600;
}

.lp-static-widget__total {
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.lp-static-widget__total strong {
  font-size: 1.5rem;
  color: var(--lp-accent-dark);
  margin-left: 8px;
}

.lp-static-widget__note {
  margin: 12px 0;
  font-size: 0.82rem;
  color: var(--lp-muted);
  line-height: 1.5;
}

.lp-static-widget__note a {
  color: var(--lp-accent-dark);
  font-weight: 600;
}

@media (max-width: 800px) {
  .lp-static-widget {
    grid-template-columns: 1fr;
  }
}

/* FAQ */
.lp-faq {
  padding: 72px 0;
  background: var(--lp-bg);
}

.lp-faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-faq__item {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  padding: 4px 18px;
}

.lp-faq__item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 14px 0;
  list-style: none;
}

.lp-faq__item summary::-webkit-details-marker {
  display: none;
}

.lp-faq__item summary::after {
  content: "+";
  float: right;
  color: var(--lp-muted);
  font-weight: 400;
}

.lp-faq__item[open] summary::after {
  content: "−";
}

.lp-faq__item p {
  color: var(--lp-muted);
  font-size: 0.95rem;
  padding-bottom: 16px;
  line-height: 1.7;
}

.lp-faq__item a {
  color: var(--lp-accent-dark);
  font-weight: 600;
}

@media (max-width: 1100px) {
  .lp-pricing__grid--5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .lp-phero__grid {
    grid-template-columns: 1fr;
  }

  .lp-pricing__grid,
  .lp-why__pillars {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 640px) {
  .lp-phero__feats,
  .lp-pricing__grid,
  .lp-pricing__grid--5,
  .lp-why__grid,
  .lp-why__pillars {
    grid-template-columns: 1fr;
  }
}

/* ---------- 通用内页 Hero（联系 / 博客） ---------- */
.lp-page-hero {
  padding: 48px 0 32px;
  background: linear-gradient(180deg, var(--lp-accent-soft) 0%, var(--lp-surface) 100%);
  border-bottom: 1px solid var(--lp-border);
}

.lp-page-hero__eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lp-accent-dark);
  margin: 12px 0 8px;
}

.lp-page-hero h1 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  line-height: 1.25;
  margin-bottom: 12px;
}

.lp-page-hero__lead {
  max-width: 640px;
  color: var(--lp-muted);
  font-size: 1.05rem;
}

/* ---------- 联系我们 ---------- */
.lp-contact {
  padding: 56px 0 80px;
}

.lp-contact__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.lp-contact__form-wrap h2 {
  font-size: 1.35rem;
  margin-bottom: 20px;
}

.lp-contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 28px;
  box-shadow: var(--lp-shadow);
}

.lp-contact__form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--lp-text);
}

.lp-contact__form input,
.lp-contact__form select,
.lp-contact__form textarea {
  font: inherit;
  font-weight: 400;
  padding: 12px 14px;
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  background: var(--lp-bg);
  color: var(--lp-text);
  transition: border-color 0.15s;
}

.lp-contact__form input:focus,
.lp-contact__form select:focus,
.lp-contact__form textarea:focus {
  outline: none;
  border-color: var(--lp-accent);
  background: var(--lp-surface);
}

.lp-contact__aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-contact__card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 22px 24px;
}

.lp-contact__card h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.lp-contact__card p {
  color: var(--lp-muted);
  font-size: 0.95rem;
  margin-bottom: 8px;
  line-height: 1.6;
}

.lp-contact__card p:last-child {
  margin-bottom: 0;
}

.lp-contact__card span {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--lp-text);
  margin-bottom: 2px;
}

.lp-contact__card a {
  color: var(--lp-accent-dark);
  font-weight: 600;
}

.lp-contact__card a:hover {
  text-decoration: underline;
}

.lp-contact__muted {
  font-size: 0.85rem !important;
}

.lp-contact__cta {
  background: var(--lp-accent-soft);
  border: 1px solid #ccfbf1;
  border-radius: var(--lp-radius);
  padding: 22px 24px;
  text-align: center;
}

.lp-contact__cta p {
  color: var(--lp-muted);
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.lp-btn--block {
  width: 100%;
}

@media (max-width: 900px) {
  .lp-contact__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- 博客（对齐 cazhi.cn：列表卡片 + 文章窄栏） ---------- */
.lp-sub-hero {
  padding: 48px 0 40px;
  text-align: center;
  background: linear-gradient(180deg, var(--lp-accent-soft) 0%, var(--lp-surface) 100%);
}

.lp-sub-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--lp-text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.lp-sub-hero p {
  color: var(--lp-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}

.lp-section {
  padding: 64px 0 72px;
}

.lp-section--alt {
  background: var(--lp-bg);
}

/* 博客列表：单篇定宽居中（避免 3 列网格把卡片拉满整行） */
.lp-blog-list {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

.lp-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp-blog-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s;
  height: auto;
}

.lp-blog-card:hover {
  box-shadow: 0 8px 24px rgba(26, 39, 68, 0.08);
}

.lp-blog-card__body {
  padding: 24px;
}

.lp-blog-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--lp-text);
  margin-bottom: 8px;
  line-height: 1.4;
}

.lp-blog-card p {
  font-size: 0.85rem;
  color: var(--lp-muted);
  line-height: 1.6;
  margin: 0;
}

.lp-blog-card .lp-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lp-accent-dark);
  margin-top: 12px;
  display: inline-block;
}

.lp-blog-list__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
  text-align: center;
}

.lp-article {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.lp-article__body {
  color: #374151;
  line-height: 1.85;
  font-size: 1rem;
}

.lp-article__body p {
  margin-bottom: 1.1em;
}

.lp-article__body h3 {
  color: var(--lp-text);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 1.6em 0 0.75em;
}

.lp-article__body ul {
  list-style: disc;
  padding-left: 1.35em;
  margin: 0 0 1.2em;
}

.lp-article__body li {
  margin-bottom: 0.55em;
}

.lp-article__body a {
  color: var(--lp-accent-dark);
  font-weight: 600;
}

.lp-article__body a:hover {
  text-decoration: underline;
}

.lp-article__back {
  margin-top: 32px;
}

@media (max-width: 900px) {
  .lp-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .lp-blog-grid {
    grid-template-columns: 1fr;
  }

  .lp-blog-list {
    max-width: 100%;
  }

  .lp-sub-hero {
    padding: 36px 0 28px;
  }
}

/* ---------- 关于我们 ---------- */
.lp-page-hero--about .lp-page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.lp-about-intro {
  padding: 64px 0;
}

.lp-about-intro__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

.lp-about-intro h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.lp-about-intro p {
  color: var(--lp-muted);
  margin-bottom: 14px;
  line-height: 1.75;
  font-size: 1.02rem;
}

.lp-about-intro__meta {
  background: var(--lp-bg);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 8px 4px;
}

.lp-about-intro__meta li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--lp-border);
}

.lp-about-intro__meta li:last-child {
  border-bottom: none;
}

.lp-about-intro__meta strong {
  font-size: 0.8rem;
  color: var(--lp-muted);
  font-weight: 600;
}

.lp-about-intro__meta span,
.lp-about-intro__meta a {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--lp-text);
}

.lp-about-intro__meta a {
  color: var(--lp-accent-dark);
}

.lp-about-intro__meta a:hover {
  text-decoration: underline;
}

.lp-about-blocks {
  padding: 64px 0;
  background: var(--lp-bg);
}

.lp-about-blocks__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.lp-about-blocks__grid article {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 28px 26px;
}

.lp-about-blocks__grid h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.lp-about-blocks__grid p {
  color: var(--lp-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.lp-about-stats {
  padding: 64px 0;
}

.lp-about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.lp-about-stats__grid div {
  text-align: center;
  padding: 28px 16px;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  background: linear-gradient(180deg, var(--lp-accent-soft), var(--lp-surface));
}

.lp-about-stats__grid strong {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--lp-accent-dark);
  margin-bottom: 6px;
}

.lp-about-stats__grid span {
  color: var(--lp-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.lp-about-contact {
  padding: 64px 0 80px;
  background: var(--lp-bg);
}

.lp-about-contact__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: center;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 40px 36px;
  box-shadow: var(--lp-shadow);
}

.lp-about-contact h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.lp-about-contact__inner > div > p {
  color: var(--lp-muted);
  margin-bottom: 20px;
}

.lp-about-contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lp-about-contact__info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lp-about-contact__info strong {
  display: block;
  font-size: 0.8rem;
  color: var(--lp-muted);
  margin-bottom: 4px;
}

.lp-about-contact__info a,
.lp-about-contact__info span {
  font-weight: 600;
  color: var(--lp-text);
  line-height: 1.55;
}

.lp-about-contact__info a {
  color: var(--lp-accent-dark);
}

.lp-about-contact__info a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .lp-about-intro__inner,
  .lp-about-contact__inner,
  .lp-about-blocks__grid {
    grid-template-columns: 1fr;
  }

  .lp-about-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .lp-about-stats__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- 通用内页 Hero（联系 / 博客） ---------- */
.lp-page-hero {
  padding: 48px 0 32px;
  background: linear-gradient(180deg, var(--lp-accent-soft) 0%, var(--lp-surface) 100%);
  border-bottom: 1px solid var(--lp-border);
}

.lp-page-hero__eyebrow {
  margin-top: 12px;
  color: var(--lp-accent-dark);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.lp-page-hero h1 {
  margin-top: 8px;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  line-height: 1.25;
}

.lp-page-hero__lead {
  margin-top: 12px;
  max-width: 640px;
  color: var(--lp-muted);
  font-size: 1.05rem;
}

/* ---------- 联系我们 ---------- */
.lp-contact {
  padding: 56px 0 80px;
}

.lp-contact__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.lp-contact__form-wrap h2 {
  margin-bottom: 20px;
  font-size: 1.35rem;
}

.lp-contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow);
}

.lp-contact__form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 500;
}

.lp-contact__form input,
.lp-contact__form select,
.lp-contact__form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  font: inherit;
  color: var(--lp-text);
  background: var(--lp-bg);
  transition: border-color 0.15s;
}

.lp-contact__form input:focus,
.lp-contact__form select:focus,
.lp-contact__form textarea:focus {
  outline: none;
  border-color: var(--lp-accent);
  background: var(--lp-surface);
}

.lp-contact__hint {
  margin-top: 4px;
  font-size: 0.9rem;
  color: var(--lp-accent-dark);
}

.lp-contact__aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-contact__card {
  padding: 22px 24px;
  background: var(--lp-bg);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
}

.lp-contact__card h3 {
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.lp-contact__card p {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 12px;
  font-size: 0.95rem;
  color: var(--lp-text);
  line-height: 1.55;
}

.lp-contact__card p span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--lp-muted);
}

.lp-contact__card a {
  color: var(--lp-accent-dark);
  font-weight: 600;
}

.lp-contact__card a:hover {
  text-decoration: underline;
}

.lp-contact__card--cta {
  background: var(--lp-accent-soft);
  border-color: #99f6e4;
}

.lp-contact__card--cta p {
  margin-bottom: 16px;
  color: var(--lp-muted);
}

@media (max-width: 900px) {
  .lp-contact__grid {
    grid-template-columns: 1fr;
  }
}
