/* ============================================
   闪收虾名奢回收 · 成都2小时上门回收落地页
   黑金奢华主题 | 转化导向
   ============================================ */

/* 防止移动端浏览器自动放大文本（iOS 横屏 / Android Font Boosting / 表单聚焦） */
html {
  font-size: 16px;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

:root {
  --bg: #0c0c0f;
  --bg-soft: #121218;
  --bg-card: #181820;
  --bg-card-hover: #1e1e28;
  --gold: #c9a24b;
  --gold-strong: #e8c46a;
  --gold-deep: #9c7a30;
  --line: rgba(255, 255, 255, 0.09);
  --line-gold: rgba(201, 162, 75, 0.35);
  --text: #f1e7c9;
  --muted: #a5a09a;
  --danger: #d4603a;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --radius: 14px;
  --font: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

.container {
  width: min(1350px, 92%);
  margin: 0 auto;
}

section {
  scroll-margin-top: 80px;
}

.section {
  padding: 35px 0;
}

/* ---------- 头部导航 ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 12, 15, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold-deep));
  color: #14100a;
  font-weight: 800;
  font-size: 22px;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(201, 162, 75, 0.35);
} 
.logo img {height: 55px; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.logo-text strong {
  font-size: 19px;
  letter-spacing: 1px;
}

.logo-text small {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 1px;
}

.main-nav {
  display: flex;
  gap: 28px;
  font-size: 15px;
}

.main-nav a {
  color: var(--muted);
  transition: color 0.25s;
  position: relative;
}

.main-nav a:hover {
  color: var(--gold-strong);
}

/* 汉堡菜单按钮（仅移动端显示） */
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line-gold);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold-strong);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}

.btn-lg {
  padding: 16px 34px;
  font-size: 17px;
}

.btn-block {
  width: 100%;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-strong), var(--gold-deep));
  color: #14100a;
  box-shadow: 0 10px 28px rgba(201, 162, 75, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(201, 162, 75, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-gold);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-strong);
}

.btn-call {
  padding: 10px 20px;
  font-size: 14px;
}

/* ---------- 首屏 Hero ---------- */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 84px);
  background: linear-gradient(180deg, var(--bg-soft), var(--bg));
  overflow: hidden;
}

/* 背景名品陈列图 */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/hero-bg.png");
  background-size: cover;
  background-position: center 25%;
  opacity: 0.85;
  z-index: 0;
}

/* 蒙版：轻压暗图片、保留两侧金色光晕，保证文字可读 */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(201, 162, 75, 0.16), transparent 60%),
    radial-gradient(700px 420px at 10% 10%, rgba(201, 162, 75, 0.08), transparent 60%),
    linear-gradient(180deg, rgba(21, 18, 13, 0.55), rgba(13, 11, 8, 0.72));
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  padding: 48px 0 148px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  color: var(--gold-strong);
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 22px;
  background: rgba(201, 162, 75, 0.08);
  box-shadow: 0 4px 18px rgba(201, 162, 75, 0.1);
}

.tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 75, 0.18);
  animation: pulse 1.6s infinite;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.25;
  letter-spacing: 1px;
  background: linear-gradient(180deg, #f7f1dc 30%, var(--gold-strong) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}

.hero-brands {
  display: block;
  font-size: 1.06em;
  letter-spacing: 3px;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 26px;
}

.hero-faith {
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero-actions .btn-phone-ico {
  margin-right: 8px;
  font-size: 16px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 14px;
  color: var(--muted);
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-points li::before {
  content: "✓";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(201, 162, 75, 0.14);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
}

/* 行情卡片 */
.hero-card {
  background: rgba(24, 24, 32, 0.72);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.hero-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-strong);
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.hero-card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 75, 0.18);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 7px rgba(201, 162, 75, 0.06);
  }
}

.quote-list li {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px dashed var(--line);
}

.quote-list li.quote-head {
  padding: 4px 0 8px;
  border-bottom: 1px solid var(--line-gold);
  font-size: 15px;
  font-weight: 700;
  color: var(--gold-strong);
  letter-spacing: 0.5px;
}

.quote-head span:last-child {
  justify-self: end;
}

.quote-head span:nth-child(2) {
  justify-self: center;
}

.quote-brand {
  font-size: 15px;
}

.quote-cond {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

.quote-price {
  color: var(--gold-strong);
  font-weight: 400;
  font-size: 16px;
  justify-self: end;
  white-space: nowrap;
}

.quote-note {
  font-size: 12px;
  color: var(--muted);
  margin: 14px 0 0px;
}

/* 数据条 */
.hero-trust-panel {
  position: relative;
  z-index: 2;
  max-width: 1350px;
  margin: 0 auto 36px;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 30px 0;
}

.stat {
  text-align: center;
  padding: 6px 16px;
}

.stat + .stat {
  border-left: 1px solid rgba(212, 175, 55, 0.35);
}

.stat strong {
  display: block;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--gold-strong);
  font-weight: 800;
}

.stat strong em {
  font-style: normal;
  font-size: 16px;
  margin-left: 2px;
}

.stat span {
  font-size: 13px;
  color: var(--muted);
}

/* ---------- 信任背书 ---------- */
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 36px;
  padding: 13px 20px;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  background: var(--bg-card);
}

/* ---------- 区块标题 ---------- */
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}

.section-eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-weight: 600;
}

.section-head h2 {
  font-size: clamp(26px, 3.6vw, 38px);
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.section-head .section-desc {
  color: var(--muted);
  font-size: 15px;
}

.section-head .section-desc strong {
  color: var(--gold-strong);
}

/* ---------- 回收品类 ---------- */
.categories {
  background: var(--bg-soft);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.cat-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.cat-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-gold);
  box-shadow: var(--shadow);
}

.cat-head {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  margin-bottom: 24px;
}

.cat-icon {
  flex: none;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  font-size: 30px;
  background: rgba(201, 162, 75, 0.08);
  border: 1px solid var(--line-gold);
  border-radius: 14px;
}

.cat-head h3 {
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 2px;
  letter-spacing: 2px;
}

.cat-sub {
  font-size: 14px;
  line-height: 1.4;
  color: var(--muted);
}

.cat-title {
  flex: 1;
}

.brand-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.brand-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 14px;
  transition: background 0.25s, border-color 0.25s;
}

.brand-list li:hover {
  background: rgba(201, 162, 75, 0.07);
  border-color: var(--line-gold);
}

.brand-mark {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold-deep));
  color: #14100a;
  font-weight: 800;
  font-size: 16px;
  display: grid;
  place-items: center;
}

.brand-name {
  font-size: 16px;
  font-weight: 400;
}

.brand-en {
  margin-left: auto;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1px;
}

.cat-tip {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}

.cat-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-strong);
  font-weight: 600;
  font-size: 15px;
  transition: gap 0.25s;
}

.cat-cta:hover {
  gap: 12px;
}

/* ---------- 行情参考表 ---------- */
.market {
  background: var(--bg);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
  max-width: 960px;
  margin: 0 auto;
}

.market-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 640px;
}

.market-table th,
.market-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.market-table thead th {
  font-size: 15px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.03);
}

.market-table tbody tr:last-child td {
  border-bottom: none;
}

.market-table tbody tr {
  transition: background 0.2s;
}

.market-table tbody tr:hover {
  background: rgba(201, 162, 75, 0.05);
}

.market-table td.market-cat {
  color: var(--gold-strong);
  font-weight: 700;
  font-size: 30px;
}

.market-note {
  max-width: 960px;
  margin: 16px auto 0;
  font-size: 12px;
  color: var(--muted);
}

.market-cta {
  text-align: center;
  margin-top: 28px;
}

/* ---------- 关于我们 + 诚信公约 ---------- */
.about {
  background: var(--bg-soft);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
}

.about-panel {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 44px;
  gap: 44px;
  box-shadow: var(--shadow);
}

.about-copy .section-eyebrow {
  margin-bottom: 10px;
}

.about-copy h2 {
  font-size: clamp(24px, 3.2vw, 34px);
  margin-bottom: 18px;
}

.about-copy {
  position: relative;
}

.about-copy p {
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
  margin-bottom: 18px;
}

.about-copy p strong {
  color: var(--gold-strong);
}

/* 信任数据条 */
.about-stats {
  list-style: none;
  display: flex;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-card);
  margin: 6px 0 22px;
  overflow: hidden;
}

.about-stats li {
  flex: 1;
  text-align: center;
  padding: 14px 10px;
  border-right: 1px solid var(--line);
}

.about-stats li:last-child {
  border-right: none;
}

.about-stats strong {
  display: block;
  font-size: 18px;
  color: var(--gold-strong);
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 4px;
  white-space: nowrap;
}

.about-stats span {
  font-size: 12px;
  color: var(--muted);
}

.about-copy .btn {
  margin-top: 4px;
}

.covenant {
  position: relative;
  padding-left: 44px;
}

.covenant::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: var(--line);
}

.covenant::after {
  content: "";
  position: absolute;
  left: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 46px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--gold-strong), var(--gold-deep));
}

.covenant h3 {
  font-size: 20px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.covenant-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.covenant-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.cv-icon {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold-deep));
  color: #14100a;
  font-weight: 800;
  font-size: 13px;
  display: grid;
  place-items: center;
  margin-top: 2px;
}

.covenant-list strong {
  font-size: 15px;
  font-weight: 400;
  color: var(--gold-strong);
  display: block;
  margin-bottom: 2px;
}

.covenant-list p {
  font-size: 13px;
  color: var(--muted);
}

/* ---------- 客户评价 ---------- */
.reviews {
  background: var(--bg);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-gold);
}

.review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.review-stars {
  color: var(--gold-strong);
  letter-spacing: 2px;
  font-size: 14px;
}

.review-user {
  font-size: 13px;
  color: var(--muted);
}

.review-card p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
  flex: 1;
}

.review-tag {
  align-self: flex-start;
  margin-top: 16px;
  font-size: 12px;
  color: var(--gold);
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  padding: 3px 12px;
  background: rgba(201, 162, 75, 0.08);
}

.review-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 26px;
}

/* ---------- 防坑指南 ---------- */
.guide {
  background: var(--bg-soft);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.guide-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform 0.3s, border-color 0.3s;
}

.guide-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-gold);
}

.guide-card h3 {
  position: relative;
  font-size: 17px;
  margin-bottom: 10px;
  padding-left: 14px;
}

.guide-card h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--gold-strong), var(--gold-deep));
}

.guide-card p {
  font-size: 14px;
  color: var(--muted);
}

.guide-card p strong {
  color: var(--gold-strong);
}

.guide-tip {
  position: relative;
  overflow: hidden;
  max-width: 860px;
  margin: 32px auto 0;
  background: linear-gradient(135deg, rgba(201, 162, 75, 0.14), rgba(201, 162, 75, 0.05));
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  padding: 28px 30px 26px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
}

.guide-tip-row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
}

/* 顶部金色强调条：中间向两边渐变 */
.guide-tip::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-strong) 50%, transparent);
}

.guide-tip-head {
  flex: 1;
  min-width: 280px;
}

.guide-tip-title {
  font-size: 15px;
  color: var(--gold-strong);
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.guide-tip-title::before {
  content: "✦ ";
  font-size: 13px;
}

/* 承诺网格：3列卡片式标签 */
.guide-promises {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  flex: 1;
}

.guide-promises li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--line-gold);
  border-radius: 12px;
  padding: 12px 14px;
  line-height: 1.2;
  min-height: 42px;
  transition: color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.promise-ok {
  flex: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold-deep));
  color: #14100a;
  font-size: 12px;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.guide-promises li:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(201, 162, 75, 0.18);
  border-color: var(--gold-strong);
}

.guide-tip .btn {
  flex: none;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  font-size: 16px;
  white-space: nowrap;
  border-radius: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.guide-tip .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 162, 75, 0.35);
}

/* ---------- 联系荣誉条 ---------- */
.contact-honor {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  font-size: 13px;
  color: var(--gold-strong);
  line-height: 2;
}

/* ---------- 为什么选我们 ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.why-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 24px 28px;
  transition: transform 0.3s, border-color 0.3s;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-gold);
}

.why-num {
  position: absolute;
  top: -18px;
  left: -12px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #3a3a40;
  color: #14100a;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 0 10px 22px;
}

.why-card h3 {
  font-size: 18px;
  font-weight: 400;
  color: var(--gold-strong);
  margin: 8px 0 10px;
  padding-left: 6px;
}

.why-card p {
  font-size: 14px;
  color: var(--muted);
}

.why-card p strong {
  color: var(--gold-strong);
}

/* ---------- 流程 ---------- */
.process {
  background: var(--bg-soft);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}

.process-list li {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 20px 24px;
  text-align: center;
}

.step-num {
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold-deep));
  color: #14100a;
  font-weight: 800;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(201, 162, 75, 0.3);
}

.process-list h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.process-list p {
  font-size: 13px;
  color: var(--muted);
}

/* ---------- 留资表单 ---------- */
.lead {
  background:
    radial-gradient(700px 400px at 15% 20%, rgba(201, 162, 75, 0.12), transparent 60%),
    var(--bg);
}

.lead-inner {
  display: grid;
  grid-template-columns: 1fr;
}

.lead-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 44px;
  gap: 44px;
  align-items: center;
  box-shadow: var(--shadow);
}

.lead-copy .section-eyebrow {
  margin-bottom: 10px;
}

.lead-copy h2 {
  font-size: clamp(24px, 3.2vw, 34px);
  margin-bottom: 16px;
}

.lead-copy p {
  color: var(--muted);
  margin-bottom: 24px;
}

.lead-copy p strong {
  color: var(--gold-strong);
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--gold-strong);
}

.phone-link:hover {
  color: var(--gold);
}

.lead-guarantee {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}

.lead-guarantee li {
  display: flex;
  gap: 8px;
}

.lead-guarantee li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
}

.lead-form {
  position: relative;
  padding-left: 44px;
}

.lead-form::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: var(--line);
}

.lead-form::after {
  content: "";
  position: absolute;
  left: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 46px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--gold-strong), var(--gold-deep));
}

.lead-form h3 {
  font-size: 21px;
  margin-bottom: 22px;
  text-align: center;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 7px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: 10px;
  border: 1px solid rgba(201, 162, 75, 0.22);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.25s, box-shadow 0.25s, background-color 0.25s;
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(200, 200, 200, 0.4);
  opacity: 1;
}
.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: rgba(201, 162, 75, 0.45);
  background: rgba(255, 255, 255, 0.07);
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 4px rgba(201, 162, 75, 0.18), 0 8px 20px -10px rgba(0, 0, 0, 0.5);
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%2712%27%20height%3D%278%27%20viewBox%3D%270%200%2012%208%27%3E%3Cpath%20d%3D%27M1%201l5%205%205-5%27%20fill%3D%27none%27%20stroke%3D%27%23c9a24b%27%20stroke-width%3D%271.8%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%2F%3E%3C%2Fsvg%3E");
  background-position: right 15px center;
  background-size: 12px 8px;
  background-repeat: no-repeat;
  padding-right: 38px;
  cursor: pointer;
}

.field select option {
  background: var(--bg-card);
  color: var(--text);
}

.field input.error,
.field select.error,
.field textarea.error {
  border-color: var(--danger);
}

.field .err-msg {
  display: none;
  font-size: 12px;
  color: var(--danger);
  margin-top: 4px;
}

.field.error-box .err-msg {
  display: block;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
}

.form-msg {
  margin-top: 12px;
  padding: 11px 14px;
  border-radius: 9px;
  font-size: 14px;
  display: none;
}

.form-msg.success {
  display: block;
  background: rgba(80, 180, 120, 0.12);
  border: 1px solid rgba(80, 180, 120, 0.4);
  color: #7fd6a4;
}

.form-msg.error {
  display: block;
  background: rgba(212, 96, 58, 0.12);
  border: 1px solid rgba(212, 96, 58, 0.4);
  color: #f09a7c;
}

.form-msg.info {
  display: block;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold-strong);
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s;
}

.faq-item:hover {
  border-color: var(--gold-strong);
}

.faq-item:hover summary {
  color: var(--gold-strong);
}

.faq-item[open] {
  border-color: var(--gold-strong);
}

.faq-item[open] summary {
  color: var(--gold-strong);
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 400;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: none;
  font-size: 22px;
  color: var(--gold);
  transition: transform 0.25s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 22px 20px;
  font-size: 14px;
  color: var(--muted);
}

/* ---------- 联系与区域 ---------- */
.contact {
  background: var(--bg-soft);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.contact-card,
.area-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
}

.contact-card h2,
.area-card h2 {
  font-size: 22px;
  margin-bottom: 20px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-list li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-size: 15px;
}

.contact-list li span:first-child {
  flex: none;
  width: 76px;
  color: var(--muted);
  font-size: 13px;
}

.contact-list a {
  color: var(--gold-strong);
  font-weight: 700;
  font-size: 18px;
}

.area-card p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 14px;
}

.area-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.area-list li {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.area-list li strong {
  color: var(--gold-strong);
  font-size: 13px;
}

.area-time {
  align-self: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.16), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold-strong);
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

.area-list li::before {
  content: "◆";
  color: var(--gold);
  font-size: 11px;
  align-self: center;
}

.area-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px dashed var(--line);
  padding-top: 14px;
}

/* ---------- 页脚 ---------- */
.site-footer {
  background: #08080a;
  border-top: 1px solid var(--line);
  padding: 12px 0 0;
  font-size: 14px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
  gap: 40px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--gold-strong);
  margin-bottom: 8px;
}

.footer-slogan {
  color: var(--text);
  font-size: 14px;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
}

.footer-title {
  font-size: 14px;
  color: var(--gold-strong);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.footer-links a {
  color: var(--muted);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold-strong);
}

.footer-links span {
  color: var(--gold);
  margin-right: 8px;
  font-size: 12px;
}

.footer-bottom {
  padding: 12px 0 14px;
  text-align: center;
}

.footer-muted {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}

.footer-copy {
  font-size: 12px;
  color: var(--muted);
}

.footer-copy a {
  color: var(--gold);
}

.footer-copy a:hover {
  color: var(--gold-strong);
}

/* ---------- 移动端浮动胶囊栏 ---------- */
.mobile-bar {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 200;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-bar.hidden {
  opacity: 0;
  transform: translateY(140%);
  pointer-events: none;
}

.mobile-bar a {
  flex: 1;
  text-align: center;
  padding: 14px 10px;
  font-size: 15px;
  font-weight: 700;
  display: block;
}

.m-bar-call {
  color: var(--gold-strong);
  background: linear-gradient(135deg, rgba(201, 162, 75, 0.16), rgba(201, 162, 75, 0.08));
  border-right: 1px solid rgba(201, 162, 75, 0.4);
  backdrop-filter: blur(8px);
}

.m-bar-form {
  color: var(--gold-strong);
  background: linear-gradient(135deg, rgba(201, 162, 75, 0.16), rgba(201, 162, 75, 0.08));
  backdrop-filter: blur(8px);
}

/* ---------- 响应式 ---------- */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 0 48px;
  }

  .cat-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .why-grid,
  .review-grid,
  .guide-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-list {
    grid-template-columns: 1fr 1fr;
  }

  .nav-toggle {
    display: flex;
  }

  .header-inner .btn-call {
    display: none;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 8px 0 14px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .main-nav a::after {
    content: "›";
    font-size: 26px;
    line-height: 1;
    color: var(--gold);
    opacity: 0.7;
    transition: transform 0.2s, opacity 0.2s;
  }

  .main-nav a:hover::after {
    transform: translateX(3px);
    opacity: 1;
  }

  .main-nav a:last-child {
    border-bottom: none;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 54px 0;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .stat + .stat {
    border-left: none;
  }

  .stat:nth-child(even) {
    border-left: 1px solid rgba(212, 175, 55, 0.35);
  }

  .why-grid,
  .lead-inner,
  .contact-inner,
  .about-inner,
  .review-grid,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .about-panel,
  .lead-panel {
    grid-template-columns: 1fr;
    padding: 30px 24px;
    gap: 34px;
  }

  .covenant,
  .lead-form {
    padding-left: 0;
    padding-top: 30px;
  }

  .covenant::before,
  .lead-form::before {
    left: 4px;
    right: 4px;
    top: 0;
    bottom: auto;
    width: auto;
    height: 1px;
  }

  .covenant::after,
  .lead-form::after {
    left: 50%;
    top: -1px;
    bottom: auto;
    transform: translateX(-50%);
    width: 46px;
    height: 3px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .guide-tip {
    text-align: center;
  }

  .guide-tip-row {
    flex-direction: column;
    gap: 18px;
  }

  .guide-promises {
    grid-template-columns: repeat(2, 1fr);
  }

  .guide-tip .btn {
    width: 100%;
  }

  .table-wrap {
    border-radius: 10px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 26px 20px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  /* 移动端：联系方式整行展开，电话醒目可点 */
  .footer-col-contact {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(201, 162, 75, 0.1), rgba(201, 162, 75, 0.03));
    border: 1px solid var(--line-gold);
    border-radius: 12px;
    padding: 18px 20px;
  }

  .footer-col-contact .footer-title {
    border-bottom-color: rgba(201, 162, 75, 0.2);
  }

  .footer-links li {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
  }

  .footer-links span {
    display: inline-block;
    min-width: 58px;
  }

  .footer-col-contact .footer-links a {
    font-size: 16px;
    font-weight: 700;
    color: var(--gold-strong);
  }

  .footer-bottom {
    padding: 10px 12px 12px;
  }

  .footer-muted,
  .footer-copy {
    line-height: 1.8;
    padding: 0 6px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  /* 行情卡：单列时限制宽度居中 */
  .hero-card {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  .trust-inner {
    gap: 8px 18px;
    font-size: 13px;
  }

  /* 移动端：全局字号收紧 */
  .logo-text strong {
    font-size: 17px;
  }

  .logo img {
    height: 42px;
  }

  .section-head {
    margin-bottom: 38px;
  }

  .cat-head h3 {
    font-size: 26px;
  }

  /* 品牌行：窄屏下防止超长英文挤压/换行错位 */
  .brand-list li {
    gap: 10px;
  }

  .brand-en {
    font-size: 10px;
    letter-spacing: 0.5px;
    white-space: normal;
    text-align: right;
    word-break: break-word;
    line-height: 1.5;
  }

  .market-table th,
  .market-table td {
    padding: 10px 14px;
  }

  .market-table td.market-cat {
    font-size: 26px;
  }

  .faq-item summary {
    padding: 16px 18px;
  }

  .faq-item p {
    padding: 0 18px 16px;
  }

  .contact-card h2,
  .area-card h2 {
    font-size: 20px;
  }

  .mobile-bar {
    display: flex;
  }

  body {
    padding-bottom: 88px;
  }
}

@media (max-width: 480px) {
  /* 首屏文字：窄屏下收紧字号与间距 */
  .hero-tag {
    font-size: 11px;
    padding: 6px 14px;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
  }

  .hero h1 {
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
  }

  .hero-brands {
    letter-spacing: 2px;
  }

  .hero-sub {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .hero-faith {
    font-size: 12px;
    margin-bottom: 22px;
  }

  .hero-actions {
    gap: 12px;
    margin-bottom: 24px;
  }

  .hero-points {
    gap: 10px 16px;
    font-size: 12px;
  }

  .about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
  }

  .about-stats li {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .about-stats li:nth-child(even) {
    border-right: none;
  }

  .about-stats li:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand {
    grid-column: auto;
    text-align: center;
  }

  .footer-logo {
    font-size: 20px;
  }

  .footer-desc br {
    display: none;
  }

  .footer-col-contact {
    padding: 16px;
  }

  /* 电话链接：窄屏下适当缩小，避免溢出 */
  .phone-link {
    font-size: 26px;
    gap: 8px;
  }

  /* 行情卡：窄屏下压缩间距与字号 */
  .hero-card {
    padding: 18px 14px;
  }

  .quote-list li {
    grid-template-columns: 1fr 0.9fr 1.05fr;
    padding: 11px 0;
  }

  .quote-list li.quote-head {
    font-size: 13px;
    padding: 2px 0 6px;
  }

  .quote-brand {
    font-size: 14px;
  }

  .quote-cond {
    font-size: 12px;
  }

  .quote-price {
    font-size: 14px;
  }

  .quote-note {
    font-size: 11px;
  }

  /* 窄屏：各区块字号进一步收紧 */
  .logo-text strong {
    font-size: 16px;
    letter-spacing: 0.5px;
  }

  .logo-text small {
    font-size: 11px;
  }

  .logo img {
    height: 36px;
  }

  .section-head h2 {
    font-size: 24px;
  }

  .section-eyebrow {
    font-size: 13px;
  }

  .section-head .section-desc {
    font-size: 14px;
  }

  .cat-head h3 {
    font-size: 24px;
  }

  .cat-head {
    margin-bottom: 16px;
  }

  /* 品牌行：窄屏下进一步收紧，长英文按单词优雅换行 */
  .brand-list li {
    gap: 8px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .brand-name {
    font-size: 15px;
    flex-shrink: 0;
  }

  .brand-en {
    font-size: 9px;
    letter-spacing: 0.4px;
    min-width: 0;
  }

  .market-table td.market-cat {
    font-size: 24px;
  }

  .about-copy p {
    font-size: 14px;
    line-height: 1.9;
  }

  .btn-lg {
    font-size: 16px;
    padding: 15px 28px;
  }

  .lead-guarantee {
    font-size: 13px;
  }

  .contact-list li {
    font-size: 14px;
  }

  .contact-list a {
    font-size: 17px;
  }

  .faq-item summary {
    font-size: 14px;
    padding: 15px 14px;
  }

  .faq-item p {
    font-size: 13px;
  }

  .footer-title {
    font-size: 13px;
  }

  .footer-links {
    font-size: 12px;
  }

  .footer-copy .beian {
    display: block;
    margin-top: 5px;
  }
}

/* ---------- 自定义下拉菜单（select 增强） ---------- */
.custom-select {
  position: relative;
  width: 100%;
}

.custom-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  text-align: left;
  background: var(--bg-card);
  border: 1.5px solid var(--line-gold);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.custom-select__trigger:hover {
  border-color: var(--gold);
}

.custom-select__trigger.is-active,
.custom-select__trigger:focus-visible {
  outline: none;
  border-color: var(--gold-strong);
  box-shadow: 0 0 0 4px rgba(201, 162, 75, 0.18);
}

.custom-select__value {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-select__arrow {
  flex: none;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s;
}

.custom-select.is-open .custom-select__arrow {
  transform: rotate(-135deg) translateY(-1px);
}

.custom-select__panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 30;
  max-height: 280px;
  overflow-y: auto;
  background: var(--bg-card);
  border: 1px solid var(--line-gold);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}

.custom-select.is-open .custom-select__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-select__option {
  padding: 11px 14px;
  font-size: 14px;
  color: var(--text);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition: background-color 0.2s, color 0.2s;
}

.custom-select__option:hover {
  background: rgba(201, 162, 75, 0.14);
  color: var(--gold-strong);
}

.custom-select__option.is-selected {
  background: linear-gradient(135deg, rgba(201, 162, 75, 0.24), rgba(201, 162, 75, 0.1));
  color: var(--gold-strong);
  font-weight: 600;
}

.custom-select__option.is-selected::after {
  content: "✓";
  flex: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-strong);
}

.custom-select__native {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}
