/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 16px 104px;
  background: #ffe5e7; /* 低饱和珊瑚 */
}

/* 左右横向装饰字（铺在两侧，不旋转） */
.hero::before,
.hero::after {
  content: "PRE-RENT CHECK";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 140px;
  font-weight: 900;
  letter-spacing: 4px;
  color: #000;
  opacity: 0.04;          /* 很淡，只填空间 */
  white-space: nowrap;
  pointer-events: none;
}

/* 左侧 */
.hero::before {
  left: -260px;           /* 推到屏幕外一点，形成“边缘铺满” */
  text-align: left;
}

/* 右侧 */
.hero::after {
  right: -260px;
  text-align: right;
}

/* 中央内容区 */
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  background: #ffffff;
  padding: 48px 32px;
  border-radius: 10px;
}

/* 文案 */
.hero-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 16px;
  color: #111;
}

.hero-title span {
  display: block;
  font-weight: 800;
}

.hero-desc {
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 28px;
  color: #222;
}

/* CTA：唯一重物件 */
.hero-cta {
  display: inline-block;
  background: #f4b400;
  color: #000;
  font-weight: 800;
  padding: 16px 30px;
  border: 3px solid #000;
  box-shadow: 6px 6px 0 #000;
  text-decoration: none;
}

.hero-cta:hover {
  transform: translate(1px, 1px);
  box-shadow: 4px 4px 0 #000;
}

.hero-note {
  margin-top: 16px;
  font-size: 14px;
  color: #444;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .hero {
    padding: 64px 14px 76px;
  }

  /* 移动端去掉装饰字 */
  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-inner {
    padding: 32px 18px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-desc {
    font-size: 16px;
  }
}
:root{
  --bg: #f6f5f0;
  --panel: #ffffff;
  --ink: #111;
  --muted: #666;
  --line: #e5e3db;
  --accent: #f5c400;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background:var(--bg);
  color:var(--ink);
}

.section{
  max-width:1200px;
  margin:80px auto;
  padding:0 20px;
}

.section h2{
  font-size:36px;
  margin-bottom:48px;
}

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:28px;
}

.panel{
  background:var(--panel);
  border-radius:20px;
  padding:28px;
  border:1px solid var(--line);
}

/* ✅ 修复点开始 */
.panel-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:24px;
  gap:16px;
}

.panel-title{
  font-size:22px;
  font-weight:700;
  line-height:1.25;
  white-space:nowrap;
  flex-shrink:0;
}

.panel-link{
  font-size:14px;
  color:var(--ink);
  text-decoration:none;
  border-bottom:2px solid var(--accent);
  flex-shrink:0;
}

.cards{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.card{
  border:1px solid var(--line);
  border-radius:14px;
  padding:18px;
  background:#fff;
}

.tag{
  display:inline-block;
  font-size:11px;
  font-weight:600;
  padding:4px 8px;
  border-radius:999px;
  background:#f0efe9;
  margin-bottom:10px;
}

.card-title{
  font-size:16px;
  font-weight:600;
  margin-bottom:6px;
}

.card-desc{
  font-size:14px;
  color:var(--muted);
}

/* mobile */
@media (max-width:900px){
  .grid{
    grid-template-columns:1fr;
  }
}
/* ===== Panel header mobile fix ===== */
@media (max-width: 480px) {
  .panel-header {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .panel-title {
    width: 100%;
  }

  .panel-link {
    margin-left: auto;
    margin-top: 6px;
  }
}
/* ===== WHO SECTION ===== */

.section.who{
  margin:120px auto;
}


.who .wrap{
  display:grid;
  grid-template-columns:420px 1fr;
  gap:70px;
  position:relative;
  width:100%;

}

/* vertical line */
.who .wrap:before{
  content:"";
  position:absolute;
  left:420px;
  top:0;
  bottom:0;
  width:1px;
  background:#ece9e0;
}

/* LEFT */
.who .left h2{
  font-size:42px;
  margin-bottom:16px;
}

.who .left{
  display:flex;
  align-items:center;
}

.who #leftText{
  font-size:22px;
  font-weight:500;
  line-height:1.5;
  color:#222;
  max-width:320px;
  transition:opacity .25s ease;
}

/* ITEMS */
.who .item{
  position:relative;
  padding:34px 0;
  border-top:1px solid var(--line);
  transition:.35s ease;
}

.who .item:hover{
  transform:translateX(4px);
}

/* STEP NUMBER */
.who .num{
  position:absolute;
  left:-46px;
  top:36px;
  font-size:16px;
  font-weight:600;
  color:#000;
  opacity:.14;
}

/* TAG */
.who .item .tag{
  font-size:11px;
  font-weight:700;
  letter-spacing:.08em;
  padding:4px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  transition:.25s ease;
}

.who .item:hover .tag{
  border-color:var(--accent);
  background:#f5c40012;
}

/* TITLE */
.who .item h3{
  margin:10px 0 4px;
  font-size:24px;
  font-weight:700;
  letter-spacing:-0.01em;
}

/* LEAD */
.who .lead{
  color:var(--muted);
  margin-bottom:12px;
}

/* CHIPS */
.who .chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  opacity:0;
  transform:translateY(6px);
  transition:.35s ease;
}

.who .chips span{
  font-size:13px;
  padding:6px 12px;
  border-radius:999px;
  border:1px solid #eee9df;
  background:#ffffffaa;
  color:#333;
}

.who .item:hover .chips{
  opacity:1;
  transform:none;
}

/* MOBILE */
@media(max-width:900px){
  .who .wrap{
    grid-template-columns:1fr;
    gap:40px;
  }
  .who .wrap:before{display:none}
  .who .num{display:none}
}
/* ===== FIX WHO TITLE GAP ===== */
.section + .section.who{
  margin-top:-40px;
}
/* ===== CTA (NO PANEL) ===== */

.cta-divider{
  height:1px;
  background:var(--line);
  margin:80px 0 60px;
}

.cta-wrap{
  text-align:center;
}

.cta-title{
  font-size:36px;
  font-weight:800;
  margin:0 0 28px;
  letter-spacing:-0.01em;
}

@media(max-width:768px){
  .cta-title{
    font-size:26px;
  }
}
.cta-btn{
  display:inline-block;
  background:#f4b400;
  color:#000;
  font-weight:800;
  padding:16px 30px;
  border:3px solid #000;
  box-shadow:6px 6px 0 #000;
  text-decoration:none;
}

.cta-btn:hover{
  transform:translate(1px,1px);
  box-shadow:4px 4px 0 #000;
}
/* ===== CTA MINIMAL (CENTER) ===== */
.section.cta-minimal{
  text-align:center;
  margin:120px auto;
}

.cta-divider{
  width:88px;
  height:2px;
  background:var(--line);
  margin:0 auto 28px;
}

.cta-title{
  margin:0 0 28px;
}

.section.cta-minimal .cta-btn{
  display:inline-block;
}
