/* ============================================================
   湖北贝合典当有限公司 — 官网样式
   设计基调：极简 / 左对齐 / 低饱和 / 三色以内
   背景：米白   正文：灰   强调：朱红
   ============================================================ */

:root{
  --bg:        #FAF9F7;
  --bg-alt:    #F4F2EE;
  --bg-deep:   #EDE9E3;
  --ink:       #2B2A28;
  --gray:      #6E6A64;
  --gray-2:    #9B968E;
  --red:       #9C2B25;
  --line:      #E5E1DA;

  --wrap:      1120px;
  --gap:       56px;
  --radius:    2px;

  --font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC",
          -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; }

html{
  scroll-behavior:smooth;
  scroll-padding-top:76px;
  -webkit-text-size-adjust:100%;
}

body{
  margin:0;
  background:var(--bg);
  color:var(--gray);
  font-family:var(--font);
  font-size:16px;
  line-height:1.75;
  text-align:left;
  -webkit-font-smoothing:antialiased;
}

h1,h2,h3,h4{
  margin:0;
  color:var(--ink);
  font-weight:600;
  line-height:1.4;
  letter-spacing:.01em;
}

p{ margin:0 0 1em; }
p:last-child{ margin-bottom:0; }

a{
  color:inherit;
  text-decoration:none;
  transition:color .18s ease;
}

strong{ color:var(--ink); font-weight:600; }

ul,ol,dl{ margin:0; padding:0; list-style:none; }

img{ max-width:100%; display:block; }

.wrap{
  width:100%;
  max-width:var(--wrap);
  margin:0 auto;
  padding:0 28px;
}

.accent{ color:var(--red); }

/* ============ 导航 ============ */
.nav{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(250,249,247,.92);
  backdrop-filter:saturate(160%) blur(10px);
  border-bottom:1px solid transparent;
  transition:border-color .25s ease, background .25s ease;
}
.nav.is-stuck{
  border-bottom-color:var(--line);
  background:rgba(250,249,247,.97);
}

.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  height:72px;
}

.brand{ display:flex; flex-direction:column; line-height:1.2; }
.brand-cn{
  color:var(--ink);
  font-size:18px;
  font-weight:600;
  letter-spacing:.06em;
}
.brand-en{
  color:var(--gray-2);
  font-size:10px;
  letter-spacing:.18em;
  margin-top:3px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:30px;
  margin-left:auto;
}
.nav-links a{
  position:relative;
  color:var(--gray);
  font-size:14.5px;
  letter-spacing:.02em;
}
.nav-links a::after{
  content:"";
  position:absolute;
  left:0; bottom:-6px;
  width:100%; height:1px;
  background:var(--red);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .22s ease;
}
.nav-links a:hover{ color:var(--ink); }
.nav-links a:hover::after{ transform:scaleX(1); }

.nav-tel{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  line-height:1.25;
  padding-left:26px;
  border-left:1px solid var(--line);
}
.nav-tel-label{ color:var(--gray-2); font-size:11px; letter-spacing:.1em; }
.nav-tel-num{ color:var(--red); font-size:16px; font-weight:600; letter-spacing:.01em; }

.nav-toggle{
  display:none;
  width:40px; height:40px;
  padding:0;
  background:none;
  border:none;
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width:22px; height:1.5px;
  margin:5px auto;
  background:var(--ink);
  transition:transform .25s ease, opacity .2s ease;
}
.nav-toggle.is-open span:nth-child(1){ transform:translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2){ opacity:0; }
.nav-toggle.is-open span:nth-child(3){ transform:translateY(-6.5px) rotate(-45deg); }

/* ============ 首屏 ============ */
.hero{
  padding:104px 0 88px;
  background:
    linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
  border-bottom:1px solid var(--line);
}
.hero-inner{ max-width:780px; }

.eyebrow{
  display:inline-block;
  margin-bottom:26px;
  padding:6px 14px;
  background:var(--bg);
  border:1px solid var(--line);
  border-radius:var(--radius);
  color:var(--gray);
  font-size:12.5px;
  letter-spacing:.08em;
}

.hero-title{
  font-size:clamp(30px, 5vw, 46px);
  line-height:1.35;
  letter-spacing:.01em;
  margin-bottom:24px;
}

.hero-desc{
  max-width:640px;
  font-size:16.5px;
  color:var(--gray);
  margin-bottom:36px;
}

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

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 28px;
  border:1px solid transparent;
  border-radius:var(--radius);
  font-size:15px;
  letter-spacing:.02em;
  cursor:pointer;
  transition:background .2s ease, color .2s ease, border-color .2s ease;
}
.btn-primary{ background:var(--red); color:#fff; }
.btn-primary:hover{ background:#83221D; }
.btn-ghost{ border-color:var(--line); color:var(--ink); background:var(--bg); }
.btn-ghost:hover{ border-color:var(--gray-2); }

.hero-facts{
  display:flex;
  flex-wrap:wrap;
  gap:0;
  border-top:1px solid var(--line);
  padding-top:30px;
}
.hero-facts li{
  padding-right:44px;
  margin-right:44px;
  border-right:1px solid var(--line);
}
.hero-facts li:last-child{ border-right:none; margin-right:0; padding-right:0; }
.fact-num{
  display:block;
  color:var(--red);
  font-size:30px;
  font-weight:600;
  line-height:1.2;
  letter-spacing:.02em;
}
.fact-text{
  display:block;
  margin-top:6px;
  color:var(--gray-2);
  font-size:13px;
  line-height:1.6;
}

/* ============ 通用区块 ============ */
.section{ padding:88px 0; }
.section-alt{ background:var(--bg-alt); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }

.section-tag{
  margin-bottom:10px;
  color:var(--gray-2);
  font-size:11px;
  letter-spacing:.24em;
  text-transform:uppercase;
}
.section-title{
  position:relative;
  padding-bottom:18px;
  margin-bottom:34px;
  font-size:clamp(24px, 3.4vw, 31px);
}
.section-title::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  width:44px; height:2px;
  background:var(--red);
}
.section-lead{
  max-width:720px;
  margin-bottom:46px;
  color:var(--gray);
  font-size:16px;
}

/* ============ 关于我们 ============ */
.about-grid{
  display:grid;
  grid-template-columns:1.35fr 1fr;
  gap:var(--gap);
  align-items:start;
}
.about-text p{ font-size:16px; }

.about-card{
  padding:32px 30px;
  background:var(--bg);
  border:1px solid var(--line);
  border-left:2px solid var(--red);
  border-radius:var(--radius);
}
.about-card-title{
  margin-bottom:18px;
  color:var(--ink);
  font-size:16px;
  font-weight:600;
}
.rule-list li{
  position:relative;
  padding-left:20px;
  margin-bottom:12px;
  font-size:15px;
  color:var(--gray);
}
.rule-list li::before{
  content:"";
  position:absolute;
  left:0; top:.72em;
  width:7px; height:1px;
  background:var(--red);
}
.about-card-note{
  margin-top:20px;
  padding-top:18px;
  border-top:1px dashed var(--line);
  color:var(--gray-2);
  font-size:13.5px;
}

/* ============ 业务范围 ============ */
.biz-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:26px;
}
.biz-card{
  padding:38px 34px 34px;
  background:var(--bg);
  border:1px solid var(--line);
  border-radius:var(--radius);
  transition:border-color .25s ease, transform .25s ease;
}
.biz-card:hover{
  border-color:var(--gray-2);
  transform:translateY(-2px);
}
.biz-index{
  margin-bottom:14px;
  color:var(--red);
  font-size:13px;
  font-weight:600;
  letter-spacing:.16em;
}
.biz-title{ margin-bottom:10px; font-size:21px; }
.biz-sub{
  margin-bottom:26px;
  padding-bottom:24px;
  border-bottom:1px solid var(--line);
  color:var(--gray-2);
  font-size:14.5px;
}

.biz-row{
  display:grid;
  grid-template-columns:76px 1fr;
  gap:18px;
  padding:12px 0;
}
.biz-row + .biz-row{ border-top:1px dashed var(--line); }
.biz-row dt{
  color:var(--gray-2);
  font-size:13.5px;
  line-height:1.75;
  letter-spacing:.04em;
}
.biz-row dd{
  margin:0;
  color:var(--gray);
  font-size:15px;
  line-height:1.75;
}

.biz-note{
  margin-top:26px;
  color:var(--gray-2);
  font-size:13.5px;
}

/* ============ 资质证照 ============ */
.cert-block{
  margin-top:62px;
  padding-top:46px;
  border-top:1px solid var(--line);
}
.cert-block-title{
  margin-bottom:8px;
  color:var(--ink);
  font-size:18px;
  font-weight:600;
}
.cert-block-desc{
  margin-bottom:30px;
  color:var(--gray);
  font-size:15px;
}

.cert-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}
.cert-card{
  margin:0;
  background:var(--bg);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  transition:border-color .25s ease;
}
.cert-card:hover{ border-color:var(--gray-2); }

.cert-img{
  background:var(--bg-alt);
  border-bottom:1px solid var(--line);
  overflow:hidden;
}
.cert-img img{
  width:100%;
  height:auto;
  display:block;
  transition:transform .45s ease;
}
.cert-card:hover .cert-img img{ transform:scale(1.02); }

.cert-info{ padding:20px 22px 22px; }
.cert-name{
  position:relative;
  padding-bottom:12px;
  margin-bottom:12px;
  color:var(--ink);
  font-size:16px;
  font-weight:600;
}
.cert-name::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  width:28px; height:2px;
  background:var(--red);
}
.cert-meta{
  margin:0;
  color:var(--gray);
  font-size:14px;
  line-height:1.95;
}
.cert-meta span{
  display:inline-block;
  min-width:106px;
  color:var(--gray-2);
  font-size:13px;
}
.cert-note{
  margin-top:24px;
  color:var(--gray-2);
  font-size:13.5px;
}

/* ============ 办理流程 ============ */
.step-list{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:0;
  border-top:1px solid var(--line);
}
.step{
  position:relative;
  padding:32px 28px 8px 0;
}
.step + .step{
  padding-left:28px;
  border-left:1px solid var(--line);
}
.step-num{
  margin-bottom:14px;
  color:var(--red);
  font-size:26px;
  font-weight:600;
  line-height:1;
  letter-spacing:.02em;
}
.step-title{ margin-bottom:10px; font-size:17px; }
.step-text{ color:var(--gray); font-size:14.5px; }

/* ============ 费率表 ============ */
.table-wrap{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--bg);
  overflow:hidden;
}
.rate-table{
  width:100%;
  border-collapse:collapse;
  text-align:left;
}
.rate-table th{
  padding:16px 24px;
  background:var(--bg-deep);
  border-bottom:1px solid var(--line);
  color:var(--ink);
  font-size:13.5px;
  font-weight:600;
  letter-spacing:.04em;
  white-space:nowrap;
}
.rate-table td{
  padding:20px 24px;
  border-bottom:1px solid var(--line);
  color:var(--gray);
  font-size:15px;
  vertical-align:top;
}
.rate-table tbody tr:last-child td{ border-bottom:none; }
.rate-table tbody tr{ transition:background .2s ease; }
.rate-table tbody tr:hover{ background:var(--bg-alt); }
.rate-num{
  color:var(--red) !important;
  font-size:17px !important;
  font-weight:600;
  white-space:nowrap;
}

.rate-notes{
  margin-top:28px;
  padding-top:24px;
  border-top:1px solid var(--line);
}
.rate-notes li{
  position:relative;
  padding-left:18px;
  margin-bottom:10px;
  color:var(--gray-2);
  font-size:14px;
}
.rate-notes li::before{
  content:"";
  position:absolute;
  left:0; top:.78em;
  width:6px; height:1px;
  background:var(--gray-2);
}

/* ============ 合规提示 ============ */
.notice{
  padding:80px 0;
  background:var(--bg-deep);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.notice-label{
  display:inline-block;
  margin-bottom:12px;
  padding:4px 12px;
  background:var(--red);
  color:#fff;
  font-size:12px;
  letter-spacing:.1em;
  border-radius:var(--radius);
}
.notice-title{
  position:relative;
  padding-bottom:16px;
  margin-bottom:26px;
  font-size:clamp(21px, 2.8vw, 26px);
}
.notice-title::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  width:44px; height:2px;
  background:var(--red);
}
.notice-list{ max-width:840px; }
.notice-list li{
  position:relative;
  padding-left:24px;
  margin-bottom:14px;
  color:var(--gray);
  font-size:15.5px;
}
.notice-list li::before{
  content:"";
  position:absolute;
  left:0; top:.82em;
  width:10px; height:1px;
  background:var(--red);
}

/* ============ 联系我们 ============ */
.contact-info-solo{ max-width:620px; }
.contact-item{
  padding:18px 0;
  border-bottom:1px solid var(--line);
}
.contact-item:first-child{ padding-top:0; }
.contact-label{
  margin-bottom:4px;
  color:var(--gray-2);
  font-size:12.5px;
  letter-spacing:.12em;
}
.contact-value{
  color:var(--ink);
  font-size:17px;
  line-height:1.7;
}
.contact-value a:hover{ color:var(--red); }
.contact-value-muted{ color:var(--gray-2); font-size:14.5px; }
.contact-sub{ color:var(--gray-2); font-size:13px; }

/* ============ 页脚 ============ */
.footer{
  padding:52px 0 44px;
  background:var(--bg-alt);
  border-top:1px solid var(--line);
}
.footer-inner{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:28px;
}
.footer-name{
  margin-bottom:6px;
  color:var(--ink);
  font-size:16px;
  font-weight:600;
  letter-spacing:.03em;
}
.footer-slogan{ color:var(--gray-2); font-size:13px; letter-spacing:.06em; }
.footer-meta{ color:var(--gray-2); font-size:13px; max-width:520px; }
.footer-meta p{ margin-bottom:6px; }
.footer-meta a:hover{ color:var(--red); }
.dot{ margin:0 8px; }
.beian-num{
  color:var(--red);
  font-weight:500;
  letter-spacing:.04em;
}
.footer-copy{ margin-top:12px; font-size:12.5px; }

/* ============ 滚动入场 ============ */
.reveal{
  opacity:0;
  transform:translateY(16px);
  transition:opacity .6s ease, transform .6s ease;
}
.reveal.is-visible{
  opacity:1;
  transform:none;
}

/* ============ 响应式 ============ */
@media (max-width: 980px){
  .nav-links{ display:none; }
  .nav-toggle{ display:block; }
  .nav-tel{ margin-left:auto; }

  .nav-links.is-open{
    display:flex;
    position:absolute;
    top:72px; left:0; right:0;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    margin:0;
    padding:8px 28px 20px;
    background:var(--bg);
    border-bottom:1px solid var(--line);
  }
  .nav-links.is-open a{
    width:100%;
    padding:14px 0;
    border-bottom:1px solid var(--line);
  }
  .nav-links.is-open a:last-child{ border-bottom:none; }
  .nav-links.is-open a::after{ display:none; }

  .about-grid{ grid-template-columns:1fr; gap:34px; }
  .biz-grid{ grid-template-columns:1fr; }
  .step-list{ grid-template-columns:1fr 1fr; }
  .step{ padding:26px 24px 22px 0; }
  .step + .step{ padding-left:24px; }
  .step:nth-child(3){ padding-left:0; border-left:none; }
  .step:nth-child(3),
  .step:nth-child(4){ border-top:1px solid var(--line); }
  .step:nth-child(3)::before,
  .step:nth-child(4)::before{ display:none; }
}

@media (max-width: 700px){
  :root{ --gap:34px; }
  body{ font-size:15.5px; }
  .wrap{ padding:0 20px; }
  .hero{ padding:64px 0 60px; }
  .hero-facts{ gap:24px 0; }
  .hero-facts li{
    flex:0 0 50%;
    padding-right:20px;
    margin-right:0;
    border-right:none;
  }
  .hero-facts li:nth-child(odd){ border-right:1px solid var(--line); padding-right:20px; }
  .fact-num{ font-size:25px; }
  .section{ padding:60px 0; }
  .notice{ padding:56px 0; }
  .step-list{ grid-template-columns:1fr; }
  .step{ padding:24px 0 20px; }
  .step + .step{
    padding-left:0;
    border-left:none;
    border-top:1px solid var(--line);
  }

  .rate-table thead{ display:none; }
  .rate-table tr{
    display:block;
    padding:18px 20px;
    border-bottom:1px solid var(--line);
  }
  .rate-table tbody tr:last-child{ border-bottom:none; }
  .rate-table td{
    display:flex;
    gap:14px;
    padding:5px 0;
    border:none;
  }
  .rate-table td::before{
    content:attr(data-label);
    flex:0 0 90px;
    color:var(--gray-2);
    font-size:13px;
  }
  .rate-num{ font-size:16px !important; }

  .nav-tel{ padding-left:18px; }
  .nav-tel-label{ display:none; }
  .nav-tel-num{ font-size:14.5px; letter-spacing:0; }

  .cert-block{ margin-top:44px; padding-top:34px; }
  .cert-grid{ grid-template-columns:1fr; gap:22px; }

  .hero-actions{
    flex-direction:column;
    gap:12px;
    margin-bottom:48px;
  }
  .hero-actions .btn{ width:100%; }

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

/* 极窄屏：导航内电话号码让位，首屏与联系区均已提供号码 */
@media (max-width: 420px){
  .nav-tel{ display:none; }
  .brand-en{ display:none; }
}

/* ============ 打印 ============ */
@media print{
  .nav, .hero-actions, .nav-toggle{ display:none; }
  body{ background:#fff; }
}
