/* roulang page: index */
/* ===== CSS设计变量 ===== */
:root {
  /* 主色 / 辅色 */
  --primary: #151515;
  --accent: #C9A063;
  --accent-dark: #B8904F;
  --bg-warm: #F6F3EC;
  --card-bg: #FFFFFF;
  --card-bg-warm: #FDFBF7;
  --text-main: #1A1A1A;
  --text-inverse: #F2EFE7;
  --text-muted: #6E6A63;
  --text-muted-inverse: #A8A29A;
  --border-light: #E5E0D6;
  --border-dark: rgba(255,255,255,0.12);
  --badge-red: #A04040;
  
  /* 圆角 */
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  
  /* 阴影 */
  --shadow-card: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-hover: 0 12px 28px rgba(0,0,0,0.12);
  
  /* 字体 */
  --font-stack: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Noto Sans SC", sans-serif;
  --f-display: 46px;
  --f-h2: 34px;
  --f-h3: 22px;
  --f-body: 16px;
  --f-helper: 14px;
  --f-badge: 12px;
  
  /* 间距 */
  --space-section: 88px;
  --space-section-sm: 64px;
  --space-gap: 24px;
  --space-card: 30px;
  
  /* 过渡 */
  --transition: all 0.3s ease;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-stack);
  font-size: var(--f-body);
  line-height: 1.75;
  letter-spacing: 0.01em;
  color: var(--text-main);
  background: var(--bg-warm);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
a:hover { color: var(--accent-dark); }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea { font-family: inherit; }

/* 全局 focus-visible */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* ===== 容器 ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== 导航 ===== */
.nav-wrap {
  position: relative;
  z-index: 1000;
}
.nav-top {
  background: var(--primary);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand-logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-inverse);
  letter-spacing: 0.04em;
  line-height: 1.4;
  flex-shrink: 0;
}
.brand-logo span { color: var(--accent); }
.nav-tools {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.nav-search { color: var(--text-muted-inverse); font-size: 18px; display: inline-flex; align-items: center; }
.nav-search:hover { color: var(--accent); }
.nav-contact {
  font-size: 13px;
  color: var(--text-muted-inverse);
  line-height: 1.5;
  text-align: right;
}
.nav-contact strong {
  display: block;
  color: var(--text-inverse);
  font-size: 15px;
  letter-spacing: 0.02em;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--accent);
  transition: var(--transition);
  line-height: 1.4;
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--text-inverse);
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,160,99,0.3);
}
.btn-primary:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* 频道行 */
.nav-channels {
  background: var(--primary);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-channels .container {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.nav-channels .container::-webkit-scrollbar { display: none; }
.channel-link {
  display: inline-block;
  padding: 7px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted-inverse);
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  white-space: nowrap;
  transition: var(--transition);
}
.channel-link:hover { color: var(--accent); border-color: rgba(201,160,99,0.4); background: rgba(201,160,99,0.08); }
.channel-link.active { color: var(--primary); background: var(--accent); font-weight: 600; }

/* sticky 导航 */
.nav-wrap.is-sticky {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.nav-wrap.is-sticky .nav-top { background: rgba(21,21,21,0.92); backdrop-filter: blur(12px); }
.nav-wrap.is-sticky .nav-channels { background: rgba(21,21,21,0.92); backdrop-filter: blur(12px); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  background-image: url('/assets/images/backpic/back-1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.65) 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; width: 100%; }
.hero-content { max-width: 720px; padding: 80px 0; }
.hero-badge {
  display: inline-block;
  background: rgba(201,160,99,0.15);
  border: 1px solid rgba(201,160,99,0.5);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--text-inverse);
  margin: 0 0 20px;
}
.hero-title .highlight { color: var(--accent); }
.hero-subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(242,239,231,0.88);
  margin-bottom: 36px;
  max-width: 580px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 34px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--accent);
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.btn-gold:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: var(--text-inverse); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,160,99,0.35); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--accent);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 34px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--accent);
  transition: var(--transition);
}
.btn-ghost:hover { background: rgba(201,160,99,0.12); color: var(--accent); border-color: rgba(201,160,99,0.9); transform: translateY(-2px); }

/* Hero 底部滚动信息卡 */
.hero-info-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 18px;
  scrollbar-width: none;
}
.hero-info-strip::-webkit-scrollbar { display: none; }
.hero-info-card {
  flex: 0 0 220px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.hero-info-card:hover { background: rgba(255,255,255,0.14); border-color: rgba(201,160,99,0.3); }
.hero-info-card .tag { font-size: 12px; color: var(--accent); font-weight: 600; letter-spacing: 0.05em; }
.hero-info-card .value { font-size: 18px; font-weight: 700; color: var(--text-inverse); margin: 6px 0 3px; }
.hero-info-card .desc { font-size: 12px; color: var(--text-muted-inverse); line-height: 1.5; }

/* ===== 板块通用 ===== */
.section { padding: var(--space-section) 0; }
.section-light { background: var(--bg-warm); }
.section-dark { background: var(--primary); color: var(--text-inverse); }
.section-head { max-width: 800px; margin-bottom: var(--space-gap); }
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 6px;
}
.section-title { font-size: var(--f-h2); font-weight: 700; line-height: 1.3; margin: 0 0 16px; color: var(--text-main); }
.section-dark .section-title { color: var(--text-inverse); }
.section-desc { font-size: 16px; line-height: 1.8; color: var(--text-muted); margin-bottom: 0; }
.section-dark .section-desc { color: var(--text-muted-inverse); }

/* ===== 服务板块 ===== */
.service-card {
  background: var(--card-bg-warm);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-card);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: rgba(201,160,99,0.4);
}
.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background: rgba(201,160,99,0.12);
  border-radius: 14px;
  margin-bottom: 18px;
  color: var(--accent-dark);
}
.service-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 10px; color: var(--text-main); }
.service-card p { font-size: 14px; line-height: 1.7; color: var(--text-muted); margin-bottom: 18px; flex-grow: 1; }
.service-more {
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  transition: var(--transition);
}
.service-more .arrow { transition: transform 0.3s ease; }
.service-card:hover .service-more { color: var(--accent-dark); }
.service-card:hover .service-more .arrow { transform: translateX(5px); }

/* ===== 数据区 ===== */
.data-section { background: var(--primary); position: relative; }
.data-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(201,160,99,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.data-item { text-align: center; padding: 20px 16px; border-right: 1px solid var(--border-dark); }
.data-item:last-child { border-right: none; }
.data-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.data-label { font-size: 14px; color: rgba(242,239,231,0.72); letter-spacing: 0.04em; }

/* ===== 案例板块 ===== */
.case-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border: 1px solid var(--border-light);
  margin-bottom: 40px;
}
.case-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.case-image { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.case-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.case-card:hover .case-image img { transform: scale(1.03); }
.case-badge {
  position: absolute;
  bottom: 14px;
  left: 16px;
  background: rgba(21,21,21,0.82);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(201,160,99,0.4);
  backdrop-filter: blur(4px);
}
.case-body { padding: 28px; }
.case-cat { font-size: 12px; font-weight: 700; color: var(--accent-dark); letter-spacing: 0.08em; margin-bottom: 8px; display: block; }
.case-title { font-size: 22px; font-weight: 700; color: var(--text-main); margin-bottom: 12px; line-height: 1.4; }
.case-text { font-size: 15px; line-height: 1.8; color: var(--text-muted); margin-bottom: 18px; }
.case-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  color: var(--text-muted);
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}
.case-meta .meta-item { display: inline-flex; align-items: center; gap: 5px; }
.case-meta a { color: var(--accent-dark); font-weight: 600; margin-left: auto; }
.case-meta a:hover { color: var(--primary); }
.case-card:nth-child(even) .case-image { order: 2; }

/* ===== 方案板块 ===== */
.plan-card {
  background: var(--card-bg-warm);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.plan-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.plan-card.featured {
  background: var(--primary);
  border: 1.5px solid var(--accent);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  transform: scale(1.02);
}
.plan-card.featured:hover { transform: scale(1.02) translateY(-4px); box-shadow: 0 20px 45px rgba(0,0,0,0.35); }
.plan-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--accent);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
}
.plan-name { font-size: 20px; font-weight: 700; margin-bottom: 6px; color: var(--text-main); }
.plan-card.featured .plan-name { color: var(--accent); }
.plan-subtitle { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.plan-card.featured .plan-subtitle { color: var(--text-muted-inverse); }
.plan-features { margin-bottom: 28px; flex-grow: 1; }
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
  color: var(--text-main);
}
.plan-card.featured .plan-features li { color: rgba(242,239,231,0.92); }
.plan-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 14px;
}
.plan-footer { border-top: 1px solid var(--border-light); padding-top: 20px; }
.plan-card.featured .plan-footer { border-top-color: rgba(255,255,255,0.12); }
.plan-price { font-size: 24px; font-weight: 700; color: var(--text-main); margin-bottom: 16px; }
.plan-card.featured .plan-price { color: var(--accent); }
.plan-price small { font-size: 13px; font-weight: 400; color: var(--text-muted); }
.plan-card.featured .plan-price small { color: var(--text-muted-inverse); }
.btn-plan {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--primary);
  color: var(--text-inverse);
  font-weight: 600;
  font-size: 14px;
  padding: 13px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--primary);
  transition: var(--transition);
}
.btn-plan:hover { background: var(--accent); border-color: var(--accent); color: var(--primary); }
.plan-card.featured .btn-plan { background: var(--accent); color: var(--primary); border-color: var(--accent); }
.plan-card.featured .btn-plan:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: var(--text-inverse); }

/* ===== 资讯列表 ===== */
.news-list { background: var(--card-bg); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 30px; }
.news-list-title { font-size: 20px; font-weight: 700; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid var(--accent); display: inline-block; }
.news-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}
.news-item:last-child { border-bottom: none; }
.news-date { font-size: 13px; color: var(--text-muted); flex-shrink: 0; font-family: monospace; }
.news-link { font-size: 15px; font-weight: 500; color: var(--text-main); line-height: 1.6; flex: 1; }
.news-link:hover { color: var(--accent-dark); }
.news-hot { background: var(--badge-red); color: #fff; font-size: 11px; padding: 2px 10px; border-radius: var(--radius-pill); font-weight: 600; flex-shrink: 0; }

/* 侧栏推荐 */
.side-box { background: var(--card-bg); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 26px 24px; margin-bottom: 24px; }
.side-box h4 { font-size: 17px; font-weight: 700; margin-bottom: 16px; color: var(--text-main); padding-bottom: 10px; border-bottom: 1px solid var(--border-light); position: relative; }
.side-box h4::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 40px; height: 2px; background: var(--accent); }
.side-tag-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
.side-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-warm);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  transition: var(--transition);
}
.side-tag:hover { color: var(--accent-dark); border-color: var(--accent); background: rgba(201,160,99,0.08); }
.side-rank-item { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px dashed var(--border-light); font-size: 14px; }
.side-rank-item:last-child { border-bottom: none; }
.rank-num { width: 24px; height: 24px; background: var(--bg-warm); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; color: var(--accent-dark); }
.rank-num.top { background: var(--accent); color: var(--primary); }
.side-rank-item .rank-name { color: var(--text-main); font-weight: 500; flex: 1; }

/* ===== FAQ ===== */
.faq-wrap { max-width: 840px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-light); padding: 0; }
.faq-item.first { border-top: 1px solid var(--border-light); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 24px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-main);
  text-align: left;
  transition: var(--transition);
  cursor: pointer;
  background: none;
  line-height: 1.5;
}
.faq-question:hover { color: var(--accent-dark); }
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-warm);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  color: var(--accent-dark);
  transition: var(--transition);
}
.faq-item.active .faq-icon { background: var(--accent); color: var(--primary); transform: rotate(45deg); border-color: var(--accent); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner { padding: 0 0 24px; font-size: 15px; line-height: 1.8; color: var(--text-muted); }

/* ===== CTA ===== */
.cta-section { background: var(--primary); padding: 88px 0; position: relative; overflow: hidden; }
.cta-section::before {
  content: '';
  position: absolute;
  top: -60%; right: -20%;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(201,160,99,0.08);
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80%; left: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(201,160,99,0.06);
}
.cta-card {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  border: 1px solid var(--accent);
  border-radius: 20px;
  padding: 56px 48px;
  text-align: center;
  background: rgba(21,21,21,0.6);
  backdrop-filter: blur(6px);
}
.cta-title { font-size: 28px; font-weight: 700; color: var(--text-inverse); margin-bottom: 16px; line-height: 1.4; }
.cta-title .highlight { color: var(--accent); }
.cta-text { font-size: 16px; color: var(--text-muted-inverse); margin-bottom: 36px; line-height: 1.8; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.cta-contact-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(242,239,231,0.6);
  letter-spacing: 0.02em;
}

/* ===== 页脚 ===== */
.site-footer { background: #0e0e0e; color: rgba(242,239,231,0.7); padding: 64px 0 0; border-top: 1px solid rgba(201,160,99,0.3); }
.footer-grid { display: flex; gap: 48px; flex-wrap: wrap; margin-bottom: 48px; }
.footer-col { flex: 1 1 220px; }
.footer-brand { font-size: 18px; font-weight: 700; color: var(--text-inverse); line-height: 1.5; margin-bottom: 14px; }
.footer-brand span { color: var(--accent); }
.footer-desc { font-size: 14px; line-height: 1.7; color: rgba(242,239,231,0.5); }
.footer-col h5 { font-size: 14px; font-weight: 600; color: var(--text-inverse); margin-bottom: 16px; letter-spacing: 0.06em; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: rgba(242,239,231,0.55); transition: var(--transition); }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact li { font-size: 14px; color: rgba(242,239,231,0.55); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(242,239,231,0.4);
}
.footer-bottom a { color: rgba(242,239,231,0.4); }
.footer-bottom a:hover { color: var(--accent); }

/* ===== 响应式 ===== */
@media screen and (max-width: 1023px) {
  :root { --f-display: 38px; --f-h2: 30px; }
  .section { padding: var(--space-section-sm) 0; }
  .data-item { border-right: none; border-bottom: 1px solid var(--border-dark); }
  .data-item:nth-last-child(-n+2) { border-bottom: none; }
  .case-card:nth-child(even) .case-image { order: 0; }
}

@media screen and (max-width: 639px) {
  :root {
    --f-display: 32px;
    --f-h2: 26px;
    --space-section: 56px;
  }
  .hero { min-height: 70vh; }
  .hero-content { padding: 60px 0; }
  .hero-title { font-size: 32px; }
  .hero-subtitle { font-size: 16px; }
  .hero-actions .btn-gold,
  .hero-actions .btn-ghost { flex: 1 1 100%; padding: 14px 20px; }
  .nav-top .container { flex-wrap: wrap; justify-content: center; text-align: center; gap: 14px; }
  .nav-contact { display: none; }
  .brand-logo { font-size: 16px; text-align: center; }
  .service-card, .plan-card { padding: 24px 20px; }
  .cta-card { padding: 40px 24px; }
  .cta-contact-row { gap: 12px; flex-direction: column; }
  .footer-grid { gap: 32px; }
  .nav-tools { gap: 12px; }
  .btn-primary { padding: 10px 18px; font-size: 13px; }
}
