:root {
  --ink: #10221d;
  --muted: #65756f;
  --paper: #f5f7f2;
  --lime: #d8f05d;
  --green: #17614c;
  --line: #dce4de;
}

.starter-business {
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  background: #fff;
}

.starter-business * {
  box-sizing: border-box;
}

.site-shell {
  width: min(1160px, calc(100% - 42px));
  margin-inline: auto;
}

/* ---------- 头部与导航 ---------- */

.site-header {
  position: relative;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-decoration: none;
}

.site-nav > ul {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav li {
  position: relative;
}

.site-nav a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--green);
}

.site-nav .nav-active > a {
  color: var(--green);
}

.site-nav .nav-submenu {
  position: absolute;
  top: 100%;
  left: -14px;
  z-index: 30;
  min-width: 200px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(16, 34, 29, 0.1);
  display: none;
}

.site-nav li:hover > .nav-submenu,
.site-nav li:focus-within > .nav-submenu {
  display: block;
}

.site-nav .nav-submenu a {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
}

.site-nav .nav-submenu a:hover {
  background: var(--paper);
}

.site-account {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-account a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-account a:hover {
  color: var(--green);
}

.site-account .site-account-cta {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink) !important;
  font-weight: 800;
}

/* ---------- 区块与版式 ---------- */

.hero-section {
  min-height: 650px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f6f8f3 0%, #edf3ed 65%, #e6efdf 100%);
  overflow: hidden;
}

.hero-section .site-shell {
  position: relative;
  padding-block: 100px;
}

.hero-section .site-shell:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 46% 54% 61% 39%;
  right: -70px;
  top: 65px;
  background: var(--lime);
  opacity: 0.74;
  filter: blur(1px);
  transform: rotate(16deg);
  z-index: 0;
}

.hero-section .ccm-block-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.starter-business h1 {
  max-width: 850px;
  margin: 0 0 22px;
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  word-break: break-word;
}

.starter-business h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.starter-business h3 {
  font-size: 23px;
  letter-spacing: -0.025em;
}

.hero-lead {
  max-width: 680px;
  color: #485b54;
  font-size: 21px;
  line-height: 1.6;
}

.site-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 13px 20px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff !important;
  font-weight: 800;
  text-decoration: none;
}

.site-button:hover {
  transform: translateY(-1px);
}

.content-section,
.story-section,
.cta-section {
  padding-block: 108px;
}

.story-section {
  background: var(--ink);
  color: #fff;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.story-grid p {
  color: #c8d3cf;
}

.story-grid strong {
  color: var(--lime);
}

.story-section .ccm-block-content {
  max-width: 1000px;
  margin: auto;
}

.cta-section {
  text-align: center;
  background: var(--lime);
}

.cta-section .ccm-block-content {
  max-width: 800px;
  margin: auto;
}

.site-button.light {
  background: #fff;
  color: var(--ink) !important;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 52px;
}

.section-heading > p:not(.eyebrow) {
  color: var(--muted);
}

/* ---------- 内容页通用（关于/服务/资讯/联系） ---------- */

.body-copy {
  max-width: 760px;
  color: #485b54;
}

.body-copy p + p {
  margin-top: 16px;
}

.body-copy p {
  margin-top: 0;
  margin-bottom: 16px;
}

.body-copy p:last-child {
  margin-bottom: 0;
}

.eyebrow + h2 {
  margin-top: 2px;
}

.body-copy strong {
  color: var(--green);
}

.body-copy ul {
  padding-left: 20px;
}

/* ---------- 服务卡片 ---------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.feature-grid article > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--lime);
  font-size: 13px;
  font-weight: 850;
}

.feature-grid article p {
  color: var(--muted);
}

/* ---------- 案例网格 ---------- */

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.case-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.case-grid article > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--paper);
  font-size: 13px;
  font-weight: 850;
  color: var(--green);
}

.case-grid article p {
  color: var(--muted);
}

/* ---------- 联系页 ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.contact-note {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  color: var(--muted);
}

.contact-note strong {
  color: var(--green);
}

.contact-note p {
  margin: 0 0 12px;
}

/* ---------- 询盘表单（核心 form 区块） ---------- */

.starter-business .ccm-block-form {
  max-width: 620px;
  display: grid;
  gap: 16px;
}

.starter-business .ccm-block-form .form-group {
  margin: 0;
}

.starter-business .ccm-block-form input[type="text"],
.starter-business .ccm-block-form input[type="email"],
.starter-business .ccm-block-form input[type="tel"],
.starter-business .ccm-block-form textarea {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.starter-business .ccm-block-form input:focus,
.starter-business .ccm-block-form textarea:focus {
  outline: 2px solid var(--lime);
  outline-offset: 1px;
  border-color: var(--green);
}

.starter-business .ccm-block-form .btn-primary,
.starter-business .ccm-block-form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

/* ---------- 资讯列表（page_list 区块） ---------- */

.ccm-block-page-list-page-entry {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.ccm-block-page-list-page-entry:first-of-type {
  border-top: 1px solid var(--line);
  margin-top: 8px;
}

.ccm-block-page-list-title {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 6px;
}

.ccm-block-page-list-title a {
  color: var(--ink);
  text-decoration: none;
}

.ccm-block-page-list-date {
  color: var(--muted);
  font-size: 13px;
}

.ccm-block-page-list-description {
  color: var(--muted);
  margin-top: 8px;
}

.ccm-pagination, .pagination {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 24px 0 0;
}

.ccm-pagination, .pagination a,
.ccm-pagination, .pagination span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.ccm-pagination, .pagination .ccm-page-list-active {
  background: var(--lime);
}

/* ---------- 询盘管理页（single page /inquiries） ---------- */

.inquiries {
  max-width: 760px;
  margin: 0 auto;
}

.inquiry-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  margin-top: 28px;
}

.inquiry-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.inquiry-head h3 {
  margin: 0;
}

.inquiry-date {
  color: var(--muted);
  font-size: 13px;
}

.inquiry-fields {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 8px 16px;
  margin: 18px 0;
}

.inquiry-fields dt {
  color: var(--muted);
  font-weight: 700;
}

.inquiry-fields dd {
  margin: 0;
  word-break: break-word;
}

.inquiry-delete {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
}

.inquiry-delete:hover {
  color: #b3261e;
  border-color: #e3b9b6;
}

/* ---------- 页脚 ---------- */

.site-footer {
  padding-block: 54px;
  background: #0a1713;
  color: #fff;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
}

.site-footer p {
  margin: 0;
  color: #aebdb7;
}

.copyright {
  font-size: 13px;
}

/* ---------- 响应式 ---------- */

@media (max-width: 760px) {
  .header-inner,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 18px;
  }

  .site-nav {
    width: 100%;
  }

  .site-nav > ul {
    gap: 14px;
    flex-wrap: wrap;
  }

  .site-nav .nav-submenu {
    position: static;
    display: block;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 6px 0 0 10px;
  }

  .site-nav .nav-submenu a {
    padding: 6px 8px;
    color: var(--muted);
  }

  .hero-section {
    min-height: auto;
  }

  .hero-section .site-shell {
    padding-block: 78px;
  }

  .hero-section .site-shell:after {
    width: 220px;
    height: 220px;
    right: -100px;
    opacity: 0.45;
  }

  .feature-grid,
  .case-grid,
  .story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .content-section,
  .story-section,
  .cta-section {
    padding-block: 74px;
  }

  .starter-business h1 {
    font-size: 38px;
    letter-spacing: -0.04em;
  }

  .starter-business h2 {
    font-size: 30px;
  }

  .site-account {
    width: 100%;
  }
}

/* ---------- 容器（ContainerArea） ---------- */

.sb-container-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(16, 34, 29, 0.05);
}

.sb-container-cols {
  display: grid;
  gap: 18px;
}

.sb-container-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sb-container-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sb-container-col {
  min-width: 0;
}

.sb-container-col:empty {
  display: none;
}

@media (max-width: 760px) {
  .sb-container-cols-3,
  .sb-container-cols-2 {
    grid-template-columns: 1fr;
  }
}
