/* roulang page: index */
/* ===== 设计变量 ===== */
:root {
  --primary: #8A5A44;
  --primary-dark: #6F4633;
  --primary-light: #A87A5E;
  --accent: #C17C5A;
  --accent-soft: #F0DDD0;
  --gold: #C9A87C;
  --gold-soft: #F7EFE3;
  --bg: #F5EFE6;
  --bg-card: #FDF8F2;
  --bg-deep: #EDE3D5;
  --text: #3A2C22;
  --text-weak: #7A6A5C;
  --text-light: #B0A091;
  --border: rgba(138, 90, 68, 0.16);
  --border-strong: rgba(138, 90, 68, 0.28);
  --success: #6B8E5A;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(90, 60, 40, 0.06);
  --shadow: 0 4px 18px rgba(90, 60, 40, 0.10);
  --shadow-lg: 0 8px 32px rgba(90, 60, 40, 0.15);
  --space-xs: 8px;
  --space-sm: 16px;
  --space: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 88px;
  --container: 1200px;
  --container-narrow: 840px;
  --fs-h1: 42px;
  --fs-h2: 28px;
  --fs-h3: 20px;
  --fs-body: 16px;
  --fs-small: 13px;
  --font-body: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Source Han Sans SC", sans-serif;
  --font-heading: "Songti SC", "Noto Serif CJK SC", "Source Han Serif SC", "SimSun", serif;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: var(--fs-body); line-height: 1.75; color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input { font-family: inherit; font-size: inherit; }
i { line-height: 1; }

/* ===== 容器 ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }

/* ===== 按钮 ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius-pill); font-size: 15px; font-weight: 600;
  border: 1.5px solid transparent; cursor: pointer; transition: all .25s ease; line-height: 1.4;
}
.btn-primary { background: var(--primary); color: #FFF; box-shadow: 0 4px 14px rgba(138, 90, 68, .3); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(138, 90, 68, .4); }
.btn-primary:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(138, 90, 68, .3); }
.btn-primary:focus-visible { outline: 3px solid rgba(138, 90, 68, .25); outline-offset: 2px; }
.btn-outline { background: transparent; border-color: var(--primary); color: var(--primary); }
.btn-outline:hover { background: rgba(138, 90, 68, .08); border-color: var(--primary-dark); color: var(--primary-dark); }
.btn-outline:active { background: rgba(138, 90, 68, .14); }
.btn-outline:focus-visible { outline: 3px solid rgba(138, 90, 68, .2); outline-offset: 2px; }
.btn-lg { padding: 15px 36px; font-size: 16px; }
.btn-light { background: #FFF; color: var(--primary); border-color: transparent; }
.btn-light:hover { background: var(--gold-soft); color: var(--primary-dark); }
.btn-sm { padding: 8px 18px; font-size: 13px; }

/* ===== 徽章/标签 ===== */
.badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 5px 14px;
  border-radius: var(--radius-pill); font-size: 12px; font-weight: 600;
  background: rgba(138, 90, 68, .10); color: var(--primary); transition: background .2s;
}
.badge:hover { background: rgba(138, 90, 68, .18); }
.badge-gold { background: rgba(201, 168, 124, .18); color: #8A6A45; }
.badge-accent { background: rgba(193, 124, 90, .14); color: #A85C3E; }

/* ===== 板块标题 ===== */
.section { padding: var(--space-3xl) 0; }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700;
  color: var(--primary); letter-spacing: 1px; margin-bottom: 12px;
}
.section-tag::before { content: ''; width: 22px; height: 2px; background: var(--accent); border-radius: 2px; }
.section-head h2 {
  font-family: var(--font-heading); font-size: var(--fs-h2); font-weight: 700;
  color: var(--text); line-height: 1.35; margin-bottom: 12px;
}
.section-head p { color: var(--text-weak); font-size: 15px; line-height: 1.8; max-width: 620px; }
.section-head-center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head-center .section-tag::before { display: none; }
.section-head-center .section-tag { justify-content: center; }

/* ===== Header / 导航 ===== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(245, 239, 230, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.header-inner { display: flex; align-items: center; gap: 20px; flex-wrap: nowrap; }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark {
  display: flex; align-items: center; justify-content: center; width: 36px; height: 36px;
  background: var(--primary); color: #FFF; border-radius: 10px;
  font-family: var(--font-heading); font-size: 20px; font-weight: 700;
  box-shadow: 0 2px 8px rgba(138, 90, 68, .25);
}
.logo-text { font-size: 17px; font-weight: 700; color: var(--primary-dark); white-space: nowrap; letter-spacing: .5px; }
.main-nav {
  display: flex; align-items: center; gap: 4px;
  background: rgba(138, 90, 68, .07); border-radius: var(--radius-pill);
  padding: 4px; flex: 1; justify-content: center;
  overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none;
}
.main-nav::-webkit-scrollbar { display: none; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px;
  border-radius: var(--radius-pill); font-size: 14px; font-weight: 500;
  color: var(--text-weak); white-space: nowrap; transition: all .2s ease;
}
.nav-link i { font-size: 12px; opacity: .7; }
.nav-link:hover { background: rgba(138, 90, 68, .08); color: var(--primary); }
.nav-link.active { background: var(--primary); color: #FFF; box-shadow: 0 2px 8px rgba(138, 90, 68, .25); }
.nav-link.active:hover { background: var(--primary-dark); }
.header-cta { flex-shrink: 0; padding: 10px 22px; font-size: 14px; }
.mobile-nav-toggle { display: none; }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 620px;
  display: flex; align-items: center;
  background-size: cover; background-position: center;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(58, 44, 34, .78) 0%, rgba(58, 44, 34, .45) 60%, rgba(58, 44, 34, .25) 100%);
}
.hero::after {
  content: ''; position: absolute; bottom: -40px; right: -40px; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201, 168, 124, .15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content { position: relative; z-index: 2; max-width: 680px; padding: 80px 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px;
  background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius-pill); color: #FFF; font-size: 13px; font-weight: 500;
  backdrop-filter: blur(6px); margin-bottom: 24px;
}
.hero-badge i { color: var(--gold); }
.hero h1 {
  font-family: var(--font-heading); font-size: var(--fs-h1); font-weight: 700;
  color: #FFF; line-height: 1.3; letter-spacing: 1px; margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .2);
}
.hero-desc {
  color: rgba(255, 255, 255, .9); font-size: 16px; line-height: 1.85;
  max-width: 520px; margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-meta {
  display: flex; gap: 40px; flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, .15); padding-top: 24px;
}
.hero-stat { text-align: left; }
.hero-stat strong { display: block; font-size: 26px; font-weight: 700; color: #FFF; line-height: 1.2; }
.hero-stat span { font-size: 13px; color: rgba(255, 255, 255, .75); }

/* ===== 功能分组 ===== */
.features { background: var(--bg); }
.features-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
}
.feature-item {
  position: relative; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 28px; transition: all .3s ease;
  box-shadow: var(--shadow-sm);
}
.feature-item:hover {
  border-color: var(--border-strong); box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.feature-num {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(138, 90, 68, .1); color: var(--primary);
  font-family: var(--font-heading); font-size: 16px; font-weight: 700;
  margin-bottom: 18px;
}
.feature-item h3 { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.feature-item p { font-size: 14px; color: var(--text-weak); line-height: 1.7; }
.feature-item .feature-icon { position: absolute; top: 24px; right: 24px; font-size: 28px; color: rgba(138, 90, 68, .08); }

/* ===== 数据看板 ===== */
.stats {
  background: var(--primary); color: #FFF; padding: 48px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-item { position: relative; padding: 20px 0; }
.stat-item::after {
  content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 40px; background: rgba(255, 255, 255, .12);
}
.stat-item:last-child::after { display: none; }
.stat-number { font-family: var(--font-heading); font-size: 36px; font-weight: 700; line-height: 1.2; }
.stat-label { font-size: 14px; opacity: .82; margin-top: 6px; }

/* ===== 使用场景 ===== */
.scenes { background: var(--bg-deep); }
.scenes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.scene-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: all .3s ease; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.scene-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border-strong); }
.scene-media { position: relative; height: 180px; overflow: hidden; }
.scene-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.scene-card:hover .scene-media img { transform: scale(1.04); }
.scene-media::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .08));
}
.scene-body { padding: 24px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.scene-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.scene-body p { font-size: 14px; color: var(--text-weak); line-height: 1.7; margin-bottom: 14px; flex: 1; }
.scene-tags { display: flex; gap: 6px; }
.scene-tags .badge { font-size: 11px; padding: 4px 10px; }

/* ===== 口碑 ===== */
.testimonials { background: var(--bg); }
.testi-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.testi-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; transition: all .3s ease; box-shadow: var(--shadow-sm);
}
.testi-card:hover { box-shadow: var(--shadow); }
.testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.testi-text { font-size: 15px; line-height: 1.8; color: var(--text); margin-bottom: 18px; font-style: normal; }
.testi-author { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-weak); }
.testi-author strong { color: var(--text); font-weight: 600; }
.testi-highlight {
  background: rgba(193, 124, 90, .10); border: 1px solid rgba(193, 124, 90, .2);
  border-radius: var(--radius); padding: 36px 32px; position: relative; overflow: hidden;
}
.testi-highlight::before {
  content: '\201C'; position: absolute; top: -20px; left: 12px;
  font-size: 120px; color: rgba(193, 124, 90, .15); font-family: Georgia, serif;
}
.testi-highlight blockquote { position: relative; font-size: 18px; line-height: 1.8; color: var(--text); font-weight: 500; margin-bottom: 16px; }
.testi-highlight .badge { position: absolute; top: 24px; right: 24px; }

/* ===== 价格套餐 ===== */
.pricing { background: var(--bg-deep); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; }
.price-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 18px;
  padding: 36px 30px; display: flex; flex-direction: column; position: relative;
  transition: all .3s ease; box-shadow: var(--shadow-sm);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card.featured {
  border: 2px solid var(--primary); background: linear-gradient(180deg, #FFFDFA 0%, var(--bg-card) 100%);
  box-shadow: 0 8px 32px rgba(138, 90, 68, .15);
  transform: scale(1.02);
}
.price-card.featured:hover { transform: scale(1.02) translateY(-4px); }
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #FFF; padding: 4px 18px;
  border-radius: var(--radius-pill); font-size: 12px; font-weight: 700;
  box-shadow: 0 4px 12px rgba(193, 124, 90, .4); letter-spacing: .5px;
}
.price-name { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.price-sub { font-size: 13px; color: var(--text-weak); margin-bottom: 20px; }
.price-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 22px; }
.price-amount .num { font-family: var(--font-heading); font-size: 36px; font-weight: 700; color: var(--primary); }
.price-amount .unit { font-size: 14px; color: var(--text-weak); }
.price-list { display: grid; gap: 10px; margin-bottom: 28px; flex: 1; }
.price-list li { display: flex; gap: 10px; font-size: 14px; color: var(--text); line-height: 1.6; }
.price-list li i { color: var(--success); font-size: 13px; margin-top: 4px; }

/* ===== 资讯 ===== */
.news { background: var(--bg); }
.news-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; }
.news-list { display: grid; gap: 20px; }
.news-item {
  display: flex; gap: 20px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px; transition: all .25s ease;
}
.news-item:hover { box-shadow: var(--shadow); border-color: var(--border-strong); }
.news-num { font-family: var(--font-heading); font-size: 28px; font-weight: 700; color: rgba(138, 90, 68, .25); line-height: 1; flex-shrink: 0; width: 40px; }
.news-content h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.news-content h3 a:hover { color: var(--primary); }
.news-content p { font-size: 14px; color: var(--text-weak); line-height: 1.7; }
.news-meta { display: flex; gap: 12px; font-size: 12px; color: var(--text-light); margin-top: 8px; }
.news-side { display: grid; gap: 16px; align-content: start; }
.news-side-card {
  background: var(--gold-soft); border: 1px solid rgba(201, 168, 124, .3);
  border-radius: var(--radius); padding: 24px;
}
.news-side-card h4 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.news-side-card p { font-size: 14px; color: var(--text-weak); line-height: 1.7; }

/* ===== FAQ ===== */
.faq { background: var(--bg); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 14px; overflow: hidden; transition: box-shadow .3s ease;
}
.faq-item.active { box-shadow: var(--shadow); border-color: var(--border-strong); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 24px; cursor: pointer; font-size: 16px; font-weight: 600;
  color: var(--text); background: transparent; border: none; width: 100%; text-align: left;
  transition: color .2s ease;
}
.faq-question:hover { color: var(--primary); }
.faq-item.active .faq-question { color: var(--primary); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(138, 90, 68, .08); color: var(--primary); transition: all .3s ease;
}
.faq-item.active .faq-icon { background: var(--primary); color: #FFF; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.active .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 24px 24px; font-size: 15px; color: var(--text-weak); line-height: 1.8; }

/* ===== CTA 预约 ===== */
.cta {
  padding: var(--space-3xl) 0;
  background: var(--bg-deep);
}
.cta-box {
  background: linear-gradient(135deg, rgba(138, 90, 68, .95) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg); padding: 56px 48px 48px; text-align: center;
  color: #FFF; position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; top: -40px; right: -40px; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, .08) 0%, transparent 70%); border-radius: 50%;
}
.cta-box::after {
  content: '\201C'; position: absolute; left: 20px; bottom: -50px;
  font-size: 200px; color: rgba(255, 255, 255, .04); font-family: Georgia, serif;
}
.cta-box h2 { font-family: var(--font-heading); font-size: 30px; font-weight: 700; margin-bottom: 14px; }
.cta-box .cta-desc { font-size: 15px; color: rgba(255, 255, 255, .85); max-width: 520px; margin: 0 auto 32px; line-height: 1.8; }
.cta-form {
  display: flex; gap: 12px; max-width: 480px; margin: 0 auto; position: relative; z-index: 2;
  align-items: stretch;
}
.cta-form input {
  flex: 1; height: 50px; border-radius: var(--radius-pill); border: 2px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .95); color: var(--text); padding: 0 24px; font-size: 14px;
  outline: none; transition: all .25s ease;
}
.cta-form input::placeholder { color: #B0B0B0; }
.cta-form input:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201, 168, 124, .25); }
.cta-form .btn { height: 50px; border-radius: var(--radius-pill); padding: 0 28px; white-space: nowrap; }
.cta-tip { margin-top: 16px; font-size: 12px; color: rgba(255, 255, 255, .6); }

/* ===== 页脚 ===== */
.site-footer { background: #4A3528; color: rgba(245, 239, 230, .85); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .logo-text { color: #FFF; font-size: 20px; }
.footer-brand .logo-mark { background: rgba(255, 255, 255, .15); color: #FFF; }
.footer-desc { font-size: 14px; line-height: 1.8; color: rgba(245, 239, 230, .65); margin-top: 18px; max-width: 280px; }
.footer-col h4 { color: #FFF; font-size: 16px; font-weight: 600; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 28px; height: 2px; background: var(--gold); border-radius: 2px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(245, 239, 230, .7); transition: all .2s; display: inline-flex; align-items: center; gap: 8px; }
.footer-col ul a i { font-size: 12px; }
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact li { font-size: 14px; margin-bottom: 12px; color: rgba(245, 239, 230, .7); display: flex; gap: 10px; align-items: center; }
.footer-contact li i { width: 18px; color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08); padding: 22px 0; text-align: center;
  font-size: 13px; color: rgba(245, 239, 230, .5);
}

/* ===== 响应式 ===== */
@media (max-width: 1200px) {
  :root { --fs-h1: 38px; --fs-h2: 26px; }
  .features-grid { gap: 24px; }
  .scenes-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .pricing-grid { gap: 20px; }
  .news-layout { grid-template-columns: 1fr 300px; }
}

@media (max-width: 992px) {
  :root { --space-2xl: 48px; --space-3xl: 64px; }
  .header-inner { flex-wrap: wrap; }
  .main-nav { order: 3; width: 100%; justify-content: flex-start; flex: 1 1 100%; }
  .header-cta { margin-left: auto; }
  .features-grid { grid-template-columns: 1fr; }
  .testi-layout { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-4px); }
  .news-layout { grid-template-columns: 1fr; }
  .news-side { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-item::after { display: none; }
  .cta-box { padding: 40px 28px; }
  .cta-form { flex-direction: column; }
  .cta-form .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --fs-h1: 30px; --fs-h2: 22px; --fs-h3: 17px; }
  .hero { min-height: 520px; }
  .hero-content { padding: 64px 0; }
  .hero-meta { gap: 24px; }
  .scenes-grid { grid-template-columns: 1fr; }
  .testi-highlight { padding: 28px 20px; }
  .testi-highlight blockquote { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand .footer-desc { max-width: none; }
}

@media (max-width: 576px) {
  .container { padding: 0 20px; }
  .btn-lg { padding: 14px 24px; font-size: 15px; }
  .hero-actions .btn { flex: 1; }
  .hero-actions { gap: 10px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 28px; }
  .news-side { grid-template-columns: 1fr; }
  .faq-question { font-size: 15px; padding: 18px 20px; }
  .cta-box { border-radius: 16px; padding: 36px 20px; }
  .cta-box h2 { font-size: 24px; }
  .logo-text { font-size: 15px; }
  .logo-mark { width: 32px; height: 32px; font-size: 18px; border-radius: 8px; }
  .footer-grid { grid-template-columns: 1fr; }
}
