/* ========================================
   GEO优化专题页 - 智慧互动GEO
   白色背景 · 科技蓝主色 · 响应式设计
   ======================================== */

/* --- 基础重置与变量 --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1a56db;
  --primary-dark: #1040a0;
  --primary-light: #e8eefb;
  --primary-gradient: linear-gradient(135deg, #1a56db 0%, #3b82f6 50%, #06b6d4 100%);
  --text: #1f2937;
  --text-secondary: #4b5563;
  --text-muted: #6b7280;
  --bg: #ffffff;
  --bg-light: #f8fafc;
  --bg-section: #f1f5f9;
  --border: #e5e7eb;
  --border-light: #f0f0f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --max-width: 1200px;
  --header-height: 72px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  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);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #fff;
  border-color: transparent;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(26, 86, 219, 0.4);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

.btn-white:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 13px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
}

/* --- 章节公共样式 --- */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  padding: 4px 16px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.3;
}

.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* --- 导航 --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
  height: var(--header-height);
}

.header.scrolled {
  border-bottom-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
}

.logo-icon {
  font-size: 28px;
  color: var(--primary);
  line-height: 1;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.logo-accent {
  color: var(--primary);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding: 4px 0;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: width var(--transition);
  border-radius: 2px;
}

.nav a:hover {
  color: var(--primary);
}

.nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: all var(--transition);
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero区域 --- */
.hero {
  padding: 160px 0 80px;
  background: linear-gradient(170deg, #f0f5ff 0%, #ffffff 40%, #f0fdfa 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26, 86, 219, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 6px 20px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 24px;
  border: 1px solid rgba(26, 86, 219, 0.15);
}

.hero-title {
  font-size: 44px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-highlight {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

/* --- 专题前言 --- */
.intro {
  padding: 80px 0;
  background: var(--bg);
}

.intro-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 16px;
  text-indent: 2em;
}

.intro-content p:last-child {
  margin-bottom: 0;
}

.intro-content strong {
  color: var(--text);
}

/* --- 核心技术 --- */
.tech {
  padding: 80px 0;
  background: var(--bg-section);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tech-card {
  background: var(--bg);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}

.tech-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(26, 86, 219, 0.15);
}

.tech-icon {
  width: 48px;
  height: 48px;
  color: var(--primary);
  margin-bottom: 20px;
}

.tech-icon svg {
  width: 100%;
  height: 100%;
}

.tech-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.tech-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* --- 服务优势 --- */
.advantage {
  padding: 80px 0;
  background: var(--bg);
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.advantage-card {
  padding: 40px 32px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary);
  transition: all var(--transition);
}

.advantage-card:hover {
  background: var(--primary-light);
  border-left-color: var(--primary-dark);
}

.advantage-num {
  font-size: 48px;
  font-weight: 800;
  color: rgba(26, 86, 219, 0.1);
  line-height: 1;
  margin-bottom: 12px;
}

.advantage-card:hover .advantage-num {
  color: rgba(26, 86, 219, 0.15);
}

.advantage-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.advantage-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* --- 合规保障 --- */
.compliance {
  padding: 80px 0;
  background: var(--bg-section);
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.compliance-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}

.compliance-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.compliance-icon {
  width: 40px;
  height: 40px;
  color: var(--primary);
  margin: 0 auto 16px;
}

.compliance-icon svg {
  width: 100%;
  height: 100%;
}

.compliance-item h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.compliance-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- 收费价格 --- */
.pricing {
  padding: 80px 0;
  background: var(--bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
}

.pricing-featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--primary);
  transform: scale(1.03);
}

.pricing-featured:hover {
  transform: scale(1.03) translateY(-2px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 20px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.pricing-target {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-list {
  margin-bottom: 24px;
}

.pricing-list li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
  padding-left: 20px;
  position: relative;
}

.pricing-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.pricing-list li:last-child {
  border-bottom: none;
}

.pricing-price {
  text-align: center;
  padding: 16px;
  background: var(--bg-light);
  border-radius: var(--radius);
  margin-bottom: 12px;
}

.price-label {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.price-period {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

.pricing-tag {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.pricing-card-wide {
  border-color: var(--primary);
}

.pricing-card-wide .pricing-header {
  margin-bottom: 0;
}

.pricing-inline-info {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 20px 0;
}

.pricing-inline-info strong {
  font-size: 15px;
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}

.pricing-inline-info p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.pricing-disclaimer {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 32px;
}

/* --- 适配场景 --- */
.scenarios {
  padding: 80px 0;
  background: var(--bg-section);
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.scenario-card {
  background: var(--bg);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}

.scenario-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.scenario-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.scenario-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.scenario-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- 对比 --- */
.comparison {
  padding: 80px 0;
  background: var(--bg);
}

.compare-table {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.compare-header {
  display: grid;
  grid-template-columns: 140px 1fr 1fr;
  background: var(--bg-section);
}

.compare-header .compare-label {
  background: var(--text);
  color: #fff;
}

.compare-header .compare-label,
.compare-header .compare-col {
  padding: 16px 20px;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}

.compare-header .compare-col {
  color: var(--text);
}

.compare-header .compare-seo {
  background: var(--bg-light);
}

.compare-header .compare-geo {
  background: var(--primary-light);
  color: var(--primary);
}

.compare-row {
  display: grid;
  grid-template-columns: 140px 1fr 1fr;
  border-bottom: 1px solid var(--border-light);
}

.compare-row:last-child {
  border-bottom: none;
}

.compare-row .compare-label {
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-light);
  display: flex;
  align-items: center;
}

.compare-row .compare-col {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
}

.compare-row .compare-col.highlight {
  color: var(--primary);
  font-weight: 600;
  background: rgba(26, 86, 219, 0.03);
}

/* --- 案例 --- */
.cases {
  padding: 80px 0;
  background: var(--bg-section);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.case-card {
  background: var(--bg);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}

.case-card:hover {
  box-shadow: var(--shadow-lg);
}

.case-tag {
  display: inline-block;
  padding: 3px 12px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  border-radius: 12px;
  margin-bottom: 12px;
}

.case-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.case-metric {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 20px;
  background: var(--bg-section);
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.metric-num {
  font-size: 36px;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-label {
  font-size: 14px;
  color: var(--text-muted);
}

.case-body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 6px;
}

.case-body p:last-child {
  margin-bottom: 0;
}

.case-body strong {
  color: var(--text);
}

/* --- FAQ --- */
.faq {
  padding: 80px 0;
  background: var(--bg);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-light);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-arrow {
  font-size: 14px;
  color: var(--text-muted);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding-bottom: 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* --- CTA --- */
.cta {
  padding: 80px 0;
  background: var(--primary-gradient);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.cta-inner > p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 32px;
}

.cta-inner strong {
  color: #fff;
}

.cta-benefits {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.cta-benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.15);
  border-radius: 20px;
  color: #fff;
  font-size: 14px;
}

.cta-icon {
  color: #86efac;
  font-weight: 700;
}

.cta-note {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 16px;
}

/* --- 页脚 --- */
.footer {
  padding: 60px 0 0;
  background: #111827;
  color: rgba(255,255,255,0.6);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  max-width: 320px;
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 12px;
}

.footer-brand .logo-accent {
  color: #60a5fa;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 48px;
}

.footer-col h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: #60a5fa;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ========================================
   响应式设计
   ======================================== */

@media (max-width: 1024px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .compliance-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .scenario-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-inline-info {
    flex-wrap: wrap;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }

  .nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 32px 24px;
    gap: 0;
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    font-size: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    width: 100%;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-stats {
    gap: 16px;
    flex-wrap: wrap;
  }

  .stat-item {
    width: calc(50% - 8px);
  }

  .stat-number {
    font-size: 28px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section-title {
    font-size: 24px;
  }

  .tech-grid {
    grid-template-columns: 1fr;
  }

  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .compliance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-featured {
    transform: none;
  }

  .pricing-featured:hover {
    transform: translateY(-2px);
  }

  .scenario-grid {
    grid-template-columns: 1fr;
  }

  .compare-table {
    font-size: 13px;
  }

  .compare-header,
  .compare-row {
    grid-template-columns: 80px 1fr 1fr;
  }

  .compare-header .compare-label,
  .compare-header .compare-col,
  .compare-row .compare-label,
  .compare-row .compare-col {
    padding: 10px 12px;
    font-size: 12px;
  }

  .cases-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner h2 {
    font-size: 24px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }

  .footer-links {
    gap: 32px;
    flex-wrap: wrap;
  }

  .footer-col {
    min-width: 120px;
  }

  .intro-content p {
    text-indent: 0;
  }
}

@media (max-width: 480px) {
  .compliance-grid {
    grid-template-columns: 1fr;
  }

  .hero-badge {
    font-size: 12px;
  }

  .hero-title {
    font-size: 24px;
  }

  .pricing-inline-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-inline-info .btn {
    width: 100%;
  }

  .cta-benefits {
    justify-content: flex-start;
  }
}
