/* ============================================================
   HENZO 卓专管理咨询 — 新版统一样式 v2026
   设计方向：专业、简洁、医药咨询行业质感
   主色：#1a3a5c（深海蓝）  强调色：#c0392b（砖红）
   字体：Noto Serif SC（标题）+ Noto Sans SC（正文）
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:wght@400;700&family=Noto+Serif+SC:wght@400;600;700&family=Noto+Sans+SC:wght@300;400;500;700&display=swap');

/* ---- CSS 变量 ---- */
:root {
  --primary:   #1a3a5c;
  --primary-light: #2a5298;
  --accent:    #c0392b;
  --accent-light: #e74c3c;
  --bg:        #f5f7fa;
  --bg-white:  #ffffff;
  --text:      #2c3e50;
  --text-light:#6c7a89;
  --border:    #dce3ec;
  --sidebar-w: 200px;
  --header-h:  68px;
  --radius:    6px;
  --shadow:    0 2px 12px rgba(26,58,92,.10);
  --shadow-md: 0 4px 24px rgba(26,58,92,.14);
  --transition:0.25s ease;
}

/* ---- Reset / Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: var(--primary-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1,h2,h3,h4 {
  font-family: 'Noto Serif SC', 'Songti SC', serif;
  line-height: 1.3;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(26,58,92,.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(255,255,255,.08), var(--shadow);
  display: flex;
  align-items: center;
}
.header-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 38px; height: 38px;
  background: var(--accent);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Noto Serif SC', serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-en {
  font-family: 'Noto Serif SC', serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 3px;
}
.logo-cn {
  font-size: 11px;
  color: rgba(255,255,255,.65);
  letter-spacing: 1px;
}

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  display: block;
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  background: rgba(255,255,255,.12);
  color: #fff;
}
.main-nav a.active {
  color: #fff;
  position: relative;
}
.main-nav a.active::after {
  content:'';
  position:absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 16px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* Header Right (lang/home) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-actions a {
  font-size: 13px;
  color: rgba(255,255,255,.70);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.header-actions a:hover {
  color: #fff;
  background: rgba(255,255,255,.10);
}
.header-actions svg { width:16px; height:16px; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  border: none;
  background: transparent;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   PAGE WRAPPER
   ============================================================ */
.page-body {
  flex: 1;
  padding-top: var(--header-h);
  display: flex;
  flex-direction: column;
}

/* ============================================================
   HERO (首页全屏轮播)
   ============================================================ */
.hero {
  position: relative;
  height: calc(100vh - var(--header-h));
  min-height: 480px;
  overflow: hidden;
}
.hero-slides { position: relative; width:100%; height:100%; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide::before {
  content:'';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(26,58,92,.68) 0%, rgba(26,58,92,.30) 60%, transparent 100%);
}
.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  max-width: 760px;
}
.hero-content h2 {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.hero-content p {
  font-size: clamp(14px, 2vw, 18px);
  opacity: .88;
  text-shadow: 0 1px 6px rgba(0,0,0,.25);
}
.hero-dots {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px;
}
.hero-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.6);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.hero-dots button.active {
  background: #fff;
  transform: scale(1.25);
}

/* ============================================================
   PAGE HERO (内页 banner)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 52px 24px 40px;
  color: #fff;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 700;
  margin-bottom: 8px;
}
.page-hero .breadcrumb {
  font-size: 13px;
  opacity: .72;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,.75); }
.page-hero .breadcrumb a:hover { color: #fff; }
.page-hero .breadcrumb .sep { opacity: .5; }

/* ============================================================
   MAIN LAYOUT (内页双栏)
   ============================================================ */
.content-wrap {
  flex: 1;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding: 40px 24px 60px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

/* Sidebar */
.sidebar {
  flex-shrink: 0;
  width: var(--sidebar-w);
  position: sticky;
  top: calc(var(--header-h) + 20px);
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.sidebar-title {
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 12px 18px;
  text-transform: uppercase;
}
.sidebar-nav a {
  display: block;
  padding: 11px 18px;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), color var(--transition), padding var(--transition);
  position: relative;
}
.sidebar-nav a:last-child { border-bottom: none; }
.sidebar-nav a:hover {
  background: var(--bg);
  padding-left: 22px;
}
.sidebar-nav a.active {
  background: #eef2f8;
  color: var(--primary);
  font-weight: 600;
  padding-left: 22px;
}
.sidebar-nav a.active::before {
  content:'';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
}

/* Content Area */
.content-area {
  flex: 1;
  min-width: 0;
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 40px;
}
.content-area h2 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.content-area h3 {
  font-size: 16px;
  color: var(--primary);
  margin: 24px 0 10px;
  padding-left: 12px;
  border-left: 3px solid var(--accent);
}
.content-area p {
  font-size: 14.5px;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.85;
}
.content-area strong { color: var(--accent); }

/* ============================================================
   SERVICE CARDS (服务/医疗领域卡片)
   ============================================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--primary-light);
}
.service-card-icon {
  width: 44px; height: 44px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 20px;
}
.service-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.service-card p {
  font-size: 12.5px;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   TEAM CARDS
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 20px;
}
.team-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); }
.team-card-head {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 28px 20px;
  text-align: center;
  color: #fff;
}
.team-card-head img {
  width: 90px; height: 90px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.35);
  margin: 0 auto 12px;
  object-fit: cover;
}
.team-card-head h4 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.team-card-head p { font-size: 12px; opacity: .78; }
.team-card-body {
  padding: 16px 20px;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.8;
}

/* ============================================================
   HOME SECTIONS
   ============================================================ */
.section {
  padding: 72px 24px;
}
.section-center { text-align: center; }
.section-title {
  font-size: clamp(22px, 3vw, 32px);
  color: var(--primary);
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 15px;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* About strip */
.about-strip {
  background: var(--bg-white);
}
.about-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-col-text h2 { font-size: 28px; color: var(--primary); margin-bottom: 16px; }
.about-col-text p  { font-size: 14.5px; color: var(--text); line-height: 1.85; margin-bottom: 12px; }
.about-col-text .tag-list { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.tag-list span {
  background: #eef2f8;
  color: var(--primary);
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
}
.about-col-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.stat-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.stat-box .num {
  font-family: 'Noto Serif SC', serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 4px;
}
.stat-box .label { font-size: 12px; opacity: .8; }
.stat-box.accent {
  background: linear-gradient(135deg, var(--accent) 0%, #e67e22 100%);
}

/* Services overview */
.services-strip { background: var(--bg); }
.services-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.svc-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
  transition: box-shadow var(--transition), transform var(--transition);
}
.svc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.svc-card:nth-child(2) { border-top-color: var(--accent); }
.svc-card:nth-child(3) { border-top-color: var(--primary-light); }
.svc-icon {
  font-size: 36px;
  margin-bottom: 16px;
  line-height: 1;
}
.svc-card h3 { font-size: 17px; color: var(--primary); margin-bottom: 10px; }
.svc-card p  { font-size: 13.5px; color: var(--text-light); line-height: 1.7; margin: 0; }

/* CTA strip */
.cta-strip {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  text-align: center;
  padding: 60px 24px;
}
.cta-strip h2 { font-size: 28px; margin-bottom: 14px; }
.cta-strip p  { font-size: 15px; opacity: .82; margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 13px 32px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); color: #fff; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
}
.contact-card h2 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item svg {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: var(--accent);
  margin-top: 2px;
}
.contact-info-item .label { font-weight: 600; color: var(--text); margin-bottom: 2px; }
.contact-info-item .val   { color: var(--text-light); }
.email-list { margin-top: 16px; }
.email-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--bg);
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text);
  transition: box-shadow var(--transition);
}
.email-item:hover { box-shadow: var(--shadow); }
.email-item svg { color: var(--primary); flex-shrink: 0; }
.email-item div { flex: 1; }
.email-item .email-type { font-size: 12px; color: var(--text-light); margin-bottom: 2px; }
.email-item a { font-weight: 600; color: var(--primary); }
.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  padding: 10px 22px;
  border: 1.5px solid var(--primary);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: background var(--transition), color var(--transition);
}
.map-btn:hover { background: var(--primary); color: #fff; }

/* ============================================================
   KNOWLEDGE / ZS pages
   ============================================================ */
.step-list { counter-reset: step; margin: 16px 0; }
.step-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.step-item:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Noto Serif SC', serif;
}
.step-text { font-size: 14px; line-height: 1.8; color: var(--text); }
.step-text strong { color: var(--primary); font-weight: 600; }

.method-section { margin-bottom: 32px; }
.method-section h4 {
  font-size: 15px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
  padding: 8px 14px;
  background: #eef2f8;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
}

.highlight-box {
  background: #fff8f7;
  border: 1px solid #f5c6c0;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
}

.download-list { margin-top: 10px; }
.download-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 10px;
  transition: box-shadow var(--transition), border-color var(--transition);
  text-decoration: none;
  color: var(--text);
}
.download-item:hover {
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
  color: var(--primary);
}
.download-item svg { flex-shrink: 0; color: var(--accent); }
.download-item span { font-size: 14px; font-weight: 500; }

/* ============================================================
   PRIVACY
   ============================================================ */
.privacy-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 24px 72px;
}
.privacy-wrap h1 {
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 6px;
}
.effective-date {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 32px;
}
.privacy-section { margin-bottom: 36px; }
.privacy-section h2 {
  font-size: 16px;
  color: var(--primary);
  padding: 8px 16px;
  border-left: 4px solid var(--accent);
  background: #f4f7fb;
  margin-bottom: 14px;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.privacy-section p, .privacy-section li {
  font-size: 14px;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 10px;
}
.privacy-section ul { list-style: disc; padding-left: 22px; }
.privacy-section ul li { margin-bottom: 6px; }
.contact-box {
  background: var(--bg);
  border-left: 4px solid var(--border);
  padding: 16px 22px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 13.5px;
  color: var(--text);
  line-height: 2;
}
.contact-box a { color: var(--primary-light); text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,.72);
  padding: 32px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.footer-logo .logo-en { font-size: 16px; color: rgba(255,255,255,.85); }
.footer-logo .logo-cn { font-size: 11px; color: rgba(255,255,255,.45); }
.footer-meta { font-size: 12.5px; line-height: 1.7; text-align: center; }
.footer-meta a { color: rgba(255,255,255,.60); }
.footer-meta a:hover { color: rgba(255,255,255,.95); }
.footer-links { display: flex; gap: 16px; font-size: 12.5px; }
.footer-links a { color: rgba(255,255,255,.60); }
.footer-links a:hover { color: rgba(255,255,255,.95); }

/* ============================================================
   UTILS
   ============================================================ */
.img-full { width:100%; border-radius: var(--radius); margin: 16px 0; }
.img-center { display:block; margin: 16px auto; border-radius: var(--radius); }
.text-accent { color: var(--accent); font-weight: 600; }
.mt-s  { margin-top:  8px; }
.mt-m  { margin-top: 20px; }
.mt-l  { margin-top: 36px; }
.mb-s  { margin-bottom:  8px; }
.mb-m  { margin-bottom: 20px; }

/* ============================================================
   RESPONSIVE — TABLET (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  .main-nav { gap: 2px; }
  .main-nav a { padding: 7px 10px; font-size: 13px; }
  .about-cols { grid-template-columns: 1fr; gap: 32px; }
  .services-cards { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .content-wrap { flex-direction: column; }
  .sidebar {
    position: static;
    width: 100%;
    display: flex;
  }
  .sidebar-title { display: none; }
  .sidebar-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    width: 100%;
  }
  .sidebar-nav a {
    border-bottom: none;
    border-right: 1px solid var(--border);
    white-space: nowrap;
    padding: 10px 14px;
  }
  .sidebar-nav a.active { padding-left: 14px; }
  .sidebar-nav a.active::before { top: 0; bottom: auto; right: 0; left: 0; height: 3px; width: auto; }
  .header-actions { display: none; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {
  :root { --header-h: 58px; }
  .header-inner { padding: 0 16px; }
  .logo-cn { display: none; }
  .main-nav {
    display: none;
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: rgba(26,58,92,.98);
    flex-direction: column;
    padding: 16px 0 24px;
    gap: 2px;
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    padding: 12px 24px;
    border-radius: 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .main-nav a.active::after { display: none; }
  .nav-toggle { display: flex; }
  .hero-content h2 { font-size: 24px; }
  .hero-content p  { font-size: 14px; }
  .services-cards  { grid-template-columns: 1fr; }
  .about-col-visual { grid-template-columns: 1fr 1fr; }
  .section { padding: 48px 16px; }
  .content-area { padding: 24px 20px; }
  .service-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .page-hero { padding: 40px 16px 30px; }
}
