/* ═══════════════════════════════════════════════════════════════
   PAMAGOO 品牌站点样式表
   ─ 配色取自品牌 Logo 与亚马逊旗舰店视觉：
     品牌橙 #FF4E00（Logo P 标像素采样）+ 炭黑 #272727（词标采样）
   ─ 字体：Poppins（标题，斜体呼应 Logo 词标）+ Manrope（正文）
   ─ 与姊妹站区分：ARANA 深蓝金黄 / VEPAGOO 炭黑品牌红 / 本站 品牌橙，
     且本站标题不全大写、按钮为胶囊圆角（呼应 Logo 圆润造型）
   ═══════════════════════════════════════════════════════════════ */

/* ---------- 全局变量：改配色只需要动这里 ---------- */
:root {
  --orange: #ff4e00;        /* 品牌橙（Logo P 标采样） */
  --orange-bright: #ff6a24; /* 橙色 hover 提亮 */
  --orange-deep: #d63f00;   /* 橙色按下/深色点缀 */
  --ink: #272727;           /* 炭黑：标题主色（Logo 词标采样） */
  --charcoal: #1e1d1c;      /* 深色区块背景 */
  --coal-deep: #141312;     /* 最深：页脚背景 */
  --body: #2e2c2a;          /* 正文主色 */
  --slate: #74706b;         /* 次要文字（暖灰） */
  --line: #eae5e0;          /* 分隔线/描边（暖灰） */
  --bg-alt: #f7f3ef;        /* 暖白区块背景（呼应旗舰店摄影棚底色） */
  --white: #ffffff;
  --radius: 16px;           /* 卡片统一圆角（比姊妹站更圆润） */
  --shadow: 0 10px 30px rgba(39, 39, 39, 0.09);      /* 常规卡片阴影 */
  --shadow-lg: 0 22px 50px rgba(39, 39, 39, 0.16);   /* hover 抬升阴影 */
  --font-head: "Poppins", "Avenir Next", sans-serif;
  --font-body: "Manrope", "Helvetica Neue", Arial, sans-serif;
}

/* ---------- 基础重置 ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* 页面统一内容宽度 */
.container { width: min(1180px, 92%); margin: 0 auto; }

/* ---------- 通用排版 ---------- */
/* 小眉题：区块顶部的品牌橙大写引导文字 */
.eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}
.eyebrow.on-dark { color: #ff8a55; }
/* 标题：Poppins 斜体粗体，呼应官方 Logo 词标造型 */
.section-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1rem;
}
.section-title.on-dark { color: var(--white); }
.section-sub { color: var(--slate); max-width: 640px; margin: 0 auto 3rem; font-size: 1.05rem; }
.section-sub.on-dark { color: #bdb8b2; }
.center { text-align: center; }
.center.section-sub { margin-left: auto; margin-right: auto; }
.text-orange { color: var(--orange); }

/* 区块通用垂直间距 */
.section { padding: 5.5rem 0; }
.section-alt { background: var(--bg-alt); }
/* 炭黑区块（核心技术/联系我们），右上一抹品牌橙氛围光 */
.section-dark {
  background:
    radial-gradient(900px 420px at 88% 0%, rgba(255, 78, 0, 0.18), transparent 62%),
    linear-gradient(165deg, #26241f 0%, var(--charcoal) 55%, #171614 100%);
}

/* ---------- 按钮：胶囊圆角，呼应 Logo 圆润造型 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: 0.02em;
  padding: 0.72rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn .icon { width: 1.05em; height: 1.05em; }
.btn:hover { transform: translateY(-2px); }
/* 品牌橙主按钮：全站最高优先级 CTA（亚马逊方向） */
.btn-orange { background: var(--orange); color: var(--white); box-shadow: 0 6px 18px rgba(255, 78, 0, 0.35); }
.btn-orange:hover { background: var(--orange-bright); box-shadow: 0 10px 24px rgba(255, 78, 0, 0.45); }
/* 炭黑实心按钮 */
.btn-dark { background: var(--ink); color: var(--white); box-shadow: var(--shadow); }
.btn-dark:hover { background: #000; }
/* 浅色描边按钮：用在深色背景上 */
.btn-outline-light { border-color: rgba(255, 255, 255, 0.65); color: var(--white); }
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.12); border-color: var(--white); }
.btn-lg { padding: 0.95rem 2.2rem; font-size: 1.04rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- 顶部导航 ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
/* 滚动后加 .scrolled：变为实色炭黑并缩小高度（js/main.js 控制） */
.site-header.scrolled {
  background: rgba(20, 19, 18, 0.96);
  backdrop-filter: blur(8px);
  padding: 0.6rem 0;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}
.header-inner { display: flex; align-items: center; gap: 2rem; }

/* Logo：橙 P + 白色词标位图（616×148 紧凑裁剪透明 PNG，等比缩放） */
.brand { display: inline-flex; align-items: center; }
.brand-mark { height: 34px; width: auto; flex-shrink: 0; }

/* 桌面导航链接 */
.main-nav { display: flex; gap: 1.9rem; margin-left: auto; }
.main-nav a {
  font-weight: 600;
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  padding: 0.3rem 0;
}
/* hover 下划线动效 */
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 2px;
  background: var(--orange);
  transition: right 0.25s ease;
}
.main-nav a:hover { color: var(--white); }
.main-nav a:hover::after { right: 0; }
.nav-cta-mobile { display: none; } /* 仅移动端菜单里显示 */

/* 移动端汉堡按钮（桌面隐藏） */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span { width: 24px; height: 2.5px; background: var(--white); border-radius: 2px; transition: 0.25s; }
/* 打开状态：三横变叉 */
.menu-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero 首屏 ---------- */
/* 背景源图为旗舰店横幅裁剪（1600×923），Hero 采用适中高度而非满屏，
   避免过度放大导致画质变软；vh 一律 clamp（防真机/无头超高视口坑） */
.hero {
  position: relative;
  min-height: clamp(560px, 76vh, 700px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}
/* 背景图铺满 */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center; /* 让右侧掀开的舱门与红杉林更多露出 */
}
/* 炭黑渐变遮罩：保证左侧标题可读性 */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(97deg, rgba(15, 12, 10, 0.93) 10%, rgba(20, 16, 13, 0.72) 42%, rgba(22, 18, 15, 0.24) 74%, rgba(22, 18, 15, 0.10) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; padding: 8rem 0 9.5rem; }
.hero h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(2.6rem, 6.2vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin: 0.4rem 0 1.3rem;
}
.hero-sub { max-width: 600px; font-size: 1.1rem; color: #e7e3df; margin-bottom: 2.2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* 首屏底部信任数据条：半透明炭黑玻璃质感 + 橙色顶边 */
.trust-strip {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  background: rgba(17, 15, 13, 0.8);
  backdrop-filter: blur(6px);
  border-top: 2px solid rgba(255, 78, 0, 0.75);
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { text-align: center; padding: 1.25rem 0.5rem; }
.trust-item strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.75rem;
  color: #ff7b3d;
  line-height: 1.15;
}
.trust-item span { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: #bdb8b2; }
/* 相邻数据之间的细分隔线 */
.trust-item + .trust-item { border-left: 1px solid rgba(255, 255, 255, 0.12); }

/* ---------- 产品分类卡片 ---------- */
.category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
.category-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  display: flex;
  flex-direction: column;
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.category-media { aspect-ratio: 16 / 8; overflow: hidden; }
.category-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.category-card:hover .category-media img { transform: scale(1.05); }
.category-body { padding: 1.5rem 1.7rem 1.7rem; }
.category-body h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0;
  color: var(--ink);
  margin-bottom: 0.45rem;
}
.category-body p { color: var(--slate); font-size: 0.97rem; margin-bottom: 0.9rem; }
/* 卡片底部的"伪链接"文字，箭头 hover 前移 */
.card-link { font-weight: 700; color: var(--orange); font-size: 0.95rem; }
.card-link::after { content: " →"; transition: margin-left 0.2s ease; }
.category-card:hover .card-link::after,
.contact-card:hover .card-link::after { margin-left: 6px; }

/* ---------- 精选产品卡片（由 JS 渲染进 #product-grid） ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-bottom: 1.2rem;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
/* 产品图：白底图统一等高展示 */
.product-media { height: 200px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.product-media img { max-height: 100%; object-fit: contain; }
/* 品类小标签 */
.product-tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-deep);
  background: #ffece3;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.55rem;
}
.product-card h3 { font-size: 0.97rem; font-weight: 600; line-height: 1.38; color: var(--body); margin-bottom: 0.5rem; }
/* 星级评分行 */
.product-rating { display: flex; align-items: center; gap: 0.4rem; font-size: 0.88rem; color: var(--slate); margin-bottom: 0.7rem; }
.stars { position: relative; display: inline-block; font-size: 0.95rem; line-height: 1; color: #e3ded8; letter-spacing: 2px; }
/* 用两层星星重叠 + 宽度百分比实现半星效果 */
.stars::before { content: "★★★★★"; }
.stars i {
  position: absolute;
  left: 0; top: 0;
  overflow: hidden;
  white-space: nowrap;
  color: #f5a623;
  font-style: normal;
}
.stars i::before { content: "★★★★★"; }
.product-bottom { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; }
.product-price { font-family: var(--font-head); font-weight: 700; font-size: 1.32rem; color: var(--ink); }
/* 小号"去亚马逊"按钮 */
.btn-amazon {
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0.5rem 0.95rem;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: background 0.2s ease;
}
.btn-amazon:hover { background: var(--orange); }
.btn-amazon svg { width: 0.9em; height: 0.9em; }
/* 价格波动免责说明 */
.price-note { text-align: center; font-size: 0.82rem; color: #a8a29b; margin-bottom: 2rem; }

/* ---------- 选型工具（Find Your Perfect Fit） ---------- */
/* 区块背景：暖白底 + 品牌橙氛围光斑 */
.fit-finder { background:
  radial-gradient(680px 340px at 12% 8%, rgba(255, 78, 0, 0.07), transparent 65%),
  radial-gradient(680px 340px at 88% 92%, rgba(39, 39, 39, 0.06), transparent 65%),
  var(--bg-alt);
}
.finder-card {
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 2.2rem 2.4rem 1.8rem;
}
/* 模式切换标签 */
.finder-tabs {
  display: flex;
  gap: 0.5rem;
  background: var(--bg-alt);
  padding: 0.35rem;
  border-radius: 999px;
  margin-bottom: 1.8rem;
}
.finder-tab {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  padding: 0.65rem 0.8rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--slate);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.finder-tab .icon { width: 1.2em; height: 1.2em; }
.finder-tab.active { background: var(--ink); color: var(--white); box-shadow: 0 4px 12px rgba(39, 39, 39, 0.3); }
/* 表单面板：非激活的隐藏 */
.finder-panel { display: none; }
.finder-panel.active { display: block; animation: fadeUp 0.35s ease; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.finder-fields { display: grid; gap: 1.1rem; margin-bottom: 1.4rem; }
.finder-fields.three { grid-template-columns: repeat(3, 1fr); }
.finder-fields.two { grid-template-columns: repeat(2, 1fr); }
.finder-fields label span {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.4rem;
}
.finder-fields label em { color: var(--orange); font-style: normal; } /* 必填星号 */
.finder-fields input,
.finder-fields select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--body);
  background: var(--bg-alt);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}
.finder-fields select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--slate) 50%), linear-gradient(135deg, var(--slate) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px; background-repeat: no-repeat; cursor: pointer; }
.finder-fields input:focus,
.finder-fields select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 78, 0, 0.14);
  background-color: var(--white);
}
/* 带单位后缀（in / lbs）的输入框 */
.unit-wrap { position: relative; }
.unit-wrap i {
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  font-style: normal;
  font-size: 0.85rem;
  color: #a8a29b;
  pointer-events: none;
}
.finder-note { margin-top: 1.2rem; font-size: 0.85rem; color: #a8a29b; text-align: center; }
.finder-note a { color: var(--orange); font-weight: 700; }
.finder-note a:hover { text-decoration: underline; }

/* ---------- 核心技术卡片 ---------- */
.tech-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; margin-top: 3rem; }
.tech-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  transition: background 0.25s ease, transform 0.25s ease;
}
.tech-card:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-4px); }
.tech-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 78, 0, 0.2);
  color: #ff8a55;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.tech-icon svg { width: 28px; height: 28px; }
.tech-card h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.13rem;
  letter-spacing: 0;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.tech-card p { color: #bdb8b2; font-size: 0.94rem; }

/* ---------- 品牌故事 ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 3.5rem;
}
.story-media { position: relative; }
.story-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
/* 悬浮在图片左下角的"18,000 Tests"角标 */
.story-badge {
  position: absolute;
  left: -1.2rem;
  bottom: 1.6rem;
  background: var(--ink);
  color: var(--white);
  border-radius: 14px;
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow-lg);
  max-width: 260px;
  border-left: 4px solid var(--orange);
}
.story-badge strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-style: italic;
  font-size: 1.45rem;
  color: #ff7b3d;
  line-height: 1.15;
}
.story-badge span { font-size: 0.85rem; color: #cfc9c3; }
.story-body p { color: var(--slate); margin-bottom: 1.1rem; }
/* 核心价值列表：橙色对勾 */
.mission-list { list-style: none; margin-top: 1.4rem; }
.mission-list li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: 0.75rem;
  color: var(--slate);
}
.mission-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.05rem;
  color: var(--orange);
  font-weight: 700;
}
.mission-list strong { color: var(--ink); }
/* 官方品质横幅 */
.collage img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }

/* ---------- 联系我们 ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; max-width: 980px; margin: 0 auto; }
.contact-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  text-align: center;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.contact-card:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-5px); border-color: rgba(255, 78, 0, 0.6); }
.contact-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: rgba(255, 78, 0, 0.2);
  color: #ff8a55;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg { width: 28px; height: 28px; }
.contact-card h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.18rem;
  letter-spacing: 0;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.contact-card p { color: #bdb8b2; font-size: 0.97rem; margin-bottom: 0.8rem; word-break: break-all; }
.contact-card .card-link { color: #ff8a55; }

/* ---------- 页脚 ---------- */
.site-footer { background: var(--coal-deep); color: #a09a93; padding: 4rem 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand .brand-mark { height: 30px; }
.footer-brand p { font-size: 0.95rem; max-width: 300px; }
.footer-col h4 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-col a { display: block; font-size: 0.93rem; padding: 0.28rem 0; transition: color 0.2s ease; }
.footer-col a:hover { color: #ff8a55; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.4rem 0;
  font-size: 0.82rem;
  color: #767069;
}

/* ---------- 入场动画：JS 给 .reveal 加 .visible 触发 ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
/* 用户系统设置了"减少动态效果"时直接显示 */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ═══════════════ 响应式断点 ═══════════════ */
/* 平板：≤1024px */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* 手机 / 小平板：≤820px */
@media (max-width: 820px) {
  .section { padding: 3.8rem 0; }

  /* 导航折叠为全屏下拉菜单（高度 clamp 防 vh 坑） */
  .menu-toggle { display: flex; }
  .header-cta { display: none; }
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    max-height: 100dvh;
    width: min(320px, 82vw);
    background: var(--coal-deep);
    flex-direction: column;
    gap: 0;
    padding: 5.5rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -14px 0 40px rgba(0, 0, 0, 0.35);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { padding: 0.9rem 0; font-size: 1.1rem; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .nav-cta-mobile { display: block; color: #ff8a55 !important; font-weight: 700; }

  .brand-mark { height: 27px; }
  .hero { min-height: clamp(520px, 82vh, 660px); }
  .hero-content { padding: 7rem 0 3.5rem; }
  /* 移动端信任条改为文档流内实色区块，避免与按钮重叠（坑 #9） */
  .trust-strip { position: static; background: #17150f; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  /* 四宫格数据在手机上分两行，去掉跨行分隔线 */
  .trust-item:nth-child(3) { border-left: 0; }
  .trust-item { padding: 0.9rem 0.4rem; }
  .trust-item strong { font-size: 1.45rem; }

  .category-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .finder-card { padding: 1.6rem 1.3rem 1.4rem; }
  .finder-fields.three, .finder-fields.two { grid-template-columns: 1fr; }
  .finder-tabs { flex-direction: column; border-radius: 18px; }
  .finder-tab { font-size: 0.95rem; padding: 0.6rem 0.5rem; }
  .story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-badge { left: 1rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
}

/* 窄屏手机：≤480px 产品卡改单列 */
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
