/* STYLE_V5_MARK_20260130_055506 */

:root{
  --bg:#f6f4f1;
  --card:#ffffff;
  --text:#0b1220;
  --muted:#5b6b7f;

  --azul:#1f5d9c;
  --azul2:#2e7db9;
  --gold:#c7a26d;

  --border: rgba(11, 18, 32, .10);
  --shadow: 0 18px 46px rgba(2, 6, 23, .16);
  --shadow-soft: 0 12px 30px rgba(2, 6, 23, .10);

  --radius: 18px;
  --radius-lg: 26px;
  --max: 1120px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color:var(--text);
  background: var(--bg);
}

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

.container{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
}

.muted{ color:var(--muted); }
.lead{ font-size:1.05rem; line-height:1.7; color: rgba(255,255,255,.86); }
h1,h2,h3{ margin:0 0 10px 0; letter-spacing:-.02em; }
h1{ font-size: clamp(2.0rem, 3.2vw, 3.1rem); line-height:1.08; color:#fff; }
h2{ font-size: clamp(1.55rem, 2.2vw, 2.2rem); line-height:1.15; }
h3{ font-size: 1.1rem; }

.section{
  padding: 76px 0;
}

.section-soft{
  background: linear-gradient(180deg, rgba(31,93,156,.06), rgba(199,162,109,.04));
  border-top: 1px solid rgba(11, 18, 32, .06);
  border-bottom: 1px solid rgba(11, 18, 32, .06);
}

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 18px;
  margin-bottom: 26px;
}
.section-head p{ margin:0; max-width: 620px; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 650;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  cursor:pointer;
  white-space:nowrap;
}
.btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow-soft); }

.btn-primary{
  background: linear-gradient(135deg, var(--azul), var(--azul2));
  color:#fff;
}
.btn-ghost{
  background: rgba(255,255,255,.14);
  color:#fff;
  border-color: rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
}
.btn-soft{
  background: rgba(31,93,156,.10);
  border-color: rgba(31,93,156,.18);
  color: var(--azul);
}

/* HERO */
.hero{
  position:relative;
  min-height: 76vh;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  overflow:hidden;
}
.hero-bg{
  position:absolute;
  inset:0;
  background-image: url('hero_bg.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(1200px 520px at 12% 28%, rgba(15,23,42,.62), rgba(15,23,42,.15) 55%, rgba(15,23,42,.10)),
    linear-gradient(180deg, rgba(11,18,32,.52), rgba(11,18,32,.18) 55%, rgba(246,244,241,1) 100%);
}
.hero-nav{
  position:relative;
  z-index:2;
  padding: 18px 0;
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
  font-weight:800;
  letter-spacing:.02em;
}
.brand img{
  width: 34px; height: 34px;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.28));
}
.nav-links{
  display:flex;
  align-items:center;
  gap:16px;
  color: rgba(255,255,255,.88);
  font-weight:650;
}
.nav-links a{ padding:8px 10px; border-radius: 12px; }
.nav-links a:hover{ background: rgba(255,255,255,.10); }
.nav-cta{
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.20);
  backdrop-filter: blur(10px);
}

.hero-content{ position:relative; z-index:2; padding: 22px 0 0; }
.hero-glass{
  max-width: 640px;
  padding: 22px 22px 18px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.20);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 60px rgba(0,0,0,.22);
}
.hero-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.20);
  color: rgba(255,255,255,.92);
  font-weight: 750;
  margin-bottom: 14px;
}
.cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 16px;
}
.hero-mini{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}
.mini-card{
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
}
.mini-title{ font-weight:800; color:#fff; font-size:.95rem; }
.mini-sub{ color: rgba(255,255,255,.80); font-size:.92rem; margin-top:6px; line-height:1.35; }

.hero-edit{ margin-top: 10px; }
.hero-edit a{
  display:inline-block;
  padding: 7px 10px;
  border-radius: 12px;
  color: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.08);
}

.hero-fade{
  position:absolute;
  left:0; right:0; bottom:-1px;
  height: 110px;
  background: linear-gradient(180deg, rgba(246,244,241,0), rgba(246,244,241,1));
  z-index:1;
}

/* HOW IT WORKS */
.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.step-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 18px 18px 16px;
  position:relative;
  overflow:hidden;
}
.step-card::before{
  content:"";
  position:absolute; inset:-40px -40px auto auto;
  width: 160px; height: 160px;
  background: radial-gradient(circle at 30% 30%, rgba(31,93,156,.20), rgba(199,162,109,.12), rgba(255,255,255,0) 70%);
  transform: rotate(12deg);
}
.step-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom: 12px;
  position:relative;
  z-index:1;
}
.step-no{
  font-weight:900;
  letter-spacing:.06em;
  color: rgba(31,93,156,.78);
}
.step-icon{
  width: 44px; height: 44px;
  border-radius: 14px;
  background: rgba(31,93,156,.10);
  border: 1px solid rgba(31,93,156,.18);
  color: var(--azul);
  display:grid; place-items:center;
}
.step-icon svg{ width: 22px; height:22px; }
.bullets{
  margin: 12px 0 0 0;
  padding:0;
  list-style:none;
  position:relative;
  z-index:1;
}
.bullets li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin: 8px 0;
  color: var(--muted);
}
.bullets li::before{
  content:"";
  width: 8px; height:8px; margin-top:7px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--azul), var(--gold));
}

.section-cta{
  margin-top: 18px;
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}

/* SERVICES */
.service-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 18px 18px 14px;
  position:relative;
  overflow:hidden;
}
.service-bar{
  position:absolute;
  left:0; top:0;
  height: 6px; width:100%;
  background: linear-gradient(90deg, var(--azul), var(--azul2), var(--gold));
}
.service-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  margin-top: 6px;
}
.service-icon{
  width: 46px; height: 46px;
  border-radius: 16px;
  background: rgba(199,162,109,.14);
  border: 1px solid rgba(199,162,109,.22);
  color: rgba(31,93,156,.92);
  display:grid; place-items:center;
}
.service-icon svg{ width:22px; height:22px; }
.service-tags{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  justify-content:flex-end;
}
.service-tags span{
  font-size:.78rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(31,93,156,.08);
  border: 1px solid rgba(31,93,156,.14);
  color: rgba(31,93,156,.94);
  font-weight: 650;
}
.checklist{
  margin: 12px 0 0 0;
  padding:0;
  list-style:none;
}
.checklist li{
  margin: 9px 0;
  color: var(--muted);
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.checklist li::before{
  content:"✓";
  width: 18px; height: 18px;
  display:inline-grid;
  place-items:center;
  border-radius: 7px;
  background: rgba(31,93,156,.10);
  border: 1px solid rgba(31,93,156,.16);
  color: var(--azul);
  font-weight: 900;
  margin-top: 2px;
}

/* VR */
.vr-wrap{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items:stretch;
}
.vr-left{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}
.vr-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top: 12px; }
.vr-note{ margin-top: 12px; color: var(--muted); font-size:.92rem; }

.vr-right{
  border-radius: var(--radius-lg);
  overflow:hidden;
  border: 1px solid rgba(11,18,32,.10);
  box-shadow: var(--shadow-soft);
  background:#fff;
}
.vr-embed{
  position:relative;
  padding-top: 56.25%;
}
.vr-embed iframe{
  position:absolute; inset:0;
  width:100%; height:100%;
  border:0;
}
.vr-placeholder{
  height:100%;
  min-height: 320px;
  background-size:cover;
  background-position:center;
  position:relative;
}
.vr-badge{
  position:absolute;
  left: 14px;
  top: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(11,18,32,.10);
  font-weight: 800;
}

/* RESULTS */
.results{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 16px;
  border-radius: var(--radius-lg);
  overflow:hidden;
  border: 1px solid rgba(11,18,32,.10);
  box-shadow: var(--shadow);
  background:
    radial-gradient(900px 360px at 12% 18%, rgba(31,93,156,.18), rgba(199,162,109,.10), rgba(255,255,255,0) 68%),
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.72));
}
.results-left{
  padding:24px 26px 24px 26px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
}
.results-right{
  min-height: 420px;
  background-size: cover;
  background-position: center;
  position:relative;
}
.results-right::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(246,244,241,1), rgba(246,244,241,0) 46%);
  z-index:1;
  pointer-events:none;
}
/* Results image floating tags (bottom-left) */
.img-tags{
  position:absolute;
  left:16px;
  bottom:16px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  z-index:2; /* above ::after */
}

.img-tag{
  font-size:.82rem;
  font-weight:700;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(255,255,255,.55);
  box-shadow:0 12px 26px rgba(15,23,42,.16);
  backdrop-filter: blur(10px);
  color:rgba(15,23,42,.78);
  white-space:nowrap;
}

/* mobile spacing */
@media (max-width: 900px){
  .img-tags{ left:12px; bottom:12px; gap:8px; }
  .img-tag{ font-size:.78rem; padding:7px 10px; }
}
/* --- Results top 4 blocks: same width & aligned --- */
.badge-row,
.meta-row{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.stat-pill,
.meta-card{
  width: 100%;
  height: 100%;
  min-height: 76px;
  display:flex;
  flex-direction: column;
  justify-content: center;
}

/* keep your original look */
.stat-pill{
  background: rgba(11,18,32,.86);
  color:#fff;
  border-radius:18px;
  padding:12px 14px;
  box-shadow: var(--shadow-soft);
}
.stat-pill .big{ font-size:1.1rem; font-weight:900; letter-spacing:-.02em; }
.stat-pill .small{ color: rgba(255,255,255,.78); font-size:.84rem; margin-top:4px; }

.meta-card{
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(11,18,32,.10);
  border-radius:18px;
  padding:12px 14px;
}
.meta-card .k{ color: var(--muted); font-size:.82rem; }
.meta-card .v{ font-weight:900; margin-top:4px; }

/* Mobile: stack 1 per row */
@media (max-width: 720px){
  .badge-row,
  .meta-row{
    grid-template-columns: 1fr;
  }
}
.project-info{ margin-top: 14px; }
.project-title{ font-weight: 950; font-size: 1.05rem; }
.project-desc{ color: var(--muted); margin-top: 6px; line-height:1.5; }

.project-cards{
  margin-top: 14px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.p-card{
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(11,18,32,.10);
  border-radius: 18px;
  padding: 12px 14px;
}
.p-tag{
  display:inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(31,93,156,.10);
  border: 1px solid rgba(31,93,156,.18);
  color: var(--azul);
  font-weight: 800;
  font-size: .78rem;
}
.p-title{ font-weight: 900; margin-top: 10px; }
.p-sub{ color: var(--muted); margin-top: 6px; font-size: .92rem; }

/* ABOUT */
.about{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
  align-items:stretch;
}
.about-left{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}
.highlights{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}
.hl{
  background: rgba(31,93,156,.06);
  border: 1px solid rgba(31,93,156,.12);
  border-radius: 16px;
  padding: 12px;
}
.hl .k{ font-weight: 900; }
.hl .v{ color: var(--muted); margin-top: 6px; font-size:.92rem; line-height:1.35; }

.about-right{
  border-radius: var(--radius-lg);
  overflow:hidden;
  border: 1px solid rgba(11,18,32,.10);
  box-shadow: var(--shadow-soft);
  background-size: cover;
  background-position:center;
  min-height: 360px;
  position:relative;
}
.about-right::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(11,18,32,.12), rgba(11,18,32,.40));
}
.about-overlay{
  position:absolute;
  left: 14px; right: 14px; bottom: 14px;
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}
.about-chip{
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(11,18,32,.10);
  font-weight: 850;
}

/* CONTACT */
.contact{
  position:relative;
  border-radius: var(--radius-lg);
  overflow:hidden;
  border: 1px solid rgba(11,18,32,.10);
  box-shadow: var(--shadow);
}
.contact-bg{
  position:absolute;
  inset:0;
  background-image:url('contact_bg.jpg');
  background-size:cover;
  background-position:center;
  transform: scale(1.02);
}
.contact::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(246,244,241,.92), rgba(246,244,241,.72) 48%, rgba(246,244,241,.60));
}
.contact-inner{
  position:relative;
  z-index:1;
  padding: 18px;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 16px;
}
.contact-left h2{ margin-bottom: 8px; }
.contact-chips{
  margin-top: 12px;
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}
/* Contact 左侧信息块：毛玻璃卡片 */
.contact .left, .contact-left, .contactInfo {
  background: rgba(255,255,255,0.28);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 22px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  padding: 22px 22px;
}

/* 文字更清晰 */
.contact .left h2, .contact-left h2, .contactInfo h2 {
  color: #0f172a;
}
.contact .left, .contact-left, .contactInfo {
  color: rgba(15,23,42,0.82);
}

.chip{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(11,18,32,.10);
  font-weight: 750;
}
.chip-static{ cursor:default; }

.contact-right{
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(11,18,32,.10);
  border-radius: var(--radius-lg);
  padding: 14px;
  backdrop-filter: blur(10px);
}
.form label{
  display:block;
  font-weight: 800;
  margin: 10px 0 6px;
  font-size:.92rem;
}
.form input, .form textarea{
  width:100%;
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px solid rgba(11,18,32,.14);
  background: rgba(255,255,255,.92);
  outline:none;
  font-size: .96rem;
}
.form textarea{ min-height: 110px; resize: vertical; }
.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.form-row{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-top: 12px;
}
.hint{ color: var(--muted); font-size:.92rem; }
.fineprint{ margin-top: 10px; color: var(--muted); font-size:.85rem; }

.footer{
  margin-top: 18px;
  color: rgba(11,18,32,.60);
  font-size:.92rem;
  padding-bottom: 18px;
}

/* RESPONSIVE */
@media (max-width: 980px){
  .nav-links{ display:none; }
  .hero-mini{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .service-grid{ grid-template-columns: 1fr; }
  .vr-wrap{ grid-template-columns: 1fr; }
  .results{ grid-template-columns: 1fr; }
  .results-right{ min-height: 320px; }
  .results-right::after{ background: linear-gradient(180deg, rgba(246,244,241,1), rgba(246,244,241,0) 60%); }
  .about{ grid-template-columns: 1fr; }
  .contact-inner{ grid-template-columns: 1fr; }
  .grid2{ grid-template-columns: 1fr; }
}
/* ============ Contact (Pro Layout) ============ */
.contact { padding: 64px 0; }
.contact .container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

.contact-grid{
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 22px;
  align-items: stretch;
}

.contact-info{
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 420px;
  /* 你现在这张“材料拼贴”背景很OK */
  background-image: url("assets/contact_bg.jpg");
  background-size: cover;
  background-position: center;
}

.contact-info__glass{
  height: 100%;
  padding: 26px;
  border-radius: 26px;
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 55px rgba(0,0,0,0.18);
}

.contact-title{
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0f172a;
}
.contact-subtitle{
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(15,23,42,0.78);
  max-width: 42ch;
}

.contact-pills{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.55);
  color: rgba(15,23,42,0.86);
  text-decoration: none;
  font-size: 13px;
}
.pill strong{ color:#0f172a; font-weight:700; }

.contact-note{
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(15,23,42,0.70);
}
.contact-note .dot{
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(37,99,235,0.9);
}

/* Right form */
.contact-form .form-card{
  height: 100%;
  border-radius: 26px;
  background: rgba(255,255,255,0.26);
  border: 1px solid rgba(255,255,255,0.36);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 55px rgba(0,0,0,0.16);
  padding: 22px;
}

.form-head h3{
  margin: 0 0 6px;
  font-size: 18px;
  color:#0f172a;
}
.form-head p{
  margin: 0 0 16px;
  font-size: 13px;
  color: rgba(15,23,42,0.70);
}

.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field{ margin-bottom: 12px; }
.field label{
  display:block;
  font-size: 12px;
  margin: 0 0 6px;
  color: rgba(15,23,42,0.72);
}
.field input, .field textarea{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.78);
  padding: 12px 12px;
  outline: none;
  color: #0f172a;
}
.field textarea{ resize: vertical; }

.form-actions{ display:flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.btn-primary{
  width: fit-content;
  border: none;
  border-radius: 14px;
  padding: 12px 18px;
  background: #2563eb;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.hint{ font-size: 12px; color: rgba(15,23,42,0.65); }

/* Responsive */
@media (max-width: 920px){
  .contact-grid{ grid-template-columns: 1fr; }
  .contact-info{ min-height: 360px; }
  .form-row{ grid-template-columns: 1fr; }
}

/* ============ HERO polish (desktop + mobile) ============ */

/* 让玻璃卡片更“像高级产品”，重点更聚焦 */
.hero-glass{
  max-width: 560px;              /* 关键：别太宽，标题就不会“散” */
  padding: 28px 26px 22px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* 标题：控制行宽 + 视觉节奏（你现在看着大但不高级，核心是“行宽太长 + 行距不精”） */
.hero-glass h1{
  max-width: 14ch;               /* 关键：让标题更像“海报级”排版 */
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-wrap: balance;            /* 支持的浏览器会自动更好换行 */
  margin-bottom: 12px;
}

/* 副标题：更清晰、更专业 */
.hero-glass .lead{
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(255,255,255,.86);
  max-width: 52ch;
}

/* CTA：统一高度 + 更像“品牌按钮” */
.cta-row{
  gap: 12px;
  margin-top: 18px;
}
.cta-row .btn{
  height: 44px;
  padding: 0 16px;
  border-radius: 14px;
}

/* 两个小卡片：更紧凑、更像信息结构，不要“随意堆字” */
.hero-mini{
  margin-top: 18px;
  gap: 12px;
}
.mini-card{
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
}
.mini-title{ font-size: .93rem; }
.mini-sub{ font-size: .90rem; line-height: 1.35; }

/* 手机端：你要“看起来很专业”，关键是：卡片全宽、按钮一行一个、字号收敛、间距舒服 */
@media (max-width: 680px){
  .hero{ min-height: auto; }
  .hero-content{ padding: 14px 0 0; }

  .hero-glass{
    max-width: 100%;
    padding: 18px 16px 16px;
    border-radius: 20px;
  }

  .hero-kicker{
    padding: 7px 10px;
    font-size: 13px;
    margin-bottom: 12px;
  }

  .hero-glass h1{
    max-width: 18ch;             /* 手机屏更窄，允许稍长一点 */
    font-size: clamp(1.75rem, 7vw, 2.2rem);
  }

  .cta-row{
    display: grid;
    grid-template-columns: 1fr;  /* 按钮一行一个，最稳 */
    gap: 10px;
  }
  .cta-row .btn{ width: 100%; }

  .hero-mini{
    grid-template-columns: 1fr;  /* 小卡片也竖排 */
  }
}
/* ===== VR Showcase (Fig-1 Layout) ===== */
.vr-showcase{
  max-width: 1100px;
  margin: 0 auto;
}

.vr-head{
  text-align: center;
  margin-bottom: 22px;
}

.vr-head h2{
  margin: 0;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.vr-head .muted{
  margin: 12px auto 0;
  max-width: 760px;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.55;
}

.vr-cta{
  margin-top: 14px;
}

/* Big media frame */
.vr-media{
  width: 100%;
}

.vr-frame{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,.10);
  background: rgba(255,255,255,.45);
  backdrop-filter: blur(8px);
}

/* Fallback for older browsers */
@supports not (aspect-ratio: 16 / 9){
  .vr-frame{ height: 0; padding-top: 56.25%; }
  .vr-frame iframe,
  .vr-frame video,
  .vr-frame .vr-placeholder{ position:absolute; inset:0; }
}

.vr-frame iframe,
.vr-frame video{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.vr-caption{
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
  opacity: .70;
}

/* Placeholder (if no embed_url) */
.vr-placeholder{
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.06);
}

.vr-placeholder-inner{
  text-align: center;
  padding: 18px;
}

.vr-play{
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  position: relative;
  margin: 0 auto 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.vr-play:before{
  content:"";
  position:absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%,-50%);
  width: 0; height: 0;
  border-left: 18px solid rgba(0,0,0,.70);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.vr-placeholder-text a{
  text-decoration: underline;
}

/* Mobile tuning */
@media (max-width: 768px){
  .vr-head{ margin-bottom: 16px; }
  .vr-frame{ border-radius: 18px; }
  .vr-caption{ font-size: 12px; }
}
/* =========================
   VR Section - Layout v2 (Center + Large)
   Put this at the END of style.css
========================= */
#vr .vr-wrap{
  display:block;              /* 取消两列网格，变成单列 */
  max-width: 1120px;
  margin: 0 auto;
}

#vr .vr-left{
  max-width: 900px;
  margin: 0 auto;
  text-align: center;         /* 标题/文案居中 */
}

#vr .vr-left h2{
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

#vr .vr-left .muted{
  font-size: 16px;
  line-height: 1.6;
  margin: 0 auto 18px;
}

#vr .vr-actions{
  justify-content: center;    /* 按钮居中 */
  gap: 10px;
  margin-top: 14px;
}

#vr .vr-right{
  max-width: 1120px;
  margin: 22px auto 0;        /* 让视频区域居中并拉开距离 */
}

/* 让视频变成“大、居中、16:9”，像图1那种 */
#vr .vr-embed{
  padding: 0 !important;      /* 去掉旧的 18px 内边距（关键） */
  height: auto !important;
  aspect-ratio: 16 / 9;       /* 自适应比例 */
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}

#vr .vr-embed iframe{
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* 没有 embed_url 时的占位图也拉大 */
#vr .vr-placeholder{
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
}

/* 手机端优化：标题别太大，按钮自动换行，视频仍然满宽 */
@media (max-width: 768px){
  #vr .vr-left{
    text-align: left;         /* 手机更专业：左对齐更清晰 */
  }
  #vr .vr-left h2{
    font-size: 30px;
  }
  #vr .vr-actions{
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  #vr .vr-placeholder{
    min-height: 240px;
  }
}

/* =============================
   HERO refinements (2026-01-29)
   Goal: cleaner spacing, 1-line kicker, tighter title, buttons stay on one row,
   highlights 2-up on most screens.
   ============================= */

.hero-glass{
  max-width: 700px;
  padding: 34px 34px 28px;
  border: 1px solid rgba(255,255,255,.30);
  box-shadow: 0 26px 70px rgba(12, 18, 32, .16);
}

.hero-kicker{
  display:inline-block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: .98rem;
  padding: 10px 16px;
  background: rgba(255,255,255,.22);
  border: 1px solid rgba(255,255,255,.18);
}

.hero-title{
  font-size: clamp(2.1rem, 3.4vw, 3.05rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-top: 14px;
}

.hero-sub{
  margin-top: 14px;
  max-width: 44ch;
  color: rgba(255,255,255,.90);
}

.cta-row{
  margin-top: 18px;
  display:flex;
  gap: 12px;
  align-items:center;
  flex-wrap: nowrap;
}

.cta{
  padding: 10px 16px;
  border-radius: 999px;
}

.cta.secondary{
  white-space: nowrap;
}

.hero-mini{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mini-card{
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.14);
}

.mini-title{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.mini-desc{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Responsive: keep 2-up highlights longer; only stack on very small screens */
@media (max-width: 560px){
  .hero-glass{ padding: 22px 18px 18px; }
  .cta-row{ gap: 10px; }
  .cta{ padding: 10px 14px; }
}

@media (max-width: 360px){
  .cta-row{ flex-wrap: wrap; }
  .hero-mini{ grid-template-columns: 1fr; }
}
/* ===== HOW (premium cards like your screenshot) ===== */
.how { padding: 56px 0; }
.how-head{ display:flex; align-items:flex-start; gap:28px; }
.how-head h2{ margin:0; font-size:48px; letter-spacing:-.02em; }
.how-sub{
  margin-top:10px;
  padding-left:18px;
  border-left:2px solid rgba(31,93,156,.25);
  color: rgba(11,18,32,.72);
  line-height:1.6;
  max-width:520px;
}

.how-grid{
  margin-top:26px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:18px;
}

.how-card{
  position:relative;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(11,18,32,.08);
  border-radius: 22px;
  padding: 18px 18px 16px;
  box-shadow: 0 18px 40px rgba(2,6,23,.08);
  overflow:hidden;
}

.how-card::before{
  content:"";
  position:absolute;
  inset:-40px -80px auto auto;
  width:260px; height:220px;
  transform: rotate(18deg);
  background: radial-gradient(circle at 30% 30%, rgba(31,93,156,.22), rgba(199,163,95,.10) 60%, transparent 72%);
  pointer-events:none;
}

.how-top{ display:flex; align-items:center; justify-content:space-between; margin-bottom:10px; }
.how-num{
  font-weight:700;
  font-size:13px;
  color: rgba(31,93,156,.9);
  background: rgba(31,93,156,.10);
  border: 1px solid rgba(31,93,156,.18);
  padding: 4px 10px;
  border-radius: 999px;
}
.how-ico{
  width:40px; height:40px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: rgba(31,93,156,.10);
  border: 1px solid rgba(31,93,156,.18);
  font-size:18px;
}

.how-card h3{ margin:6px 0 8px; font-size:18px; }
.how-desc{ margin:0 0 12px; color: rgba(11,18,32,.70); line-height:1.55; }

.how-bullets{ list-style:none; margin:0; padding:0; display:grid; gap:10px; }
.how-bullets li{
  position:relative;
  padding-left:18px;
  color: rgba(11,18,32,.68);
}
.how-bullets li::before{
  content:"";
  position:absolute;
  left:0; top:.55em;
  width:10px; height:10px;
  border-radius:50%;
  background: linear-gradient(135deg, rgba(31,93,156,.85), rgba(199,163,95,.85));
  box-shadow: 0 6px 14px rgba(2,6,23,.12);
}

.how-cta{ margin-top:16px; display:flex; gap:12px; }
.how-cta .btn{
  display:inline-flex; align-items:center; justify-content:center;
  height:46px; padding:0 18px;
  border-radius:14px;
  border:1px solid rgba(11,18,32,.12);
  background: rgba(255,255,255,.65);
  color: rgba(11,18,32,.86);
  font-weight:700;
  text-decoration:none;
}
.how-cta .btn.btn-ghost{
  background: rgba(31,93,156,.10);
  border-color: rgba(31,93,156,.22);
  color: rgba(31,93,156,.95);
}

/* mobile */
@media (max-width: 900px){
  .how-head{ flex-direction:column; }
  .how-head h2{ font-size:34px; }
  .how-grid{ grid-template-columns: 1fr; }
}
.how-bullets{ list-style:none; padding:0; margin:0; display:grid; gap:10px; }
.how-bullets li{ display:flex; gap:10px; align-items:flex-start; color:var(--text); opacity:.85; }
.how-bullets li::before{
  content:"";
  width:10px; height:10px; margin-top:6px; border-radius:50%;
  background: linear-gradient(180deg, var(--azul), var(--azul2));
  box-shadow: 0 6px 14px rgba(31,93,156,.25);
  flex:0 0 10px;
}
/* STEPS_PREMIUM_PATCH_20260130 */

#como .steps{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 360px));
  justify-content:center;
  gap:18px;
  align-items:stretch;
  margin-top:28px;
}

#como .step-card{
  width:100%;
  padding:22px 22px 18px;
  border-radius:28px;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
  border:1px solid rgba(11,18,32,.08);
  box-shadow: 0 22px 70px rgba(2,6,23,.12);
}

#como .step-top{ margin-bottom:14px; }

#como .step-no{
  padding:6px 12px;
  border-radius:999px;
  font-weight:800;
  letter-spacing:.08em;
  font-size:.82rem;
  background: rgba(255,255,255,.78);
  border:1px solid rgba(31,93,156,.18);
  color: var(--azul);
}

#como .step-icon{
  width:42px;
  height:42px;
  border-radius:14px;
  background: rgba(255,255,255,.70);
  border:1px solid rgba(31,93,156,.18);
  color: var(--azul);
  box-shadow: 0 10px 30px rgba(2,6,23,.10);
}

#como .step-card h3{
  font-size:1.08rem;
  margin:6px 0 10px;
}

#como .step-card p{
  margin:0 0 12px;
  font-size:.98rem;
  line-height:1.55;
  color: rgba(11,18,32,.72);
}

#como .step-card ul.bullets{ margin-top:8px; }

#como .step-card ul.bullets li{
  gap:10px;
  margin:10px 0;
}

#como .step-card ul.bullets li::before{
  width:12px;
  height:12px;
  border-radius:999px;
  box-shadow: 0 10px 20px rgba(2,6,23,.14);
}

/* 平板/手机：变成单卡片居中（你左图那种） */
@media (max-width: 980px){
  #como .steps{
    grid-template-columns: minmax(0, 380px);
    justify-items:center;
  }
}

/* 小屏手机：卡片更紧凑 */
@media (max-width: 420px){
  #como .steps{ grid-template-columns: minmax(0, 1fr); }
  #como .step-card{
    padding:18px 18px 16px;
    border-radius:26px;
  }
  #como .step-icon{ width:40px; height:40px; }
}
/* BULLETS_COMPAT_PATCH_20260130 */

/* 同时兼容：ul.bullets 和 ul.how-bullets，统一做成“左图那种高级圆点” */
.how-card ul.bullets,
.how-card ul.how-bullets{
  list-style:none;
  padding:0;
  margin:12px 0 0;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.how-card ul.bullets li,
.how-card ul.how-bullets li{
  position:relative;
  padding-left:24px;
  line-height:1.35;
}

.how-card ul.bullets li::before,
.how-card ul.how-bullets li::before{
  content:"";
  position:absolute;
  left:0;
  top:0.38em;
  width:10px;
  height:10px;
  border-radius:999px;
  background:linear-gradient(135deg, rgba(31,93,156,.65), rgba(201,154,67,.55));
  box-shadow:0 6px 16px rgba(2,6,23,.18);
}

/* 手机端：变成单列居中（你左图那种） */
@media (max-width: 980px){
  .how-grid{ grid-template-columns:1fr !important; }
  .how-card{ max-width:420px; margin:0 auto; }
}
/* HOW_ALIGN_PATCH_20260130_C */

/* 让每张卡的“描述区”占用同样高度 -> bullets 起点就齐了 */
.how-card .how-desc,
.how-card p.muted{
  min-height: 78px;   /* 你这三张卡描述最长大概3行，78px够用；想更齐就加到 88px */
  margin-bottom: 14px;
}

/* bullets 圆点与文字：用 flex 做基线对齐，解决换行看起来不齐的问题 */
.how-card ul.bullets li,
.how-card ul.how-bullets li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-left: 0 !important; /* 把旧的缩进干掉 */
}

/* 把圆点从“绝对定位”改成“正常布局”，换行会自然对齐 */
.how-card ul.bullets li::before,
.how-card ul.how-bullets li::before{
  position: static !important;
  top: auto !important;
  left: auto !important;
  margin-top: .25em;         /* 微调圆点与第一行文字的垂直对齐 */
  flex: 0 0 12px;
}

/* 手机端：描述区不需要这么高，避免显得空 */
@media (max-width: 860px){
  .how-card .how-desc,
  .how-card p.muted{
    min-height: 0;
  }
}
/* Hero CTA: 3 buttons in one row on desktop */
.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}

@media (min-width: 900px){
  .cta-row{ flex-wrap:nowrap; }
  .cta-row .btn{ white-space:nowrap; }
}

/* Calendly button style (premium but consistent) */
.btn-calendly{
  background:#fff;
  color: var(--azul2);
  border:1px solid rgba(46,123,217,.35);
  box-shadow:0 8px 20px rgba(46,123,217,.12);
}

.btn-calendly:hover{
  background:rgba(46,123,217,.06);
  border-color: rgba(46,123,217,.55);
  transform: translateY(-1px);
}
/* --- HERO CTA: 3 buttons same row on desktop --- */
.cta-row{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
  margin-top: 14px;
}

.cta-row .btn{
  width: 100%;
  justify-content: center;
  text-align: center;
  border-radius: 14px;
}

/* mobile: stack nicely */
@media (max-width: 760px){
  .cta-row{
    grid-template-columns: 1fr;
  }
}
/* base button feel */
.btn{
  transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

/* WhatsApp (primary) */
.btn-primary{
  background: #1e5fd7;
  border: 1px solid #1e5fd7;
  color: #fff;
}
.btn-primary:hover{
  background: transparent;
  color: #1e5fd7;
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
  transform: translateY(-1px);
}

/* Secondary (ghost) */
.btn-ghost{
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(20,28,36,.14);
  color: #1b2430;
}
.btn-ghost:hover{
  background: transparent;
  border-color: rgba(20,28,36,.24);
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
  transform: translateY(-1px);
}

/* Third (outline) — align style with ghost */
.btn-outline{
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(20,28,36,.14);
  color: #1b2430;
}
.btn-outline:hover{
  background: transparent;
  border-color: rgba(20,28,36,.24);
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
  transform: translateY(-1px);
}
/* ===== Audience / Para quem é ===== */
#audience, #para-quem { /* 兼容你可能用的 id */
}

.section-head.split{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
}

@media (max-width: 900px){
  .section-head.split{ flex-direction:column; align-items:flex-start; }
}

.audience-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}

@media (max-width: 900px){
  .audience-grid{ grid-template-columns: 1fr; }
}

.audience-card{
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 18px;
  padding: 16px 16px 14px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(10px);
}

.audience-card h3{
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .2px;
}

.audience-card p{
  margin: 0;
  line-height: 1.55;
  color: rgba(15, 23, 42, 0.70);
}
/* =========================
   Audience / Para quem é
   ========================= */
#para-quem .container{
  max-width: 1120px;          /* 控制整体宽度：更“高级”不拉满 */
}

#para-quem .section-head.split{
  align-items: baseline;      /* 标题与副标题基线对齐更自然 */
  gap: 28px;
  margin-bottom: 18px;
}

#para-quem .section-head.split h2{
  letter-spacing: -0.02em;
}

#para-quem .section-head.split .muted{
  max-width: 560px;           /* 关键：副标题别太长一行 */
  line-height: 1.55;
  margin: 0;
  opacity: .9;
}

/* 卡片三列：更均匀、更强一致性 */
#para-quem .audience-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;       /* 保证等高基础 */
}

/* 卡片质感：浅玻璃 + 边框 + 更精致阴影 */
#para-quem .audience-card{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 18px;
  padding: 18px 18px 16px;
  min-height: 112px;          /* 关键：让三张卡视觉等高 */
  box-shadow: 0 12px 28px rgba(15,23,42,.08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

/* 卡片 hover：更“顶级”的微交互 */
#para-quem .audience-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(15,23,42,.12);
  border-color: rgba(37,99,235,.18);  /* 跟你网站蓝色体系呼应 */
  background: rgba(255,255,255,.88);
}

#para-quem .audience-card h3{
  margin: 0 0 8px 0;
  font-size: 15px;
  letter-spacing: -0.01em;
}

#para-quem .audience-card p{
  margin: 0;
  line-height: 1.55;
  opacity: .9;
}

/* 响应式：平板 2 列，手机 1 列 */
@media (max-width: 980px){
  #para-quem .section-head.split{
    flex-direction: column;
    align-items: flex-start;
  }
  #para-quem .section-head.split .muted{
    max-width: 720px;
  }
  #para-quem .audience-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px){
  #para-quem .audience-grid{
    grid-template-columns: 1fr;
  }
}
#para-quem .audience-card{
  position: relative;
}
#para-quem .audience-card:before{
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(37,99,235,.18);
  box-shadow: 0 0 0 6px rgba(37,99,235,.08);
}
/* Results left: center everything inside */
.results-left{
  display:flex;
  flex-direction:column;
  align-items:center;   /* 关键：全部水平居中 */
  justify-content:center;
  text-align:center;    /* 文字居中 */
}

/* 让上面4个块整体居中，且不贴左边 */
.results-left .badge-row,
.results-left .meta-row{
  width: 100%;
  justify-items:center; /* grid 子项居中 */
}

/* 让4个块本身也居中显示文字 */
.results-left .stat-pill,
.results-left .meta-card{
  align-items:center;
  text-align:center;
}

/* 下面两张小卡片那一行也整体居中 */
.results-left .result-cards,
.results-left .cards-row,
.results-left .service-cards{
  justify-content:center;
}

/* 如果下面两张卡是 grid，就加这个 */
.results-left .result-cards{
  justify-items:center;
}
/* ===== Results: Furniture overlay (glass card) ===== */
.results-right{
  position:relative;
  overflow:hidden;
}

/* keep the gradient layer non-blocking */
.results-right::after{
  pointer-events:none;
}

.furn-overlay{
  position:absolute;
  top:14px;
  right:14px;
  width:min(340px, 86%);
  padding:14px 14px 12px;
  border-radius:16px;
  background:linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.68));
  border:1px solid rgba(255,255,255,.55);
  box-shadow:0 18px 40px rgba(15,23,42,.18);
  backdrop-filter:blur(10px);
}

.furn-kicker{
  font-size:.78rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(15,23,42,.65);
  margin-bottom:6px;
}

.furn-title{
  font-weight:800;
  font-size:1.02rem;
  color:rgba(15,23,42,.92);
  margin-bottom:6px;
}

.furn-text{
  font-size:.92rem;
  color:rgba(15,23,42,.72);
  line-height:1.35;
}

.furn-chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:10px;
}

.furn-chips .chip{
  font-size:.78rem;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(15,23,42,.06);
  border:1px solid rgba(15,23,42,.08);
  color:rgba(15,23,42,.78);
}

.furn-cta{
  display:inline-flex;
  margin-top:10px;
  padding:8px 12px;
  border-radius:12px;
  font-weight:700;
  background:rgba(15,23,42,.92);
  color:#fff;
  text-decoration:none;
}

.furn-cta:hover{
  background:rgba(15,23,42,.80);
}

/* Mobile: overlay becomes a normal block (won't cover the furniture image) */
@media (max-width: 900px){
  .furn-overlay{
    position:static;
    margin:12px;
    width:auto;
  }
}