:root {
  --ink: #102826;
  --text: #183632;
  --muted: #667873;
  --line: #dce9e4;
  --paper: #f4faf7;
  --white: #ffffff;
  --teal: #087d8b;
  --teal-dark: #075f68;
  --deep: #0b342f;
  --coral: #e86f4d;
  --gold: #d7a23f;
  --mint: #e4f4ef;
  --aqua: #d7f1ee;
  --shadow-soft: 0 18px 50px rgba(16, 40, 38, 0.1);
  --shadow-strong: 0 28px 90px rgba(16, 40, 38, 0.18);
}

/* 首页行业资讯 */
.home-insights {
  padding-top: 88px;
  padding-bottom: 88px;
  background: var(--white);
}

.home-insights-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}

.home-insights-heading h2 {
  margin: 4px 0 8px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.08;
}

.home-insights-heading p:last-child {
  margin: 0;
  color: var(--muted);
}

.text-link {
  flex: 0 0 auto;
  padding-bottom: 5px;
  color: var(--teal-dark);
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.home-insights-list {
  border-top: 1px solid var(--line);
}

.home-insight-item {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 24px;
  padding: 24px 4px;
  border-bottom: 1px solid var(--line);
  transition: color 180ms ease, padding 180ms ease, background 180ms ease;
}

.home-insight-item:hover,
.home-insight-item:focus-visible {
  padding-right: 14px;
  padding-left: 14px;
  color: var(--teal-dark);
  background: var(--paper);
  outline: none;
}

.home-insight-date {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.home-insight-copy {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.home-insight-copy strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 1.12rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-insight-copy > span {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.94rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-insight-arrow {
  color: var(--coral);
  font-size: 1.4rem;
  text-align: right;
}

.home-insights-status {
  margin: 22px 0 0;
  color: var(--muted);
}

/* 后台资讯管理 */
.password-field {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
}

.password-field input {
  width: 100%;
  padding-right: 52px;
}

.password-field input::-ms-reveal,
.password-field input::-ms-clear {
  display: none;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 7px;
  display: grid;
  width: 32px;
  height: 32px;
  padding: 0;
  color: var(--teal-dark);
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  place-items: center;
}

.password-toggle:hover,
.password-toggle:focus-visible {
  background: var(--mint);
  outline: 1px solid var(--teal);
  outline-offset: 0;
}

.admin-form label > .password-field {
  margin: 0;
  font-size: inherit;
  font-weight: 400;
}

.admin-form .password-field .password-toggle {
  position: absolute;
  top: 50%;
  right: 7px;
  transform: translateY(-50%);
}

[hidden] {
  display: none !important;
}

.admin-library {
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.admin-library-head,
.admin-insight-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.admin-library-head h2 {
  margin: 2px 0 0;
  color: var(--ink);
  font-size: 1.8rem;
}

.admin-insight-list {
  margin-top: 18px;
  border-top: 1px solid var(--line);
}

.admin-insight-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.admin-insight-item h3,
.admin-insight-meta {
  margin: 0;
}

.admin-insight-item h3 {
  color: var(--ink);
  font-size: 1.05rem;
}

.admin-insight-meta {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.admin-insight-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.button.compact {
  min-height: 42px;
  padding: 8px 14px;
}

.button.danger {
  color: #8d3428;
  background: #fff4f1;
  border: 1px solid #efc4ba;
}

.button.danger:hover,
.button.danger:focus-visible {
  color: var(--white);
  background: #a94738;
}

@media (max-width: 720px) {
  .home-insights {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .home-insights-heading,
  .admin-library-head,
  .admin-insight-item {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-insight-item {
    grid-template-columns: minmax(0, 1fr) 24px;
    gap: 8px 14px;
    padding: 20px 2px;
  }

  .home-insight-date {
    grid-column: 1 / -1;
  }

  .home-insight-copy > span {
    display: -webkit-box;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .admin-insight-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .admin-insight-actions .button {
    flex: 1 1 88px;
    min-height: 44px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
}

body::selection {
  color: var(--white);
  background: var(--teal);
}

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

img {
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.top-announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 42px;
  padding: 8px 20px;
  color: var(--white);
  background: linear-gradient(90deg, var(--deep), var(--teal-dark));
  font-size: 0.9rem;
  font-weight: 800;
}

.top-announcement a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--deep);
  background: #8ee1d5;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(220, 233, 228, 0.75);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(22px);
  box-shadow: 0 8px 26px rgba(16, 40, 38, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 218px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--deep) 0%, var(--teal) 58%, #34b5a5 100%);
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(8, 125, 139, 0.28);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  color: #344d48;
  font-size: 0.95rem;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.main-nav a:hover {
  color: var(--teal-dark);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.lang-toggle,
.primary-link,
.button,
.back-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.lang-toggle {
  width: 50px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.primary-link,
.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), #f08b67);
  box-shadow: 0 12px 26px rgba(232, 111, 77, 0.22);
}

.primary-link {
  padding: 0 17px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.88fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(54px, 7vw, 104px) clamp(20px, 5vw, 72px) 72px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(228, 244, 239, 0.86) 46%, rgba(255, 255, 255, 0.92) 100%),
    url("assets/hainan-hero.webp") center / cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(8, 125, 139, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 125, 139, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent 70%);
}

.hero-copy {
  max-width: 780px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 13px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(2.45rem, 4.7vw, 4.35rem);
  line-height: 1.03;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-all;
}

.hero-text {
  max-width: 660px;
  margin-bottom: 32px;
  color: #536864;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.button {
  min-width: 148px;
  border: 0;
  padding: 0 22px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.primary-link:hover,
.back-home:hover {
  transform: translateY(-2px);
}

.button.secondary {
  border: 1px solid rgba(8, 125, 139, 0.22);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(12px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(8, 125, 139, 0.18);
  border-radius: 999px;
  color: #254a45;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-proof span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: #20aa7a;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 690px;
  margin: 0;
}

.hero-metrics div {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(8, 125, 139, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 34px rgba(16, 40, 38, 0.06);
}

.hero-metrics div::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--teal);
}

.hero-metrics dt {
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 900;
}

.hero-metrics dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
  background: var(--aqua);
  transform: translateZ(0);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 8px;
  pointer-events: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 0%, rgba(11, 52, 47, 0.28) 100%);
  pointer-events: none;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  animation: imageFloat 9s ease-in-out infinite;
}

.status-panel {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  width: min(350px, calc(100% - 48px));
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  color: var(--white);
  background: rgba(11, 52, 47, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  animation: panelFloat 5.5s ease-in-out infinite;
}

.status-panel span,
.status-panel small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.status-panel strong {
  display: block;
  margin: 7px 0;
  font-size: 1.15rem;
}

.market-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-top: 1px solid rgba(220, 233, 228, 0.9);
  border-bottom: 1px solid rgba(220, 233, 228, 0.9);
  background: var(--line);
}

.market-rail::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  transform: translateX(-120%);
  animation: railSheen 7s ease-in-out infinite;
}

.market-rail span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 18px clamp(18px, 3vw, 34px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  font-weight: 900;
}

.market-rail span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(232, 111, 77, 0.12);
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.72fr);
  gap: clamp(26px, 5vw, 82px);
  align-items: end;
  background: var(--white);
}

.intro-band h2,
.section-heading h2,
.audience-copy h2,
.team-section h2,
.contact-section h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(1.9rem, 3.5vw, 3.35rem);
  line-height: 1.08;
}

.intro-band p:last-child,
.audience-copy p:last-child,
.contact-section p {
  color: var(--muted);
}

.section-heading {
  display: flex;
  flex-direction: column;
  max-width: 820px;
  margin-bottom: 34px;
}

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

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 268px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(220, 233, 228, 0.9);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), #43b7a8, var(--coral));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.26s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(8, 125, 139, 0.34);
  box-shadow: 0 28px 70px rgba(16, 40, 38, 0.14);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 36px;
  margin-bottom: 24px;
  border-radius: 8px;
  color: var(--teal-dark);
  background: var(--mint);
  font-weight: 900;
}

.service-card h3,
.step h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.25;
}

.service-card p,
.step p {
  color: var(--muted);
}

.service-card p {
  font-size: 0.94rem;
  line-height: 1.75;
}

.service-card a {
  margin-top: auto;
  color: var(--teal-dark);
  font-weight: 900;
}

.included-section {
  background:
    radial-gradient(circle at 84% 16%, rgba(142, 225, 213, 0.28), transparent 28%),
    linear-gradient(180deg, var(--white) 0%, #f2faf7 100%);
}

.included-section .section-heading p:last-child {
  max-width: 760px;
  color: var(--muted);
}

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

.included-card {
  position: relative;
  min-height: 260px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(220, 233, 228, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.included-card::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(8, 125, 139, 0.08);
}

.included-card span {
  display: inline-flex;
  margin-bottom: 48px;
  color: var(--coral);
  font-weight: 900;
}

.included-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.22rem;
}

.included-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.pathway {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f7fffb 0%, #e8f6f2 100%);
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.steps::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 46px;
  height: 2px;
  background: linear-gradient(90deg, rgba(8, 125, 139, 0.16), var(--teal), rgba(232, 111, 77, 0.4));
}

.step {
  position: relative;
  min-height: 248px;
  padding: 26px;
  border: 1px solid rgba(220, 233, 228, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.step span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 38px;
  border: 4px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 0 0 8px rgba(8, 125, 139, 0.1);
  font-weight: 900;
}

.hot-industries-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f7fffb 0%, #e8f6f2 100%);
}

.hot-industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.hot-industry-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(220, 233, 228, 0.92);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.72) 48%, rgba(255, 255, 255, 0.82) 100%),
    var(--industry-bg) center / cover no-repeat;
  box-shadow: var(--shadow-soft);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.hot-industry-card--1 {
  --industry-bg: url("assets/hot-industry-1.webp");
}

.hot-industry-card--2 {
  --industry-bg: url("assets/hot-industry-2.webp");
}

.hot-industry-card--3 {
  --industry-bg: url("assets/hot-industry-3.webp");
}

.hot-industry-card--4 {
  --industry-bg: url("assets/hot-industry-4.webp");
}

.hot-industry-card--5 {
  --industry-bg: url("assets/hot-industry-5.webp");
}

.hot-industry-card--6 {
  --industry-bg: url("assets/hot-industry-6.webp");
}

.hot-industry-card--7 {
  --industry-bg: url("assets/hot-industry-7.webp");
}

.hot-industry-card--8 {
  --industry-bg: url("assets/hot-industry-8.webp");
}

.hot-industry-card::before {
  content: "";
  position: absolute;
  top: 46px;
  left: 72px;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(8, 125, 139, 0.28), rgba(8, 125, 139, 0));
}

.hot-industry-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), #43b7a8, var(--coral));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.26s ease;
}

.hot-industry-card:hover {
  transform: translateY(-8px);
  border-color: rgba(8, 125, 139, 0.34);
  box-shadow: 0 28px 70px rgba(16, 40, 38, 0.14);
}

.hot-industry-card:hover::after {
  transform: scaleX(1);
}

.hot-industry-card span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border: 4px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 0 0 8px rgba(8, 125, 139, 0.1);
  font-weight: 900;
}

.hot-industry-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.16rem;
  line-height: 1.25;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.78);
}

.hot-industry-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.75;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
}

.hot-industry-card a {
  margin-top: auto;
  padding-top: 20px;
  color: var(--teal-dark);
  font-weight: 900;
}

.audience-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
  background:
    linear-gradient(rgba(11, 52, 47, 0.88), rgba(11, 52, 47, 0.9)),
    url("assets/hainan-hero.webp") center / cover fixed;
  color: var(--white);
}

.audience-section .section-kicker {
  color: #8ee1d5;
}

.audience-section h2 {
  color: var(--white);
}

.audience-copy p:last-child {
  color: rgba(255, 255, 255, 0.74);
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.audience-list span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 96px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  font-weight: 800;
}

.audience-list span::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -22px;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(142, 225, 213, 0.28);
  border-radius: 50%;
}

.team-section {
  background: var(--white);
}

.team-section .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.54fr);
  gap: clamp(22px, 5vw, 74px);
  align-items: end;
  max-width: none;
}

.team-section .section-heading p:last-child {
  margin-bottom: 4px;
  color: var(--muted);
}

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

.team-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(16, 40, 38, 0.14);
}

.team-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--aqua);
  filter: saturate(0.96) contrast(1.03);
}

.team-card div {
  padding: 19px;
}

.team-card h3 {
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 1.08rem;
}

.team-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(340px, 0.72fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: start;
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
  background: linear-gradient(135deg, #ffffff 0%, #eef8f5 100%);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(220, 233, 228, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-strong);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: rgba(8, 125, 139, 0.58);
  box-shadow: 0 0 0 4px rgba(8, 125, 139, 0.1);
}

.lead-form textarea {
  min-height: 124px;
  resize: vertical;
}

.lead-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.form-status.is-success {
  color: #18804b;
}

.form-status.is-error {
  color: #b3261e;
}

.resource-section {
  background: var(--paper);
}

.resource-section .section-heading p:last-child {
  color: var(--muted);
}

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

.resource-card {
  min-height: 196px;
  padding: 23px;
  border: 1px solid rgba(220, 233, 228, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 14px 38px rgba(16, 40, 38, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.resource-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 111, 77, 0.5);
  box-shadow: 0 24px 60px rgba(16, 40, 38, 0.12);
}

.resource-card span {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--coral);
  font-weight: 900;
}

.resource-card h3 {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 1.2rem;
}

.resource-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.social-strip {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 32px 20px 38px;
  background: var(--paper);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: #df2f25;
  font-weight: 900;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.social-link:hover {
  transform: translateY(-3px);
}

.social-link.xhs {
  font-size: 0.78rem;
}

.wechat-icon {
  position: relative;
  overflow: hidden;
}

.wechat-bubble {
  position: absolute;
  border-radius: 50%;
  background: var(--white);
}

.wechat-bubble::before,
.wechat-bubble::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #df2f25;
}

.wechat-bubble.main {
  width: 21px;
  height: 16px;
  left: 9px;
  top: 13px;
}

.wechat-bubble.main::before {
  left: 6px;
  top: 6px;
}

.wechat-bubble.main::after {
  right: 6px;
  top: 6px;
}

.wechat-bubble.small {
  width: 17px;
  height: 13px;
  right: 8px;
  bottom: 11px;
  box-shadow: 0 0 0 2px #df2f25;
}

.wechat-bubble.small::before {
  left: 5px;
  top: 5px;
}

.wechat-bubble.small::after {
  right: 5px;
  top: 5px;
}

.wechat-modal[hidden] {
  display: none;
}

.wechat-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 24px;
}

.wechat-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 16, 20, 0.56);
}

.wechat-dialog {
  position: relative;
  width: min(920px, 100%);
  padding: clamp(38px, 7vw, 76px) clamp(24px, 7vw, 82px);
  border-radius: 8px;
  background: var(--white);
  text-align: center;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.wechat-dialog h2 {
  margin-bottom: 28px;
  color: #df2f25;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 1;
}

.wechat-dialog p {
  margin-bottom: 28px;
  color: var(--ink);
  font-size: clamp(1rem, 2vw, 1.3rem);
}

.modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  font-size: 2.3rem;
  line-height: 1;
  cursor: pointer;
}

.qr-placeholder {
  display: inline-grid;
  place-items: center;
  width: min(230px, 70vw);
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fafafa;
}

.qr-placeholder img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.subpage-body {
  background: var(--paper);
}

.subpage-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.page-breadcrumb {
  padding: 18px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
}

.page-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.92rem;
}

.page-breadcrumb a,
.article-breadcrumb a {
  color: var(--muted);
  transition: color 160ms ease;
}

.page-breadcrumb a:hover,
.article-breadcrumb a:hover {
  color: var(--teal);
}

.page-breadcrumb [aria-current="page"] {
  color: var(--ink);
  font-weight: 800;
}

.breadcrumb-separator {
  color: rgba(15, 49, 46, 0.38);
  font-size: 1.1rem;
}

.back-home {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.subpage-hero {
  padding: clamp(58px, 9vw, 116px) clamp(20px, 5vw, 72px) clamp(42px, 7vw, 82px);
  background: linear-gradient(135deg, #ffffff 0%, #e8f6f2 100%);
}

.subpage-hero h1 {
  max-width: 900px;
}

.subpage-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.1rem;
}

.subpage-content {
  padding: clamp(36px, 5vw, 60px) clamp(20px, 5vw, 72px) clamp(58px, 8vw, 104px);
}

.insights-page,
.article-layout,
.admin-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(38px, 6vw, 72px) clamp(20px, 5vw, 72px) clamp(58px, 8vw, 104px);
}

.insights-main,
.article-main,
.admin-panel {
  min-width: 0;
}

.insight-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.insight-tabs button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.insight-tabs button.is-active {
  color: var(--white);
  border-color: var(--teal);
  background: var(--teal);
}

.insight-list {
  display: grid;
  gap: 14px;
}

.insight-row a {
  display: grid;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.insight-row a:hover {
  transform: translateY(-4px);
  border-color: rgba(8, 125, 139, 0.36);
  box-shadow: 0 24px 58px rgba(16, 40, 38, 0.12);
}

.insight-row span {
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--mint);
  font-size: 0.78rem;
  font-weight: 900;
}

.insight-row h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.25;
}

.insight-row p {
  margin-bottom: 0;
  color: var(--muted);
}

.insight-row time {
  color: #7a8b86;
  font-size: 0.9rem;
  font-weight: 800;
}

.insight-empty {
  padding: 24px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
}

.insights-aside,
.article-sidebar {
  display: grid;
  align-content: start;
  gap: 16px;
}

.sidebar-panel {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.sidebar-panel h2 {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 1.2rem;
}

.sidebar-panel > a,
.sidebar-links a {
  display: grid;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-weight: 800;
}

.sidebar-panel > a:last-child,
.sidebar-links a:last-child {
  border-bottom: 0;
}

.sidebar-links span {
  color: var(--muted);
  font-size: 0.88rem;
}

.cta-panel {
  color: var(--white);
  background: linear-gradient(135deg, var(--deep), var(--teal-dark));
}

.cta-panel h2,
.cta-panel p {
  color: var(--white);
}

.article-main {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.article-main h1 {
  max-width: 980px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--muted);
  font-weight: 800;
}

.article-meta span {
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--mint);
}

.article-summary {
  padding: 18px;
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  color: var(--text);
  background: #f2faf7;
  font-size: 1.05rem;
  font-weight: 700;
}

.article-body {
  margin-top: 28px;
  color: #2b4540;
  font-size: 1.05rem;
}

.article-body h2 {
  margin: 34px 0 12px;
  color: var(--ink);
  font-size: 1.55rem;
}

.article-body p {
  margin-bottom: 18px;
}

.article-source {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.article-source a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-download {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 16px;
  padding: 0 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal);
  font-weight: 900;
}

.content-engagement {
  display: grid;
  gap: 22px;
  margin-top: 38px;
  padding: 26px;
  border: 1px solid rgba(8, 125, 139, 0.2);
  border-radius: 8px;
  background: #f3faf8;
}

.engagement-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.75fr);
  gap: 24px;
  align-items: end;
}

.engagement-heading h2 {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.engagement-heading > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.engagement-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.rating-control,
.reaction-control,
.rating-stars {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.rating-control > span {
  color: var(--muted);
  font-size: 0.9rem;
}

.rating-stars button,
.reaction-control button {
  min-height: 42px;
  border: 1px solid rgba(8, 125, 139, 0.24);
  border-radius: 8px;
  background: #fff;
  color: var(--teal-dark);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.rating-stars button {
  width: 42px;
  padding: 0;
  color: #a6b7b2;
  font-size: 1.25rem;
}

.reaction-control button {
  padding: 0 14px;
}

.rating-stars button:hover,
.rating-stars button.is-selected,
.reaction-control button:hover,
.reaction-control button.is-selected {
  border-color: var(--teal);
  background: var(--teal);
  color: #fff;
  transform: translateY(-2px);
}

.rating-stars button:disabled,
.reaction-control button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.engagement-status {
  min-height: 22px;
  margin: 0;
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.content-navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.content-nav-link {
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.content-nav-link span {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.content-nav-link strong {
  align-self: end;
  line-height: 1.45;
}

.content-nav-link.is-next {
  text-align: right;
}

.content-nav-link:not(.is-empty):hover {
  border-color: rgba(8, 125, 139, 0.42);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.content-nav-link.is-empty {
  visibility: hidden;
}

.faq-answer-body p:first-child {
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 750;
}

.admin-page {
  grid-template-columns: minmax(0, 900px);
  justify-content: center;
}

.admin-panel {
  display: grid;
  gap: 26px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-strong);
}

.admin-panel h1 {
  max-width: 100%;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.admin-panel > div > p:last-child {
  color: var(--muted);
}

.admin-form {
  display: grid;
  gap: 16px;
}

.admin-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.admin-form textarea {
  min-height: 130px;
  resize: vertical;
}

.admin-form textarea[name="content"] {
  min-height: 260px;
}

.insights-hero-pro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: end;
  gap: clamp(28px, 6vw, 72px);
  overflow: hidden;
}

.insights-hero-pro::after {
  content: "";
  position: absolute;
  right: 5vw;
  bottom: -80px;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(8, 125, 139, 0.18), transparent 68%);
  pointer-events: none;
}

.insights-hero-copy,
.insights-hero-card {
  position: relative;
  z-index: 1;
}

.insights-hero-card {
  display: grid;
  gap: 10px;
  padding: 28px;
  border: 1px solid rgba(8, 125, 139, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.insights-hero-card span {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insights-hero-card strong {
  color: var(--ink);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.1;
}

.insights-hero-card p {
  margin: 0;
}

.insights-section-head {
  margin-bottom: 18px;
}

.insights-section-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.admin-body {
  min-height: 100vh;
}

.admin-page {
  grid-template-columns: minmax(0, 1180px);
}

.admin-panel {
  gap: 30px;
  border-color: rgba(8, 125, 139, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 248, 245, 0.86)),
    var(--white);
}

.admin-intro {
  max-width: 860px;
}

.admin-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

.admin-form {
  display: grid;
  gap: 18px;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.admin-form label {
  display: grid;
  gap: 9px;
}

.admin-form label > span {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
  min-height: 48px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(16, 40, 38, 0.05);
}

.admin-form textarea[name="summary"] {
  min-height: 104px;
}

.admin-form textarea[name="content"] {
  min-height: 280px;
}

.admin-form textarea[name="contentEn"] {
  min-height: 280px;
}

.admin-language-group {
  display: grid;
  gap: 18px;
  margin: 6px 0;
  padding: 24px;
  border: 1px solid rgba(8, 125, 139, 0.22);
  border-radius: 8px;
  background: rgba(236, 248, 245, 0.72);
}

.admin-language-group legend {
  padding: 0 8px;
  color: var(--teal-dark);
  font-size: 1rem;
  font-weight: 900;
}

.admin-language-group > p {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.admin-status-badge {
  display: inline-flex;
  margin-left: 6px;
  padding: 3px 7px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--mint);
  font-size: 0.72rem;
  font-weight: 900;
}

.admin-status-badge.is-draft {
  color: #8a4f00;
  background: #fff1d6;
}

.admin-insight-actions .button[aria-disabled="true"] {
  opacity: 0.48;
  pointer-events: none;
}

.admin-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.admin-actions .button {
  min-width: 180px;
}

.admin-tips {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(8, 125, 139, 0.18);
  border-radius: 8px;
  background: var(--deep);
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

.admin-tips h2,
.admin-tips .section-kicker {
  color: var(--white);
}

.admin-tips ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.admin-tips li {
  color: rgba(255, 255, 255, 0.84);
}

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

.content-card,
.faq-item,
.partner-card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.content-card h2,
.faq-item h2,
.partner-card h2 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.18rem;
}

.content-card p,
.faq-item p,
.partner-card p {
  color: var(--muted);
}

.faq-page-body {
  background:
    radial-gradient(circle at 82% 8%, rgba(169, 231, 224, 0.42), transparent 30%),
    linear-gradient(180deg, #f6fbf8 0%, #eef8f5 100%);
}

.faq-page {
  color: var(--ink);
}

.faq-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
  padding: clamp(92px, 12vw, 150px) clamp(20px, 5vw, 72px) clamp(56px, 8vw, 96px);
  border-bottom: 1px solid rgba(8, 125, 139, 0.12);
}

.faq-hero-copy {
  max-width: 920px;
}

.faq-hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.8rem, 6vw, 6.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.faq-hero-copy > p:last-child {
  max-width: 780px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.9;
}

.faq-hero-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 30px;
  border: 1px solid rgba(8, 125, 139, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 8%, rgba(169, 231, 224, 0.58), transparent 30%),
    rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.faq-hero-card::after {
  content: "";
  position: absolute;
  right: -58px;
  top: -58px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(8, 125, 139, 0.1);
}

.faq-hero-card span {
  display: block;
  color: var(--coral);
  font-size: 5.8rem;
  line-height: 0.9;
  font-weight: 950;
}

.faq-hero-card strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 1.45rem;
}

.faq-hero-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.8;
}

.faq-shell {
  padding: clamp(44px, 8vw, 96px) clamp(20px, 5vw, 72px) clamp(72px, 10vw, 130px);
}

.faq-toolbar {
  max-width: 1220px;
  margin: 0 auto 34px;
}

.faq-search {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(100%, 720px);
  min-height: 58px;
  padding: 0 22px;
  border: 1px solid rgba(8, 125, 139, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 40px rgba(16, 40, 38, 0.08);
}

.faq-search span {
  color: var(--teal);
  font-size: 1.15rem;
  font-weight: 900;
}

.faq-search input {
  width: 100%;
  min-height: 54px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}

.faq-search input::placeholder {
  color: rgba(15, 43, 40, 0.48);
}

.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.faq-tabs button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(8, 125, 139, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.faq-tabs button:hover,
.faq-tabs button.is-active {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
  max-width: 1220px;
  margin: 0 auto;
}

.faq-summary-card {
  grid-column: 2;
  grid-row: 1;
  position: sticky;
  top: 96px;
  padding: 26px;
  border: 1px solid rgba(8, 125, 139, 0.18);
  border-radius: 8px;
  background: var(--deep);
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

.faq-summary-card h2 {
  margin: 12px 0;
  color: var(--white);
  font-size: 1.6rem;
}

.faq-summary-card p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.faq-summary-card .button {
  width: 100%;
  min-width: 0;
  margin-top: 24px;
  padding: 10px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  line-height: 1.35;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
}

.faq-list {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  gap: 28px;
}

.faq-result-note {
  margin: 0;
  color: var(--teal-dark);
  font-weight: 900;
}

.faq-group {
  display: grid;
  gap: 12px;
}

.faq-group[hidden] {
  display: none;
}

.faq-group-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}

.faq-group-heading span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(8, 125, 139, 0.1);
  color: var(--teal);
  font-weight: 950;
}

.faq-group-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.faq-accordion-item {
  overflow: hidden;
  border: 1px solid rgba(8, 125, 139, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 46px rgba(16, 40, 38, 0.06);
}

.faq-accordion-item[hidden] {
  display: none;
}

.faq-question-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 62px;
  padding: 18px 22px;
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 950;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.faq-question-link:hover {
  border-color: rgba(8, 125, 139, 0.42);
  box-shadow: 0 20px 48px rgba(16, 40, 38, 0.1);
  transform: translateY(-2px);
}

.faq-question-title {
  min-width: 0;
  overflow-wrap: anywhere;
}

.faq-link-arrow {
  flex: 0 0 auto;
  color: var(--teal);
  font-size: 1.25rem;
  transition: transform 180ms ease;
}

.faq-question-link:hover .faq-link-arrow {
  transform: translateX(4px);
}

.faq-accordion-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 62px;
  padding: 18px 58px 18px 22px;
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 950;
  cursor: pointer;
  list-style: none;
}

.faq-accordion-item summary::-webkit-details-marker {
  display: none;
}

.faq-accordion-item summary::after {
  content: "v";
  position: absolute;
  right: 24px;
  top: 50%;
  color: var(--teal);
  font-size: 1.2rem;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}

.faq-accordion-item[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  padding: 0 22px 24px;
  color: var(--muted);
  line-height: 1.9;
}

.faq-answer p {
  margin: 0 0 12px;
}

.faq-answer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.faq-empty {
  padding: 28px;
  border: 1px dashed rgba(8, 125, 139, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.faq-empty strong {
  display: block;
  color: var(--ink);
  font-size: 1.25rem;
}

.faq-empty p {
  margin: 10px 0 20px;
  color: var(--muted);
}

.partner-logo {
  display: grid;
  place-items: center;
  height: 112px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--teal-dark);
  background: var(--mint);
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.76);
  background: #0b211e;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes imageFloat {
  0%,
  100% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.07) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes panelFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes railSheen {
  0%,
  42% {
    transform: translateX(-120%);
  }
  78%,
  100% {
    transform: translateX(320%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .hero,
  .intro-band,
  .audience-section,
  .team-section .section-heading,
  .contact-section,
  .insights-page,
  .article-layout,
  .insights-hero-pro,
  .admin-shell,
  .faq-hero,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .admin-tips,
  .faq-summary-card {
    position: static;
  }

  .faq-summary-card,
  .faq-list {
    grid-column: auto;
    grid-row: auto;
  }

  .hero {
    min-height: auto;
  }

  .market-rail,
  .service-grid,
  .hot-industry-grid,
  .included-grid,
  .steps,
  .team-grid,
  .resource-grid,
  .content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-hero-card {
    min-height: 210px;
  }

  .steps::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .top-announcement {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 10px 20px;
  }

  .brand {
    min-width: auto;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .header-actions {
    margin-left: auto;
  }

  .primary-link {
    display: none;
  }

  .hero {
    padding-top: 38px;
    overflow: visible;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .eyebrow {
    max-width: calc(100vw - 48px);
    font-size: 0.68rem;
    word-break: break-all;
  }

  h1 {
    max-width: min(100%, 280px);
    font-size: clamp(1.52rem, 6.8vw, 1.72rem);
    line-height: 1.12;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .hero-text {
    max-width: min(100%, 300px);
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
    max-width: calc(100vw - 48px);
  }

  .hero-proof span {
    justify-content: flex-start;
    width: 100%;
  }

  .hero-metrics,
  .market-rail,
  .service-grid,
  .hot-industry-grid,
  .included-grid,
  .steps,
  .audience-list,
  .team-grid,
  .resource-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .subpage-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 390px;
  }

  .service-card,
  .step {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }

  .insights-page,
  .article-layout,
  .admin-page {
    padding-right: 20px;
    padding-left: 20px;
  }

  .faq-hero,
  .faq-shell {
    padding-right: 20px;
    padding-left: 20px;
  }

  .faq-hero h1 {
    max-width: 100%;
    font-size: clamp(2.4rem, 12vw, 4.2rem);
    word-break: keep-all;
  }

  .faq-tabs {
    gap: 8px;
  }

  .faq-tabs button {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.9rem;
  }

  .faq-accordion-item summary {
    min-height: 56px;
    padding: 16px 46px 16px 16px;
    font-size: 0.98rem;
  }

  .faq-question-link {
    min-height: 56px;
    padding: 16px;
    font-size: 0.98rem;
  }

  .faq-answer {
    padding: 0 16px 20px;
  }

  .engagement-heading,
  .content-navigation {
    grid-template-columns: 1fr;
  }

  .engagement-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .rating-control {
    display: grid;
    grid-template-columns: 1fr;
  }

  .rating-stars {
    flex-wrap: nowrap;
  }

  .reaction-control button {
    flex: 1 1 140px;
  }

  .content-nav-link.is-next {
    text-align: left;
  }

  .content-nav-link.is-empty {
    display: none;
  }
}

.admin-body {
  min-width: 320px;
  min-height: 100vh;
  color: var(--ink);
  background: #f3f7f6;
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 12px 28px;
  border-bottom: 1px solid #d8e5e1;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(15, 50, 45, 0.05);
  backdrop-filter: blur(14px);
}

.admin-topbar .brand {
  min-width: 0;
}

.admin-topbar-copy {
  display: grid;
  gap: 2px;
}

.admin-topbar-copy strong {
  font-size: 1rem;
}

.admin-topbar-copy span {
  color: var(--muted);
  font-size: 0.78rem;
}

.admin-topbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-session-user {
  margin-right: 4px;
  color: var(--muted);
  font-size: 0.76rem;
  white-space: nowrap;
}

.admin-console {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  min-height: calc(100vh - 78px);
}

.admin-sidebar {
  position: sticky;
  top: 78px;
  align-self: start;
  display: grid;
  align-content: start;
  min-height: calc(100vh - 78px);
  padding: 32px 20px;
  color: #d8e9e5;
  background: #0b302c;
}

.admin-sidebar-label {
  margin: 0 12px 14px;
  color: #8fb7ae;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.admin-sidebar > a {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  min-height: 50px;
  padding: 0 12px;
  border-left: 2px solid transparent;
  border-radius: 0 6px 6px 0;
  color: #d8e9e5;
  font-size: 0.9rem;
}

.admin-sidebar > a span {
  color: #83aaa2;
  font-size: 0.72rem;
  font-weight: 900;
}

.admin-sidebar > a:hover,
.admin-sidebar > a:focus-visible,
.admin-sidebar > a.is-active {
  border-left-color: #f07957;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.admin-sidebar-note {
  display: grid;
  gap: 8px;
  margin-top: 44px;
  padding: 18px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.admin-sidebar-note span {
  color: #80b0a5;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-sidebar-note p {
  margin: 0;
  color: #a9c7c0;
  font-size: 0.78rem;
  line-height: 1.65;
}

.admin-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
  gap: 24px;
  width: min(1500px, 100%);
  padding: 32px clamp(22px, 3vw, 46px) 70px;
}

.admin-editor-form {
  display: grid;
  grid-column: 1;
  gap: 24px;
  min-width: 0;
}

.admin-workspace-card,
.admin-publish-panel {
  border: 1px solid #d9e6e2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(18, 63, 56, 0.07);
}

.admin-workspace-card {
  padding: clamp(22px, 3vw, 34px);
}

.admin-card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.admin-card-heading h1,
.admin-card-heading h2,
.admin-publish-panel h2 {
  max-width: none;
  margin: 3px 0 0;
  color: var(--ink);
  letter-spacing: 0;
}

.admin-card-heading h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.admin-card-heading h2,
.admin-publish-panel h2 {
  font-size: 1.55rem;
}

.compact-heading {
  align-items: center;
  margin-bottom: 22px;
}

.admin-editing-label,
.admin-limit-note {
  flex: 0 0 auto;
  padding: 7px 11px;
  border: 1px solid #cce0db;
  border-radius: 999px;
  color: var(--teal-dark);
  background: #f3faf8;
  font-size: 0.75rem;
  font-weight: 900;
}

.admin-editor-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 1px solid #dfeae7;
}

.admin-editor-tabs button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.admin-editor-tabs button:hover,
.admin-editor-tabs button:focus-visible,
.admin-editor-tabs button.is-active {
  color: var(--teal-dark);
  border-color: #c9dfda;
  background: #edf7f4;
}

.admin-editor-language {
  display: grid;
  gap: 20px;
}

.admin-editor-language[hidden] {
  display: none;
}

.admin-translation-banner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 15px 17px;
  border: 1px solid #cfe2dd;
  border-radius: 8px;
  background: #f0f8f6;
}

.admin-translation-banner > span {
  padding: 7px 10px;
  border-radius: 6px;
  color: #fff;
  background: var(--teal);
  font-size: 0.74rem;
  font-weight: 900;
}

.admin-translation-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.admin-translation-banner strong {
  display: block;
  color: var(--ink);
}

.admin-form label,
.admin-publish-fields label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
}

.admin-form label > span,
.admin-publish-fields label > span:first-child,
.admin-field-label > span {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.admin-form label b,
.admin-field-label b {
  color: #d4523f;
}

.admin-form label small,
.admin-field-label small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 650;
}

.admin-form input,
.admin-form select,
.admin-form textarea,
.admin-publish-fields input,
.admin-publish-fields select,
.admin-library-tools input,
.admin-library-tools select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #cfded9;
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  box-shadow: none;
  font: inherit;
}

.admin-form textarea {
  min-height: 104px;
  resize: vertical;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus,
.admin-publish-fields input:focus,
.admin-publish-fields select:focus,
.admin-library-tools input:focus,
.admin-library-tools select:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(8, 125, 139, 0.1);
}

.admin-field-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.admin-rich-editor > textarea {
  min-height: 340px;
}

.admin-rich-editor .ql-toolbar.ql-snow {
  position: sticky;
  top: 78px;
  z-index: 4;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3px;
  padding: 10px 12px;
  border-color: #cfded9;
  border-radius: 6px 6px 0 0;
  background: #f7faf9;
}

.admin-rich-editor .ql-container.ql-snow {
  min-height: 430px;
  border-color: #cfded9;
  border-radius: 0 0 6px 6px;
  font-family: inherit;
  font-size: 1rem;
}

.admin-rich-editor .ql-editor {
  min-height: 430px;
  padding: 24px;
  color: #29433e;
  line-height: 1.8;
}

.admin-rich-editor .ql-editor h2,
.admin-rich-editor .ql-editor h3 {
  color: var(--ink);
  letter-spacing: 0;
}

.admin-rich-editor .ql-editor img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 22px auto;
  border-radius: 6px;
}

.admin-file-drop {
  position: relative;
  display: grid !important;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 2px 16px !important;
  min-height: 116px;
  padding: 22px;
  border: 1px dashed #9dbdb5;
  border-radius: 8px;
  background: #f5faf8;
  cursor: pointer;
}

.admin-file-drop:hover {
  border-color: var(--teal);
  background: #edf8f5;
}

.admin-file-drop input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.admin-file-icon {
  display: grid;
  grid-row: 1 / 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff !important;
  background: var(--teal);
  font-size: 1.5rem !important;
  place-items: center;
}

.admin-file-drop strong,
.admin-file-drop small {
  grid-column: 2;
}

.admin-file-drop small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 650;
}

.admin-attachment-preview,
.admin-existing-attachments {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.admin-new-file,
.admin-existing-file {
  display: flex !important;
  align-items: center;
  gap: 12px !important;
  min-height: 52px;
  padding: 10px 14px;
  border: 1px solid #dae7e3;
  border-radius: 6px;
  background: #fff;
}

.admin-new-file {
  justify-content: space-between;
}

.admin-new-file span,
.admin-existing-file small {
  color: var(--muted);
  font-size: 0.76rem;
}

.admin-existing-attachments h3,
.admin-existing-attachments p {
  margin: 0;
}

.admin-existing-attachments p {
  color: var(--muted);
  font-size: 0.8rem;
}

.admin-existing-attachments > div {
  display: grid;
  gap: 8px;
}

.admin-existing-file input {
  flex: 0 0 auto;
  width: 18px;
  min-height: 18px;
  accent-color: var(--teal);
}

.admin-existing-file > span:nth-child(2) {
  display: grid;
  flex: 1;
  gap: 2px;
}

.admin-file-action {
  color: var(--teal-dark) !important;
  font-size: 0.76rem !important;
  font-weight: 900 !important;
}

.admin-publish-panel {
  position: sticky;
  top: 102px;
  grid-column: 2;
  grid-row: 1;
  display: grid;
  gap: 18px;
  max-height: calc(100vh - 126px);
  overflow-y: auto;
  padding: 24px;
}

.admin-publish-fields {
  display: grid;
  gap: 15px;
}

.admin-publish-fields .password-field {
  display: block;
}

.admin-publish-fields .password-toggle {
  top: 50%;
  transform: translateY(-50%);
}

.admin-publish-summary {
  display: grid;
  gap: 5px;
  padding: 14px;
  border-left: 3px solid var(--teal);
  background: #f1f8f6;
}

.admin-publish-summary span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.admin-publish-summary strong {
  font-size: 0.82rem;
  line-height: 1.55;
}

.admin-publish-summary.is-error {
  border-left-color: #d4523f;
  background: #fff3f0;
}

.admin-publish-summary.is-error strong {
  color: #b43d2d;
}

.admin-submit,
.admin-cancel {
  width: 100%;
}

.admin-library {
  grid-column: 1;
  grid-row: 2;
  margin-top: 4px;
  padding-top: clamp(22px, 3vw, 34px);
  border-top: 1px solid #d9e6e2;
}

.admin-library-head h2 {
  font-size: 1.75rem;
}

.admin-library-tools {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 180px;
  gap: 12px;
  margin-top: 20px;
}

.admin-library-search {
  position: relative;
  display: block;
}

.admin-library-search > span {
  position: absolute;
  top: 50%;
  left: 15px;
  z-index: 1;
  color: var(--teal-dark) !important;
  transform: translateY(-50%);
}

.admin-library-search input {
  padding-left: 40px;
}

.admin-library-metrics {
  display: flex;
  gap: 28px;
  margin-top: 18px;
  padding: 14px 0;
  border-top: 1px solid #e2ebe8;
  border-bottom: 1px solid #e2ebe8;
}

.admin-library-metrics span {
  display: flex;
  align-items: baseline;
  gap: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.admin-library-metrics strong {
  color: var(--ink);
  font-size: 1.3rem;
}

.admin-insight-list {
  margin-top: 0;
  border-top: 0;
}

.admin-insight-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  padding: 20px 4px;
}

.admin-insight-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
}

.admin-insight-actions .button {
  width: 100%;
}

.admin-insight-copy {
  min-width: 0;
}

.admin-insight-item h3 {
  margin-top: 6px;
  font-size: 1.08rem;
  overflow-wrap: anywhere;
}

.admin-insight-details {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.admin-library-empty {
  margin: 0;
  padding: 34px 0;
  color: var(--muted);
  text-align: center;
}

.article-body h3,
.article-body h4 {
  margin: 28px 0 10px;
  color: var(--ink);
  letter-spacing: 0;
}

.article-body h3 {
  font-size: 1.28rem;
}

.article-body ul,
.article-body ol {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding-left: 26px;
}

.article-body blockquote {
  margin: 24px 0;
  padding: 16px 20px;
  border-left: 4px solid var(--teal);
  color: #31544d;
  background: #f0f8f6;
}

.article-body a {
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-body img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 28px auto;
  border-radius: 6px;
  box-shadow: 0 18px 44px rgba(14, 55, 49, 0.12);
}

.article-body .ql-align-center {
  text-align: center;
}

.article-body .ql-align-right {
  text-align: right;
}

.article-body .ql-align-justify {
  text-align: justify;
}

.article-attachments {
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.article-attachments-heading h2 {
  margin: 2px 0 16px;
  color: var(--ink);
  font-size: 1.4rem;
}

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

.article-attachment-list .article-download {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-width: 0;
  min-height: 70px;
  margin: 0;
  padding: 12px 14px;
  color: var(--ink);
  background: #f2f8f6;
  border: 1px solid #d2e4df;
}

.article-download-icon {
  display: grid;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  place-items: center;
}

.article-attachment-list .article-download > span:last-child {
  display: grid;
  min-width: 0;
}

.article-attachment-list .article-download strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-attachment-list .article-download small {
  color: var(--muted);
  font-size: 0.72rem;
}

@media (max-width: 1120px) {
  .admin-topbar {
    grid-template-columns: minmax(190px, auto) 1fr;
  }

  .admin-topbar-copy {
    display: none;
  }

  .admin-console {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .admin-sidebar {
    padding: 28px 10px;
  }

  .admin-sidebar-label,
  .admin-sidebar > a strong,
  .admin-sidebar-note {
    display: none;
  }

  .admin-sidebar > a {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 0;
  }
}

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

  .admin-editor-form,
  .admin-publish-panel,
  .admin-library {
    grid-column: 1;
  }

  .admin-publish-panel {
    position: static;
    grid-row: auto;
    max-height: none;
    overflow: visible;
  }

  .admin-library {
    grid-row: auto;
  }

  .admin-rich-editor .ql-toolbar.ql-snow {
    top: 0;
  }
}

.admin-login-body {
  min-width: 320px;
  min-height: 100vh;
  color: var(--ink);
  background: #edf5f3;
}

.admin-login-shell {
  display: grid;
  min-height: 100vh;
  padding: 30px 18px;
  background:
    linear-gradient(90deg, rgba(237, 245, 243, 0.96) 0 48%, rgba(237, 245, 243, 0.72) 70%),
    url("/assets/why-hainan-bg.webp") center / cover no-repeat;
  place-items: center;
}

.admin-login-panel {
  display: grid;
  gap: 28px;
  width: min(460px, 100%);
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid #ccdfda;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(13, 56, 49, 0.16);
}

.admin-login-copy h1 {
  margin: 5px 0 8px;
  color: var(--ink);
  font-size: clamp(2rem, 7vw, 2.7rem);
  letter-spacing: 0;
}

.admin-login-copy > p:last-child,
.admin-login-security {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.admin-login-form {
  display: grid;
  gap: 18px;
}

.admin-login-form label {
  display: grid;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 900;
}

.admin-login-form input {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #cbdcd7;
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.admin-login-form input:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(8, 125, 139, 0.1);
}

.admin-login-form .password-toggle {
  top: 50%;
  right: 6px;
  width: 54px;
  height: 38px;
  transform: translateY(-50%);
  border-radius: 6px;
  font-size: 0.74rem;
  font-weight: 900;
}

.admin-login-form .password-field input {
  padding-right: 68px;
}

.admin-login-form .button {
  width: 100%;
}

.admin-login-security {
  padding-top: 18px;
  border-top: 1px solid #dce8e5;
  font-size: 0.76rem;
}

@media (max-width: 700px) {
  .admin-topbar {
    position: static;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 18px;
  }

  .admin-topbar-actions {
    overflow-x: auto;
  }

  .admin-console {
    display: block;
  }

  .admin-sidebar {
    position: static;
    display: flex;
    min-height: 0;
    overflow-x: auto;
    padding: 8px 14px;
  }

  .admin-sidebar > a {
    flex: 0 0 48px;
    min-height: 42px;
    border-left: 0;
    border-bottom: 2px solid transparent;
    border-radius: 6px 6px 0 0;
  }

  .admin-sidebar > a:hover,
  .admin-sidebar > a:focus-visible,
  .admin-sidebar > a.is-active {
    border-left-color: transparent;
    border-bottom-color: #f07957;
  }

  .admin-workspace {
    padding: 18px 14px 50px;
  }

  .admin-workspace-card,
  .admin-publish-panel {
    padding: 20px 16px;
  }

  .admin-card-heading,
  .admin-library-head,
  .admin-insight-item {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-form-grid,
  .admin-library-tools,
  .article-attachment-list {
    grid-template-columns: 1fr;
  }

  .admin-field-label {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-rich-editor .ql-container.ql-snow,
  .admin-rich-editor .ql-editor {
    min-height: 360px;
  }

  .admin-library-metrics {
    justify-content: space-between;
    gap: 10px;
  }

  .admin-insight-item {
    display: flex;
  }

  .admin-insight-actions {
    width: 100%;
  }

  .admin-insight-actions .button {
    min-width: 0;
    padding-right: 8px;
    padding-left: 8px;
  }
}

/* ==========================================================================
   Hainan Subpage Layout & Design System
   ========================================================================== */

.hainan-page {
  width: 100%;
}

.hainan-hero-section {
  position: relative;
  min-height: min(920px, calc(100vh - 76px));
  padding: clamp(70px, 9vh, 112px) clamp(20px, 4.6vw, 72px) clamp(64px, 9vh, 104px);
  background: #f6faff;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hainan-hero-bg-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
  z-index: 1;
  opacity: 1;
}

.hainan-hero-container {
  width: 100%;
  max-width: none;
  min-height: inherit;
  display: block;
  position: relative;
  z-index: 2;
}

.hainan-hero-left {
  display: flex;
  flex-direction: column;
  width: min(100%, 590px);
}

.hainan-kicker-tag {
  color: var(--teal-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.hainan-page h1,
.hainan-page h2,
.hainan-page h3,
.hainan-page h4 {
  word-break: keep-all !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  max-width: none !important;
}

.hainan-hero-title {
  color: var(--ink);
  font-size: clamp(3rem, 5vw, 4.7rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 22px;
}

.hainan-hero-intro {
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 12px;
}

.hainan-divider {
  height: 2px;
  width: 54px;
  background: var(--teal);
  margin: 22px 0;
  border: none;
}

.hainan-hero-features {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 38px;
}

.hainan-feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.hainan-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  color: var(--teal);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(16, 40, 38, 0.04);
}

.hainan-feature-item h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px 0;
}

.hainan-feature-item p {
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.45;
  margin: 0;
}

.hainan-hero-buttons {
  display: flex;
  gap: 18px;
  margin-bottom: 40px;
}

.hainan-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
  border-radius: 8px;
  padding: 15px 32px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(8, 125, 139, 0.25);
}

.hainan-btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(8, 125, 139, 0.35);
}

.hainan-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--teal-dark);
  border: 2px solid var(--teal-dark);
  font-weight: 700;
  border-radius: 8px;
  padding: 13px 30px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.hainan-btn-secondary:hover {
  background: rgba(8, 125, 139, 0.05);
  transform: translateY(-2px);
}

.hainan-hero-stats {
  display: flex;
  gap: 44px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.hainan-stat-box {
  display: flex;
  flex-direction: column;
}

.hainan-stat-num {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--teal-dark);
  line-height: 1;
  margin-bottom: 6px;
}

.hainan-stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

.hainan-hero-right {
  display: none;
}

.hainan-floating-panel {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120%;
  max-width: 620px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-strong);
  padding: 20px 16px;
  border-radius: 18px;
  z-index: 10;
}

.hainan-panel-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hainan-panel-col .panel-icon {
  color: var(--teal);
  margin-bottom: 8px;
}

.hainan-panel-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 4px 0;
}

.hainan-panel-col p {
  font-size: 0.74rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.25;
  font-weight: 500;
}

/* Container & Typography Setup */
.hainan-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hainan-section-header {
  margin-bottom: 56px;
  text-align: center;
}

.hainan-section-title {
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}

.hainan-section-title-line {
  height: 3px;
  width: 56px;
  background: var(--teal);
  margin: 14px auto 0;
  border-radius: 2px;
}

/* Strategic Value Deep Dive Section */
.hainan-strat-section {
  padding: 140px 0 90px;
  background: var(--paper);
}

.hainan-strat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.hainan-strat-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 48px 36px 40px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hainan-strat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
  border-color: var(--teal);
}

.hainan-strat-card .card-num {
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(8, 125, 139, 0.05);
  position: absolute;
  top: 8px;
  right: 24px;
  line-height: 1;
  pointer-events: none;
}

.hainan-strat-card h3 {
  font-size: 1.32rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 18px 0;
  line-height: 1.35;
}

.hainan-strat-card p {
  font-size: 0.94rem;
  color: var(--text);
  line-height: 1.65;
  margin: 0;
  text-align: justify;
}

/* Core Policy Section */
.hainan-policy-section {
  padding: 96px 0;
  background: var(--white);
}

.hainan-policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.hainan-policy-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.hainan-policy-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-soft);
}

.hainan-policy-card .card-icon-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  color: var(--teal);
}

.hainan-policy-card .card-icon-header h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0;
}

.policy-sub-block {
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(8, 125, 139, 0.08);
  padding-bottom: 18px;
}

.policy-sub-block:last-of-type {
  margin-bottom: 0;
  border: none;
  padding-bottom: 0;
}

.policy-sub-block h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin: 0 0 8px 0;
}

.policy-sub-block p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.55;
  margin: 0;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.policy-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.5;
}

.policy-list li::before {
  content: "•";
  color: var(--teal);
  font-weight: 800;
  font-size: 1.3rem;
  position: absolute;
  left: 2px;
  top: -2px;
}

/* Industries Section */
.hainan-industries-section {
  padding: 96px 0;
  background: var(--paper);
}

.hainan-ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.hainan-ind-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.hainan-ind-card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.ind-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--mint);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hainan-ind-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

/* Services Section */
.hainan-services-section {
  padding: 96px 0;
  background: var(--white);
}

.hainan-serv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.hainan-serv-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.25s ease;
}

.hainan-serv-item:hover {
  background: var(--white);
  border-color: var(--teal);
}

.serv-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.hainan-cta-box {
  background: linear-gradient(135deg, var(--deep) 0%, var(--teal-dark) 100%);
  color: var(--white);
  border-radius: 20px;
  padding: 60px 48px;
  text-align: center;
  box-shadow: var(--shadow-strong);
}

.hainan-cta-box h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 14px 0;
}

.hainan-cta-box p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 32px 0;
}

/* Responsive Overrides for Hainan Subpage */
@media (max-width: 1200px) {
  .hainan-floating-panel {
    position: static;
    width: 100%;
    max-width: none;
    margin-top: 36px;
    padding: 20px 14px;
  }
}

@media (max-width: 1024px) {
  .hainan-hero-bg-map {
    width: 100%;
    opacity: 0.12;
    object-position: center;
  }
  .hainan-hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hainan-hero-right {
    margin-top: 20px;
    min-height: auto;
  }
  .hainan-floating-panel {
    position: static;
    margin-top: 36px;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    max-width: none;
  }
  .hainan-strat-grid,
  .hainan-policy-grid,
  .hainan-ind-grid,
  .hainan-serv-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .hainan-hero-section {
    padding: 48px 20px 64px;
  }
  .hainan-hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  .hainan-hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }
  .hainan-floating-panel {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }
  .hainan-strat-grid,
  .hainan-policy-grid,
  .hainan-ind-grid,
  .hainan-serv-grid {
    grid-template-columns: 1fr;
  }
  .hainan-cta-box {
    padding: 40px 24px;
  }
}


/* 404 page */
.not-found-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 18%, rgba(215, 241, 238, 0.9), transparent 34%),
    radial-gradient(circle at 82% 78%, rgba(232, 111, 77, 0.12), transparent 32%),
    var(--paper);
}

.not-found-header {
  position: relative;
}

.not-found-main {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 156px);
  padding: clamp(48px, 8vw, 96px) 20px;
}

.not-found-card {
  width: min(760px, 100%);
  padding: clamp(34px, 6vw, 64px);
  border: 1px solid rgba(220, 233, 228, 0.95);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-strong);
  text-align: center;
  backdrop-filter: blur(18px);
}

.not-found-eyebrow {
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.not-found-code {
  margin-bottom: 10px;
  color: var(--teal);
  font-size: clamp(5.5rem, 18vw, 10rem);
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: -0.07em;
  text-shadow: 0 18px 38px rgba(8, 125, 139, 0.16);
}

.not-found-card h1 {
  max-width: none;
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.12;
  word-break: normal;
}

.not-found-copy,
.not-found-copy-en {
  max-width: 590px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  line-height: 1.75;
}

.not-found-copy {
  margin-bottom: 4px;
}

.not-found-copy-en {
  margin-bottom: 28px;
  font-size: 0.92rem;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.not-found-help {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.9rem;
}

.not-found-help a {
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 760px) {
  .not-found-header .main-nav {
    display: none;
  }

  .not-found-header .header-actions {
    display: none;
  }

  .not-found-main {
    min-height: calc(100vh - 130px);
    padding: 32px 16px;
  }

  .not-found-card {
    border-radius: 16px;
  }
}

.service-detail-page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.service-detail-hero {
  max-width: 880px;
  padding: 32px 0 72px;
}

.service-detail-hero h1 {
  max-width: 860px;
  margin: 18px 0 22px;
  font-size: clamp(2.6rem, 5.2vw, 4.8rem);
  line-height: 1.06;
}

.service-detail-lead {
  max-width: 760px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.85;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 18px;
}

.service-detail-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.service-detail-panel h2,
.service-process-section h2,
.service-faq-section h2,
.service-related-section h2 {
  margin: 8px 0 18px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.service-detail-panel > p:last-child {
  color: var(--muted);
  line-height: 1.8;
}

.service-detail-audience {
  background: var(--deep-green);
  color: #fff;
}

.service-detail-audience .section-kicker,
.service-detail-audience > p:last-child {
  color: rgba(255, 255, 255, 0.78);
}

.service-check-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.65;
}

.service-check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--teal);
  font-weight: 900;
  content: "\2713";
}

.service-process-section,
.service-faq-section,
.service-related-section {
  padding-top: 76px;
}

.service-process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-process-list li {
  min-height: 190px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.service-process-list span,
.service-related-grid span {
  display: block;
  margin-bottom: 30px;
  color: var(--coral);
  font-weight: 900;
}

.service-process-list p {
  color: var(--ink);
  font-weight: 750;
  line-height: 1.7;
}

.service-faq-list {
  display: grid;
  gap: 10px;
}

.service-faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.service-faq-list summary {
  padding: 20px 54px 20px 22px;
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
}

.service-faq-list details p {
  max-width: 900px;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.8;
}

.service-disclaimer {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.service-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.service-related-grid a {
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-related-grid a:hover {
  transform: translateY(-4px);
  border-color: rgba(8, 125, 139, 0.45);
  box-shadow: var(--shadow-soft);
}

@media (max-width: 900px) {
  .service-detail-grid,
  .service-process-list {
    grid-template-columns: 1fr;
  }

  .service-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-process-list li {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .service-detail-page {
    width: min(100% - 28px, 1180px);
    padding: 38px 0 64px;
  }

  .service-detail-hero {
    padding-bottom: 48px;
  }

  .service-detail-hero h1 {
    font-size: 2.45rem;
  }

  .service-detail-panel,
  .service-process-list li {
    padding: 24px;
  }

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