/* ============================================================
   壹号平台 · 暖阳几何设计系统
   风格: 温暖建筑感 · 大胆几何 · 光影层叠
   ============================================================ */

/* --- 基础重置 --- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

body {
  font-family: system-ui, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  overflow-x: hidden;
  background: #faf5ef;
  color: #2d3748;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

/* --- 自定义滚动条 --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f5ede4; border-radius: 4px; }
::-webkit-scrollbar-thumb { background: #c17a6e; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #a86155; }

/* --- 选中文本 --- */
::selection { background: #e8634a; color: #fff; }
::-moz-selection { background: #e8634a; color: #fff; }

/* --- 核心布局 --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section { padding: 100px 0; position: relative; }

.section:nth-child(even) {
  background: linear-gradient(135deg, #f8f2ea 0%, #fef6ef 100%);
}

/* 装饰性背景光晕 */
.section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,99,74,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.section:nth-child(even)::before {
  top: auto;
  bottom: -30%;
  left: -20%;
  background: radial-gradient(circle, rgba(45,90,110,0.05) 0%, transparent 70%);
}

.section > .container { position: relative; z-index: 1; }

/* --- 导航 --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250,245,239,0.92);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(193,122,110,0.12);
  transition: box-shadow 0.3s;
}

.site-header:hover {
  box-shadow: 0 2px 24px rgba(193,122,110,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  text-decoration: none;
  color: #2d5a6e;
  letter-spacing: -0.02em;
  transition: opacity 0.2s;
}

.logo:hover { opacity: 0.8; }

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #e8634a, #c17a6e);
  color: #fff;
  box-shadow: 0 4px 12px rgba(232,99,74,0.25);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: #4a5568;
  transition: all 0.25s;
  position: relative;
  padding: 4px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #e8634a;
  border-radius: 2px;
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.main-nav a:hover { color: #2d5a6e; }
.main-nav a:hover::after { width: 100%; }

.nav-cta {
  padding: 8px 24px !important;
  border-radius: 100px !important;
  color: #fff !important;
  font-weight: 600 !important;
  background: linear-gradient(135deg, #e8634a, #c17a6e);
  box-shadow: 0 4px 14px rgba(232,99,74,0.25);
  transition: all 0.3s !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,99,74,0.35) !important;
  color: #fff !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.2s;
}

.menu-toggle:hover { background: rgba(232,99,74,0.08); }

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: #2d5a6e;
  border-radius: 4px;
  transition: all 0.3s;
}

/* --- 首页Hero --- */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #faf5ef 0%, #fef0e6 40%, #f5ede4 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,99,74,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,90,110,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content { max-width: 600px; }

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
  background: rgba(232,99,74,0.10);
  color: #c17a6e;
  text-transform: uppercase;
  border: 1px solid rgba(232,99,74,0.12);
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #2d5a6e;
  letter-spacing: -0.03em;
}

.hero h1 .text-accent {
  color: #e8634a;
  background: linear-gradient(135deg, #e8634a, #c17a6e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.7;
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
  color: #4a5568;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(193,122,110,0.15), 0 8px 24px rgba(193,122,110,0.08);
  transform: perspective(1000px) rotateY(-3deg) rotateX(1deg);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  background: #fff;
  border: 1px solid rgba(193,122,110,0.10);
}

.hero-image:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- 按钮 --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  letter-spacing: 0.01em;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #e8634a, #c17a6e);
  box-shadow: 0 4px 16px rgba(232,99,74,0.30);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(232,99,74,0.35);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid #d4b48c;
  color: #2d5a6e;
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(212,180,140,0.10);
  border-color: #c17a6e;
  transform: translateY(-2px);
}

/* --- 标签/标题 --- */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  color: #c17a6e;
  text-transform: uppercase;
  padding: 4px 0;
  position: relative;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #e8634a;
  margin-right: 12px;
  vertical-align: middle;
  border-radius: 2px;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #2d5a6e;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-desc {
  max-width: 600px;
  opacity: 0.7;
  margin-bottom: 48px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4a5568;
}

/* --- 卡片网格 --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.category-card {
  border-radius: 20px;
  padding: 32px 28px;
  background: #fff;
  border: 1px solid rgba(193,122,110,0.08);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 2px 8px rgba(193,122,110,0.04);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e8634a, #c17a6e, #d4b48c);
  opacity: 0;
  transition: opacity 0.4s;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(193,122,110,0.12);
  border-color: rgba(232,99,74,0.12);
}

.category-card:hover::before { opacity: 1; }

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  background: linear-gradient(135deg, #fef0e6, #f5ede4);
  color: #e8634a;
  transition: transform 0.3s;
}

.category-card:hover .card-icon {
  transform: scale(1.05);
}

.category-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #2d5a6e;
}

.category-card p {
  font-size: 0.9rem;
  opacity: 0.65;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #4a5568;
}

.card-link {
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  color: #e8634a;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}

.card-link:hover { gap: 12px; }

.card-link::after {
  content: '→';
  font-size: 1rem;
  transition: transform 0.3s;
}

.card-link:hover::after { transform: translateX(2px); }

/* --- 特性块 --- */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(193,122,110,0.10);
  border: 1px solid rgba(193,122,110,0.06);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-image:hover { transform: scale(1.01); }

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-text { padding: 8px 0; }

.feature-text .section-title { margin-bottom: 20px; }

.feature-text p {
  font-size: 1rem;
  opacity: 0.7;
  line-height: 1.7;
  margin-bottom: 24px;
  color: #4a5568;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feature-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #2d5a6e;
  font-weight: 500;
}

.feature-list li::before {
  content: '✓';
  font-weight: 700;
  color: #4a9e8e;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(74,158,142,0.10);
  flex-shrink: 0;
}

/* --- 数据条 --- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}

.stat-item {
  padding: 36px 20px;
  border-radius: 20px;
  border: 1px solid rgba(193,122,110,0.08);
  background: #fff;
  box-shadow: 0 2px 12px rgba(193,122,110,0.04);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(193,122,110,0.10);
  border-color: rgba(232,99,74,0.10);
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  color: #e8634a;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-number::after {
  content: '+';
  font-size: 1.8rem;
  font-weight: 600;
  color: #c17a6e;
  margin-left: 2px;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-top: 6px;
  color: #4a5568;
  font-weight: 500;
}

/* --- 内容墙 --- */
.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.content-wall-item {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(193,122,110,0.08);
  background: #fff;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 2px 8px rgba(193,122,110,0.04);
}

.content-wall-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(193,122,110,0.12);
  border-color: rgba(232,99,74,0.10);
}

.content-wall-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.content-wall-item:hover img { transform: scale(1.03); }

.content-wall-body {
  padding: 24px;
}

.content-wall-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #2d5a6e;
}

.content-wall-body p {
  font-size: 0.9rem;
  opacity: 0.65;
  line-height: 1.6;
  color: #4a5568;
}

/* --- FAQ --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(193,122,110,0.10);
  border-radius: 16px;
  margin-bottom: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  transition: all 0.3s;
  box-shadow: 0 1px 4px rgba(193,122,110,0.04);
}

.faq-item:hover {
  border-color: rgba(232,99,74,0.12);
  box-shadow: 0 4px 16px rgba(193,122,110,0.06);
}

.faq-item .faq-question {
  padding: 20px 24px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #2d5a6e;
  font-size: 1rem;
  transition: color 0.3s;
}

.faq-item .faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: #c17a6e;
  transition: transform 0.4s, color 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
  color: #e8634a;
}

.faq-item.open .faq-question {
  color: #e8634a;
}

.faq-item .faq-answer {
  padding: 0 24px 20px;
  display: none;
  opacity: 0.7;
  line-height: 1.7;
  color: #4a5568;
  font-size: 0.95rem;
}

.faq-item.open .faq-answer { display: block; }

/* --- CTA横幅 --- */
.cta-banner {
  padding: 72px 48px;
  text-align: center;
  border-radius: 24px;
  background: linear-gradient(135deg, #2d5a6e 0%, #3a7a8f 50%, #4a9e8e 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(45,90,110,0.20);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,99,74,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.cta-banner p {
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 28px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.cta-banner .btn-primary {
  background: #fff;
  color: #2d5a6e;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
}

.cta-banner .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
  background: #f8f2ea;
}

/* --- 页脚 --- */
.site-footer {
  padding: 64px 0 28px;
  background: #2d5a6e;
  color: rgba(255,255,255,0.75);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e8634a, #c17a6e, #d4b48c, #4a9e8e);
}

.site-footer a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.3s; }
.site-footer a:hover { color: #fff; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.footer-brand .logo-icon {
  background: linear-gradient(135deg, #e8634a, #c17a6e);
  color: #fff;
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.6;
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.55);
}

.footer-col h4 {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 16px;
  opacity: 0.9;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 0.88rem;
  opacity: 0.65;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.footer-col ul a:hover {
  opacity: 1;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 48px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.5;
  color: rgba(255,255,255,0.5);
}

/* --- 工具类 --- */
.text-accent {
  color: #e8634a;
}

.text-center { text-align: center; }

.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  opacity: 0.7;
  line-height: 1.7;
  color: #4a5568;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* --- 装饰性几何元素（纯CSS） --- */
.geo-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e8634a;
  margin: 0 4px;
}

.geo-bar {
  display: block;
  width: 40px;
  height: 3px;
  border-radius: 4px;
  background: linear-gradient(90deg, #e8634a, #c17a6e);
  margin: 16px 0;
}

/* 分割线装饰 */
.divider-wave {
  width: 100%;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 12'%3E%3Cpath d='M0,6 Q150,0 300,6 T600,6 T900,6 T1200,6' stroke='%23c17a6e' stroke-width='1.5' fill='none' opacity='0.15'/%3E%3C/svg%3E") repeat-x;
  margin: 8px 0 24px;
}

/* --- 响应式 --- */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-content { max-width: 100%; }
  .hero p { max-width: 100%; }
  .hero-buttons { justify-content: center; }
  .hero-image { 
    max-width: 600px; 
    margin: 0 auto;
    transform: none;
  }
  .hero-image:hover { transform: none; }
  .hero h1 { font-size: 2.6rem; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { padding: 48px 28px; }
}

@media (max-width: 768px) {
  .feature-block { grid-template-columns: 1fr; gap: 40px; }
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(250,245,239,0.98);
    backdrop-filter: blur(16px);
    padding: 24px 28px;
    gap: 18px;
    border-bottom: 1px solid rgba(193,122,110,0.10);
    box-shadow: 0 16px 48px rgba(0,0,0,0.06);
  }
  .main-nav.open a { font-size: 1rem; padding: 8px 0; }
  .main-nav.open .nav-cta { text-align: center; }
  .section { padding: 72px 0; }
  .hero { min-height: 60vh; }
  .hero h1 { font-size: 2.2rem; }
  .section-title { font-size: 1.8rem; }
  .cards-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .content-wall { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-number { font-size: 2rem; }
  .cta-banner h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .header-inner { padding: 0 16px; height: 64px; }
  .section { padding: 56px 0; }
  .hero { min-height: 50vh; }
  .hero h1 { font-size: 1.8rem; }
  .hero p { font-size: 0.95rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; padding: 14px 24px; }
  .cards-grid, .content-wall, .stats-bar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat-item { padding: 24px 16px; }
  .stat-number { font-size: 1.8rem; }
  .section-title { font-size: 1.5rem; }
  .cta-banner { padding: 36px 20px; border-radius: 16px; }
  .cta-banner h2 { font-size: 1.3rem; }
  .feature-block { gap: 28px; }
  .hero-image { border-radius: 14px; }
  .faq-item .faq-question { padding: 16px 18px; font-size: 0.9rem; }
  .faq-item .faq-answer { padding: 0 18px 16px; font-size: 0.88rem; }
}