/* ==========================================================================
   景小番 · 官网样式
   主题：番茄红 · 暖米色 · 大地绿
   ========================================================================== */

:root {
  --red: #e8432e;
  --red-dark: #b8271a;
  --red-deep: #8f1d13;
  --red-light: #ff7a5c;
  --green: #2d6a4f;
  --green-light: #4caf6d;
  --gold: #f4a261;
  --cream: #fdf7f1;
  --cream-2: #faf0e6;
  --ink: #2b1d1a;
  --ink-soft: #5c4a45;
  --line: #f0e2d5;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(143, 29, 19, 0.06);
  --shadow-md: 0 10px 30px rgba(143, 29, 19, 0.10);
  --shadow-lg: 0 24px 60px rgba(143, 29, 19, 0.16);
  --radius: 18px;
  --radius-lg: 28px;
  --maxw: 1180px;
  --font: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Hiragino Sans GB", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.hl { color: var(--red); font-weight: 600; }

/* ============================ 导航 ============================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 16px 0;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  padding: 8px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo {
  font-size: 30px;
  line-height: 1;
  filter: drop-shadow(0 2px 3px rgba(184, 39, 26, .3));
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-size: 20px; letter-spacing: 2px; color: var(--red-deep); }
.brand-text small { font-size: 9px; letter-spacing: 2.5px; color: var(--ink-soft); }

.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-link {
  padding: 8px 14px;
  font-size: 15px;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: color .2s, background .2s;
  position: relative;
}
.nav-link:hover { color: var(--red); }
.nav-link.active { color: var(--red); background: rgba(232, 67, 46, .09); font-weight: 600; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--red-deep);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ============================ Hero ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(160deg, #fff7ef 0%, #ffe9dd 45%, #ffd9c6 100%);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}
.hero-circle.c1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 122, 92, .35), rgba(232, 67, 46, .06) 70%);
  top: -160px; right: -120px;
}
.hero-circle.c2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle at 30% 30%, rgba(76, 175, 109, .18), transparent 70%);
  bottom: -120px; left: -100px;
}
.hero-leaf {
  position: absolute;
  width: 90px; height: 50px;
  background: rgba(45, 106, 79, .10);
  border-radius: 0 100% 0 100%;
  transform: rotate(-20deg);
}
.hero-leaf.l1 { top: 22%; left: 6%; transform: rotate(25deg); }
.hero-leaf.l2 { bottom: 18%; right: 8%; transform: rotate(-140deg); width: 120px; height: 64px; }

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
}
.hero-tag {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(232, 67, 46, .10);
  color: var(--red);
  border: 1px solid rgba(232, 67, 46, .22);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(42px, 7vw, 74px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--ink);
}
.hero-title-accent {
  color: var(--red);
  position: relative;
}
.hero-title-accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 6px;
  height: 12px;
  background: rgba(244, 162, 97, .4);
  border-radius: 6px;
  z-index: -1;
}
.hero-sub {
  margin-top: 22px;
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 560px;
}
.hero-actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  box-shadow: 0 10px 26px rgba(232, 67, 46, .35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(232, 67, 46, .45); }
.btn-ghost {
  background: #fff;
  color: var(--red-deep);
  border: 1.5px solid rgba(232, 67, 46, .28);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--red); }
.btn-light {
  background: #fff;
  color: var(--red-deep);
  box-shadow: var(--shadow-md);
}
.btn-light:hover { transform: translateY(-3px); }

.hero-stats { margin-top: 44px; display: flex; gap: 36px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 32px; font-weight: 800; color: var(--red-deep); line-height: 1.1; }
.stat strong span { font-size: 16px; font-weight: 600; color: var(--ink-soft); margin-left: 2px; }
.stat small { color: var(--ink-soft); font-size: 13px; }

.hero-visual { display: flex; justify-content: center; }
.tomato { width: 100%; max-width: 420px; height: auto; }
.tomato-art { transform-origin: 180px 210px; animation: float 5s ease-in-out infinite; }
.tomato-text {
  font-family: var(--font);
  font-size: 34px;
  font-weight: 800;
  fill: #fff;
  letter-spacing: 4px;
  opacity: .95;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(1.5deg); }
}

.scroll-hint {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.mouse {
  width: 26px; height: 42px;
  border: 2px solid var(--red);
  border-radius: 14px;
  display: flex; justify-content: center;
  padding-top: 7px;
}
.mouse .dot {
  width: 5px; height: 9px;
  background: var(--red);
  border-radius: 3px;
  animation: wheel 1.6s infinite;
}
@keyframes wheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ============================ 通用 Section ============================ */
.section { padding: 96px 0; }
.section-alt { background: var(--cream); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.kicker {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(232, 67, 46, .08);
  color: var(--red);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.kicker-light { background: rgba(255, 255, 255, .18); color: #fff; }
.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--ink);
}
.section-desc { margin-top: 16px; color: var(--ink-soft); font-size: 16px; }

/* ============================ 品牌介绍 ============================ */
.about-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.about-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: transform .25s, box-shadow .25s;
}
.about-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.about-icon { font-size: 34px; margin-bottom: 16px; }
.about-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--ink); }
.about-card p { font-size: 14px; color: var(--ink-soft); }

/* ============================ 核心优势 ============================ */
.advantage-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.advantage-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.advantage-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.advantage-item .num {
  position: absolute;
  top: 18px; right: 22px;
  font-size: 56px;
  font-weight: 800;
  color: rgba(232, 67, 46, .08);
  line-height: 1;
}
.advantage-item h3 { font-size: 21px; margin-bottom: 12px; color: var(--red-deep); }
.advantage-item p { color: var(--ink-soft); font-size: 15px; }

/* ============================ 商标资产 ============================ */
.trademark-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.trademark-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  border: 1px solid var(--line);
  text-align: center;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.trademark-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.tm-badge {
  width: 84px; height: 84px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  box-shadow: var(--shadow-md);
}
.tm-badge small { font-size: 14px; font-weight: 600; margin-left: 2px; margin-top: 14px; }
.tm-29 { background: linear-gradient(135deg, #ff7a5c, #e8432e); }
.tm-30 { background: linear-gradient(135deg, #f4a261, #e8753a); }
.tm-35 { background: linear-gradient(135deg, #4caf6d, #2d6a4f); }
.trademark-card h3 { font-size: 20px; margin-bottom: 12px; color: var(--ink); }
.trademark-card p { font-size: 14px; color: var(--ink-soft); margin-bottom: 18px; }
.tm-valid {
  display: inline-block;
  padding: 6px 14px;
  background: var(--cream-2);
  color: var(--red-deep);
  font-size: 12px;
  border-radius: 999px;
  letter-spacing: .5px;
}

/* ============================ 发展目标（时间线） ============================ */
.timeline { position: relative; max-width: 760px; margin: 0 auto; padding-left: 40px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 11px; top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(var(--red-light), var(--green-light));
}
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -40px; top: 6px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--red);
  box-shadow: 0 0 0 4px rgba(232, 67, 46, .12);
}
.timeline-body {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.timeline-phase {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--red);
  background: rgba(232, 67, 46, .08);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.timeline-body h3 { font-size: 19px; margin-bottom: 8px; color: var(--ink); }
.timeline-body p { font-size: 14px; color: var(--ink-soft); }

/* ============================ 业务板块 ============================ */
.business-block {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.business-block:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.bb-side {
  padding: 40px 32px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bb-29 { background: linear-gradient(160deg, #ff7a5c, #d63a24); }
.bb-30 { background: linear-gradient(160deg, #f4a261, #d9702e); }
.bb-35 { background: linear-gradient(160deg, #4caf6d, #236046); }
.bb-class {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  opacity: .9;
  margin-bottom: 10px;
}
.bb-side h3 { font-size: 24px; line-height: 1.4; }
.bb-content { padding: 38px 36px; }
.bb-lead { font-size: 15px; color: var(--ink); margin-bottom: 22px; }
.bb-lead strong { color: var(--red-deep); }
.bb-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.bb-col h4 {
  font-size: 14px;
  color: var(--red);
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.bb-col p { font-size: 14px; color: var(--ink-soft); }
.bb-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bb-list-item {
  font-size: 14px;
  color: var(--ink-soft);
  background: var(--cream);
  border-radius: 12px;
  padding: 14px 16px;
}
.bb-list-item strong { color: var(--red-deep); display: block; margin-bottom: 3px; }

/* ============================ 运营计划 ============================ */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.plan-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.plan-num {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--red);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.plan-card h3 { font-size: 21px; margin-bottom: 4px; color: var(--ink); }
.plan-range { font-size: 13px; color: var(--ink-soft); }
.plan-card ul { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.plan-card li {
  font-size: 14px;
  color: var(--ink-soft);
  padding-left: 20px;
  position: relative;
}
.plan-card li::before {
  content: "";
  position: absolute;
  left: 2px; top: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red-light);
}

/* ============================ 市场营销 ============================ */
.marketing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.marketing-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid var(--line);
  transition: transform .25s, box-shadow .25s;
}
.marketing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.mk-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background: rgba(232, 67, 46, .09);
  margin-bottom: 16px;
}
.marketing-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--ink); }
.marketing-card p { font-size: 14px; color: var(--ink-soft); }

/* ============================ 财务规划 ============================ */
.finance-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.finance-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.finance-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.finance-card h3 { font-size: 19px; margin-bottom: 12px; color: var(--ink); }
.finance-card p { font-size: 14px; color: var(--ink-soft); }

/* ============================ 风险应对 ============================ */
.risk-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.risk-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  transition: transform .25s, box-shadow .25s;
}
.risk-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.risk-card h3 { font-size: 17px; margin-bottom: 10px; color: var(--ink); }
.risk-tag {
  display: inline-block;
  font-size: 12px;
  color: var(--red);
  background: rgba(232, 67, 46, .08);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.risk-card p { font-size: 13.5px; color: var(--ink-soft); }

/* ============================ 资质荣誉 ============================ */
.honor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.honor-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.honor-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232, 67, 46, .25);
}
.honor-img {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #fff7ef, #f4e6d4);
  cursor: zoom-in;
}
.honor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
}
.honor-img:hover img { transform: scale(1.06); }
/* 横版证书（如科技型中小企业）：完整显示不裁剪，白底留白 */
.honor-img--wide {
  background: #fff;
}
.honor-img--wide img {
  object-fit: contain;
  object-position: center;
}
.honor-img--wide:hover img { transform: scale(1.04); }
.honor-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(36, 22, 19, 0);
  color: #fff;
  opacity: 0;
  transition: background .3s, opacity .3s;
  pointer-events: none;
}
.honor-img:hover .honor-zoom {
  background: rgba(36, 22, 19, .45);
  opacity: 1;
}
.honor-body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.honor-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.tag-29 { background: rgba(255, 122, 92, .14); color: #d63a24; }
.tag-30 { background: rgba(244, 162, 97, .18); color: #b95a18; }
.tag-35 { background: rgba(76, 175, 109, .16); color: #236046; }
.tag-45 { background: rgba(91, 124, 250, .16); color: #3849a3; }
.tag-keji { background: linear-gradient(135deg, #f7d774, #e8b53b); color: #6b4f0a; }
.honor-card h3 {
  font-size: 18px;
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 700;
}
.honor-card p {
  font-size: 13.5px;
  color: var(--ink-soft);
}
.honor-card p strong {
  color: var(--red-deep);
  font-weight: 700;
  letter-spacing: .5px;
}
.honor-meta {
  margin-top: 4px;
  font-size: 12.5px;
  color: var(--ink-soft);
  opacity: .85;
}
.honor-footnote {
  margin-top: 40px;
  text-align: center;
  font-size: 13.5px;
  color: var(--ink-soft);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* 灯箱 */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 10, 8, .88);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: zoom-out;
}
.lightbox-overlay.show {
  opacity: 1;
  visibility: visible;
}
.lightbox-overlay img {
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
  transform: scale(.96);
  transition: transform .35s cubic-bezier(.2,.7,.3,1);
}
.lightbox-overlay.show img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, transform .2s;
  border: none;
  font-family: inherit;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, .32);
  transform: rotate(90deg);
}

/* ============================ 联系我们 ============================ */
.contact { background: var(--cream); }
.contact-box {
  background: linear-gradient(150deg, #d63a24 0%, #b8271a 55%, #8f1d13 100%);
  border-radius: var(--radius-lg);
  padding: 72px 48px;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.contact-box::before {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .10), transparent 70%);
  top: -160px; right: -100px;
}
.contact-box h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 800; margin-bottom: 14px; letter-spacing: 1px; }
.contact-box > p { color: rgba(255, 255, 255, .85); max-width: 620px; margin: 0 auto 36px; font-size: 16px; }
.contact-cards { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.contact-card {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 16px;
  padding: 18px 26px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  backdrop-filter: blur(6px);
  min-width: 150px;
}
.contact-card span { font-size: 24px; }
.contact-card strong { font-size: 13px; color: rgba(255, 255, 255, .75); letter-spacing: 1px; }
.contact-card small { font-size: 15px; font-weight: 600; }

/* ============================ 页脚 ============================ */
.footer {
  background: #241613;
  color: #cfc0ba;
  padding: 56px 0 32px;
}
.footer-inner { display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; align-items: flex-start; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand .brand-logo { font-size: 34px; }
.footer-brand strong { font-size: 22px; color: #fff; letter-spacing: 2px; }
.footer-brand p { font-size: 13px; color: #9c8b84; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { font-size: 14px; color: #cfc0ba; transition: color .2s; }
.footer-links a:hover { color: var(--red-light); }
.footer-copy { text-align: right; font-size: 13px; color: #8a7872; }
.footer-copy p { margin-bottom: 4px; }
.footer-icp { margin-top: 8px; display: flex; gap: 12px; justify-content: flex-end; align-items: center; flex-wrap: wrap; }
.footer-icp a { color: #9c8b84; transition: color .2s; }
.footer-icp a:hover { color: var(--red-light); }

/* ============================ 滚动进入动画 ============================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================ 响应式 ============================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: repeat(2, 1fr); }
  .trademark-grid { grid-template-columns: repeat(3, 1fr); }
  .risk-grid { grid-template-columns: repeat(2, 1fr); }
  .honor-grid { grid-template-columns: repeat(2, 1fr); }
  .business-block { grid-template-columns: 240px 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(300px, 80vw);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 6px;
    background: #fff;
    box-shadow: -10px 0 40px rgba(0,0,0,.12);
    padding: 90px 28px 28px;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.2,.7,.3,1);
    z-index: 99;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { font-size: 17px; width: 100%; }
  .nav-toggle { display: flex; position: relative; z-index: 101; }

  .hero { padding-top: 100px; }
  .hero-inner { grid-template-columns: 1fr; text-align: left; }
  .hero-visual { order: -1; }
  .tomato { max-width: 280px; }
  .hero-stats { gap: 24px; }
  .stat strong { font-size: 26px; }

  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }

  .advantage-grid, .finance-grid { grid-template-columns: 1fr; }
  .trademark-grid, .marketing-grid { grid-template-columns: 1fr; }
  .risk-grid { grid-template-columns: 1fr; }
  .plan-grid { grid-template-columns: 1fr; }
  .honor-grid { grid-template-columns: 1fr; gap: 20px; }
  .business-block { grid-template-columns: 1fr; }
  .bb-cols, .bb-list { grid-template-columns: 1fr; }
  .bb-side { padding: 30px 26px; }
  .bb-content { padding: 28px 24px; }
  .contact-box { padding: 52px 24px; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-copy { text-align: left; }
  .footer-icp { justify-content: flex-start; }
}
