/* ==============================
   文里科技 & 玺悦嘉 官网样式
   Color: 金 #C9A86C / 墨 #2C2C2C / 青 #88B998
   ============================== */

:root {
  --gold: #C9A86C;
  --gold-light: #DDCBA4;
  --gold-dark: #A88A4F;
  --dark: #2C2C2C;
  --dark-soft: #3A3A3A;
  --green: #88B998;
  --green-light: #B4D5BD;
  --white: #FFFFFF;
  --bg: #FAF9F6;
  --bg-warm: #F5F2EB;
  --text: #1A1A1A;
  --text-secondary: #555555;
  --text-muted: #888888;
  --border: #E8E4DA;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,.06);
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.1);
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --max-width: 1200px;
  --nav-height: 72px;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px; line-height: 1.8; color: var(--text);
  background: var(--white); overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* Typography */
h1 { font-size: 2.8rem; font-weight: 700; line-height: 1.3; letter-spacing: .02em; }
h2 { font-size: 2.2rem; font-weight: 600; line-height: 1.4; letter-spacing: .01em; }
h3 { font-size: 1.4rem; font-weight: 600; line-height: 1.5; }
.section-title {
  text-align: center; margin-bottom: 60px;
}
.section-title .en { display: block; font-size: .85rem; color: var(--gold); text-transform: uppercase; letter-spacing: .15em; margin-bottom: 12px; font-weight: 500; }
.section-title .cn { display: block; font-size: 2rem; font-weight: 700; color: var(--dark); }
.section-title .sub { display: block; font-size: 1rem; color: var(--text-secondary); margin-top: 10px; }
.text-gold { color: var(--gold); }
.text-dark { color: var(--dark); }
.text-green { color: var(--green); }
.text-center { text-align: center; }

/* ==================== Header / Nav ==================== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height); background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.header.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 42px; width: auto; }
.nav-logo .brand-text { font-size: 1.15rem; font-weight: 700; color: var(--dark); letter-spacing: .03em; }
.nav-logo .brand-text span { color: var(--gold); }
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-menu a {
  display: block; padding: 10px 18px; font-size: .92rem; font-weight: 500;
  color: var(--text); border-radius: 6px; transition: var(--transition);
  position: relative;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--gold); background: rgba(201,168,108,.08); }
.nav-menu a.active::after {
  content: ''; position: absolute; bottom: 0; left: 18px; right: 18px;
  height: 2px; background: var(--gold); border-radius: 1px;
}
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 1px; transition: var(--transition); }

/* ==================== Hero Banner ==================== */
.hero { position: relative; height: 100vh; min-height: 600px; display: flex; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; background: linear-gradient(135deg, #1A1A2E 0%, #16213E 40%, #0F3460 100%);
  z-index: 0;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(201,168,108,.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 30%, rgba(136,185,152,.08) 0%, transparent 60%);
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 680px; }
.hero-content .tag { display: inline-block; font-size: .85rem; color: var(--gold); border: 1px solid rgba(201,168,108,.3); padding: 6px 20px; border-radius: 30px; margin-bottom: 28px; letter-spacing: .06em; }
.hero-content h1 { font-size: 3.2rem; font-weight: 700; color: var(--white); margin-bottom: 18px; }
.hero-content h1 span { color: var(--gold); }
.hero-content .subtitle { font-size: 1.25rem; color: rgba(255,255,255,.7); margin-bottom: 12px; }
.hero-content .tagline { font-size: 1rem; color: rgba(255,255,255,.5); margin-bottom: 36px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 32px; border-radius: 50px; font-size: .95rem; font-weight: 600; letter-spacing: .03em; transition: var(--transition); }
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,108,.35); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.3); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: var(--dark); border: 1px solid var(--border); }
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 8px 24px; font-size: .85rem; }

.hero-indicators {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 2;
}
.hero-indicators span {
  width: 32px; height: 3px; border-radius: 2px; background: rgba(255,255,255,.25);
  cursor: pointer; transition: var(--transition);
}
.hero-indicators span.active { background: var(--gold); width: 48px; }

/* ==================== Section Common ==================== */
.section { padding: 100px 0; }
.section-gray { background: var(--bg); }
.section-warm { background: var(--bg-warm); }
.section-dark { background: var(--dark); color: var(--white); }
.section-dark .section-title .cn { color: var(--white); }

/* ==================== Cards ==================== */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--white); border-radius: var(--radius-lg); padding: 40px 32px;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  border: 1px solid var(--border); position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .icon {
  width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center;
  justify-content: center; font-size: 1.6rem; margin-bottom: 20px; color: var(--gold);
}
.card .icon.gold { background: rgba(201,168,108,.1); color: var(--gold); }
.card .icon.green { background: rgba(136,185,152,.1); color: var(--green); }
.card .icon.dark { background: rgba(44,44,44,.06); color: var(--dark); }
.card h3 { margin-bottom: 10px; color: var(--dark); }
.card p { color: var(--text-secondary); font-size: .94rem; line-height: 1.75; }

/* ==================== Value Highlights ==================== */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.value-item {
  text-align: center; padding: 50px 30px; border-right: 1px solid var(--border);
  transition: var(--transition);
}
.value-item:last-child { border-right: none; }
.value-item:hover { background: rgba(201,168,108,.04); }
.value-item .v-icon { font-size: 2rem; margin-bottom: 16px; }
.value-item h3 { font-size: 1.05rem; color: var(--dark); margin-bottom: 8px; }
.value-item .v-brand { font-size: .78rem; color: var(--gold); margin-bottom: 8px; letter-spacing: .05em; }
.value-item p { font-size: .85rem; color: var(--text-secondary); line-height: 1.7; }

/* ==================== Stats ==================== */
.stats-row { display: flex; justify-content: center; gap: 80px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-item .num { font-size: 2.8rem; font-weight: 700; color: var(--gold); margin-bottom: 6px; }
.stat-item .label { font-size: .9rem; color: var(--text-secondary); }

/* ==================== Table ==================== */
.table-wrap { overflow-x: auto; margin-top: 40px; }
table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
thead { background: var(--dark); }
thead th { padding: 16px 20px; color: var(--white); font-weight: 500; font-size: .92rem; text-align: left; }
tbody td { padding: 16px 20px; border-bottom: 1px solid var(--border); font-size: .92rem; color: var(--text-secondary); }
tbody tr:hover { background: rgba(201,168,108,.03); }
tbody tr:last-child td { border-bottom: none; }

/* ==================== Feature List ==================== */
.feature-list { display: flex; flex-direction: column; gap: 32px; }
.feature-item { display: flex; gap: 24px; align-items: flex-start; }
.feature-item .f-num {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px;
  background: rgba(201,168,108,.1); color: var(--gold); display: flex;
  align-items: center; justify-content: center; font-weight: 700; font-size: 1.2rem;
}
.feature-item .f-content h3 { margin-bottom: 6px; }
.feature-item .f-content p { color: var(--text-secondary); font-size: .94rem; }

/* ==================== Two Column Layout ==================== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.two-col .col-text h2 { margin-bottom: 20px; }
.two-col .col-text p { color: var(--text-secondary); margin-bottom: 16px; }

/* ==================== Section Intro ==================== */
.section-intro { max-width: 760px; margin: 0 auto 60px; text-align: left; }
.section-intro p { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.9; }

/* ==================== Tab Nav ==================== */
.tab-nav { display: flex; justify-content: center; gap: 4px; margin-bottom: 50px; flex-wrap: wrap; }
.tab-nav button {
  padding: 10px 28px; border-radius: 30px; font-size: .92rem; font-weight: 500;
  background: transparent; color: var(--text-secondary); border: 1px solid var(--border);
  transition: var(--transition);
}
.tab-nav button.active, .tab-nav button:hover {
  background: var(--gold); color: var(--white); border-color: var(--gold);
}
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ==================== Accordion ==================== */
.accordion { max-width: 860px; margin: 0 auto; }
.accordion-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.accordion-header {
  width: 100%; padding: 18px 24px; background: var(--white); display: flex;
  justify-content: space-between; align-items: center; font-size: 1rem; font-weight: 600;
  color: var(--dark); transition: var(--transition);
}
.accordion-header:hover { background: var(--bg); }
.accordion-header .arrow { transition: var(--transition); font-size: .8rem; color: var(--gold); }
.accordion-item.open .accordion-header .arrow { transform: rotate(180deg); }
.accordion-body { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s ease; }
.accordion-item.open .accordion-body { padding: 0 24px 20px; max-height: 2000px; }
.accordion-body p { color: var(--text-secondary); font-size: .94rem; }

/* ==================== Page Header ==================== */
.page-header {
  padding: 160px 0 80px; text-align: center; background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
  color: var(--white); position: relative; overflow: hidden;
}
.page-header::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(201,168,108,.1) 0%, transparent 70%);
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { font-size: 2.4rem; margin-bottom: 12px; }
.page-header .sub { font-size: 1.05rem; color: rgba(255,255,255,.6); }
.breadcrumb { margin-top: 20px; font-size: .85rem; color: rgba(255,255,255,.4); }
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--gold); }

/* ==================== Highlight Box ==================== */
.highlight-box {
  background: linear-gradient(135deg, rgba(201,168,108,.08), rgba(201,168,108,.03));
  border: 1px solid rgba(201,168,108,.15); border-radius: var(--radius-lg);
  padding: 40px; margin: 40px 0;
}
.highlight-box.green { background: linear-gradient(135deg, rgba(136,185,152,.08), rgba(136,185,152,.03)); border-color: rgba(136,185,152,.15); }
.highlight-box h3 { color: var(--gold); margin-bottom: 12px; }
.highlight-box.green h3 { color: var(--green); }
.highlight-box p { color: var(--text-secondary); }

/* ==================== Red Lines ==================== */
.redlines { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 32px; }
.redline {
  padding: 24px; border-left: 3px solid #E74C3C; background: rgba(231,76,60,.04);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.redline h4 { color: #E74C3C; margin-bottom: 6px; font-size: .95rem; }
.redline p { color: var(--text-secondary); font-size: .88rem; }

/* ==================== Contact Info ==================== */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.contact-card {
  background: var(--white); border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow-sm); text-align: center; border: 1px solid var(--border);
}
.contact-card .c-icon { font-size: 2rem; color: var(--gold); margin-bottom: 14px; }
.contact-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.contact-card p { color: var(--text-secondary); font-size: .9rem; }

/* ==================== Info Block ==================== */
.info-block { margin-bottom: 60px; }
.info-block:last-child { margin-bottom: 0; }
.info-block h2 { font-size: 1.6rem; color: var(--dark); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid var(--gold); display: inline-block; }
.info-block p { color: var(--text-secondary); margin-bottom: 12px; line-height: 1.9; }
.info-block ul { padding-left: 20px; }
.info-block ul li { color: var(--text-secondary); margin-bottom: 8px; position: relative; padding-left: 16px; }
.info-block ul li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* ==================== Recruitment ==================== */
.pillar-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 30px; }
.pillar {
  background: var(--white); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-sm); text-align: center; border: 1px solid var(--border);
}
.pillar .p-icon { font-size: 2rem; margin-bottom: 12px; }
.pillar h4 { color: var(--dark); margin-bottom: 6px; }
.pillar p { color: var(--text-secondary); font-size: .88rem; }

.timeline { display: flex; flex-direction: column; gap: 24px; max-width: 600px; margin: 0 auto; }
.timeline-item { display: flex; gap: 16px; align-items: flex-start; }
.timeline-item .dot {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold); color: var(--white); display: flex;
  align-items: center; justify-content: center; font-weight: 700; font-size: 1rem;
}
.timeline-item .t-content h4 { margin-bottom: 4px; }
.timeline-item .t-content p { color: var(--text-secondary); font-size: .9rem; }

/* ==================== Quote Block ==================== */
.quote-block {
  text-align: center; padding: 60px 40px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(201,168,108,.06), rgba(136,185,152,.06));
}
.quote-block .q-text { font-size: 1.4rem; font-weight: 500; color: var(--dark); font-style: italic; margin-bottom: 16px; }
.quote-block .q-author { font-size: .95rem; color: var(--gold); }

/* ==================== Product Sections ==================== */
.product-section {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 44px;
  margin-bottom: 28px;
  border-left: 4px solid var(--green);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: box-shadow .25s ease, border-color .25s ease;
}
.product-section:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
  border-left-color: var(--gold);
}
.product-section:last-child { margin-bottom: 0; }
.product-section .ps-content h2 {
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 16px; color: var(--dark);
}
.product-section .ps-content h2 .ps-num {
  flex-shrink: 0;
  font-size: 2.4rem; font-weight: 800; color: var(--green);
  line-height: 1; opacity: .35;
}
.product-section .ps-content .ps-intro { color: var(--text-secondary); line-height: 1.9; }
.product-section .ps-content .ps-tag {
  display: inline-block; font-size: .75rem; font-weight: 600; padding: 3px 14px;
  border-radius: 20px; margin-left: 8px; vertical-align: middle;
}
.ps-tag-free { background: #e8f5e9; color: var(--green); }
.ps-tag-paid { background: #f0f0f0; color: var(--text-muted); }
.sub-products { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.sub-product {
  background: var(--bg); border-radius: var(--radius); padding: 24px;
  border: 1px solid var(--border);
}
.sub-product h4 { color: var(--dark); margin-bottom: 8px; font-size: 1rem; }
.sub-product p { color: var(--text-secondary); font-size: .88rem; }

/* ==================== Footer ==================== */
.footer { background: var(--dark); color: rgba(255,255,255,.5); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer h5 { color: var(--white); font-size: .95rem; margin-bottom: 16px; }
.footer p, .footer a { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 2; transition: var(--transition); }
.footer a:hover { color: var(--gold); }
.footer .brand-info { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 2; }
.footer .brand-info .f-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer .brand-info .f-logo img { height: 36px; }
.footer .brand-info .f-logo span { color: var(--white); font-weight: 700; font-size: 1rem; }
.footer .brand-info .f-logo span em { color: var(--gold); font-style: normal; }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.3); }
.footer-bottom .beian { color: rgba(255,255,255,.3); font-size: .82rem; }
.footer-bottom .beian:hover { color: var(--gold); }

/* ==================== Company Entity Info ==================== */
.footer-entity {
  margin-top: 16px; font-size: .78rem; line-height: 1.9;
  color: rgba(255,255,255,.34); text-align: center; word-break: break-all;
}
.entity-list {
  max-width: 780px; margin: 0 auto; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 8px 28px; box-shadow: var(--shadow-sm);
}
.entity-list li { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px dashed var(--border); font-size: .95rem; }
.entity-list li:last-child { border-bottom: none; }
.entity-list li .k { flex-shrink: 0; width: 130px; color: var(--dark); font-weight: 600; }
.entity-list li .v { color: var(--text-secondary); word-break: break-all; }
.entity-list li .v a { color: var(--gold); }

/* ==================== Contact Page ==================== */
.contact-intro { text-align: center; margin-bottom: 60px; }
.contact-intro-logo { height: 64px; margin: 0 auto 20px; }
.contact-intro h2 { color: var(--dark); }
.contact-intro-brand { color: var(--text-secondary); margin-top: 6px; }
.contact-intro-slogan { color: var(--gold); font-size: 1.05rem; font-weight: 600; margin-top: 8px; }
.contact-intro-desc { color: var(--text-muted); font-size: .92rem; margin-top: 10px; }
.contact-card { display: block; transition: var(--transition); }
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(201,168,108,.4); }
.contact-card .c-main { color: var(--dark); font-weight: 600; font-size: .98rem; }
.contact-card .c-main a { color: var(--gold); }
.contact-card .c-sub { color: var(--text-muted); font-size: .82rem; margin-top: 4px; }
.contact-card .c-addr { line-height: 1.7; font-weight: 500; font-size: .92rem; }
.connect-card { text-align: left; padding: 32px 28px; }
.connect-card h3 { font-size: 1.15rem; }
.contact-cta {
  display: inline-block; text-align: center; max-width: 720px;
  padding: 50px 48px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(201,168,108,.1), rgba(136,185,152,.08));
  border: 1px solid rgba(201,168,108,.18);
}
.contact-cta h3 { color: var(--dark); margin-bottom: 12px; }
.contact-cta p { color: var(--text-secondary); }
.contact-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }

/* ==================== Responsive ==================== */
@media (max-width: 1024px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .value-item:nth-child(2n) { border-right: none; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-section { padding: 28px 24px; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .section { padding: 60px 0; }
  .hero-content h1 { font-size: 2.2rem; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; top: var(--nav-height); left: 0; right: 0;
    background: var(--white); flex-direction: column; padding: 16px 0;
    border-bottom: 1px solid var(--border); display: none;
    box-shadow: var(--shadow);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 14px 24px; border-radius: 0; }
  .value-grid { grid-template-columns: 1fr; }
  .value-item { border-right: none; border-bottom: 1px solid var(--border); }
  .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .stats-row { gap: 40px; }
  .page-header { padding: 120px 0 50px; }
  .product-section { padding: 24px 20px; }
  .product-section .ps-content h2 .ps-num { font-size: 1.8rem; }
  .page-header h1 { font-size: 1.8rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .entity-list { padding: 4px 18px; }
  .entity-list li { flex-direction: column; gap: 2px; }
  .entity-list li .k { width: auto; }
  .contact-cta { padding: 32px 22px; }
  .hero-btns { flex-direction: column; }
}
