/* 方块娱乐 — 几何解构风格设计系统 */
/* 配色：暖米白 + 珊瑚橙 + 薄荷绿 + 暖黄点缀 */

:root {
  --bg: #FFF8F0;
  --bg-alt: #F0FAF9;
  --surface: #FFFFFF;
  --text: #3D3430;
  --text-muted: #7A6E68;
  --primary: #FF6B6B;
  --primary-hover: #E85555;
  --secondary: #4ECDC4;
  --secondary-hover: #3AB5AD;
  --accent: #FFE66D;
  --accent-text: #3D3430;
  --border: #E8E0D8;
  --border-light: #F0EBE5;
  --shadow-sm: 0 1px 3px rgba(61,52,48,0.06);
  --shadow-md: 0 4px 20px rgba(61,52,48,0.10);
  --shadow-lg: 0 8px 32px rgba(61,52,48,0.14);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --font-display: system-ui, 'PingFang SC', 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
  --font-body: system-ui, 'PingFang SC', 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
}

/* ========== 基础重置 ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========== 核心布局 ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section:nth-child(even) {
  background: var(--bg-alt);
}

/* ========== 导航 ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,248,240,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.25s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  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: var(--text);
  letter-spacing: -0.02em;
  transition: opacity 0.2s;
}

.logo:hover {
  opacity: 0.8;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: var(--primary);
  color: #fff;
  transform: rotate(0deg);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  font-weight: 900;
  letter-spacing: 0;
}

.logo:hover .logo-icon {
  transform: rotate(12deg) scale(1.05);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 550;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
  letter-spacing: 0.01em;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transition: width 0.25s cubic-bezier(0.25,0.8,0.25,1.2);
}

.main-nav a:hover {
  color: var(--primary);
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 9px 22px !important;
  border-radius: var(--radius) !important;
  color: #fff !important;
  font-weight: 700 !important;
  background: var(--primary) !important;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
  letter-spacing: 0.02em !important;
}

.nav-cta:hover {
  background: var(--primary-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255,107,107,0.35);
}

.nav-cta::after {
  display: none !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.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 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -180px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,107,107,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(78,205,196,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
  background: var(--accent);
  color: var(--accent-text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1.18;
  margin-bottom: 20px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
}

.hero h1 .highlight {
  color: var(--primary);
  position: relative;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--accent);
  z-index: -1;
  border-radius: 4px;
  opacity: 0.6;
}

.hero p {
  font-size: 1.12rem;
  opacity: 0.75;
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.7;
  color: var(--text-muted);
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1deg);
  transition: transform 0.4s ease;
  position: relative;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 22px;
  border: 2.5px dashed var(--secondary);
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

.hero-image:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 16px 40px rgba(61,52,48,0.18);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========== 按钮 ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.25,0.8,0.25,1);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  font-family: var(--font-body);
  position: relative;
}

.btn-primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 4px 14px rgba(255,107,107,0.3);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,107,0.4);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(255,107,107,0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--text);
  color: var(--text);
}

.btn-outline:hover {
  background: var(--text);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(61,52,48,0.18);
}

/* ========== 标签/标题 ========== */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
  color: var(--secondary);
  position: relative;
  padding-left: 28px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin-bottom: 14px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.25;
}

.section-desc {
  max-width: 600px;
  opacity: 0.7;
  margin-bottom: 40px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ========== 卡片网格 ========== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}

.category-card {
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  border: 1.5px solid var(--border-light);
  background: var(--surface);
  transition: all 0.3s cubic-bezier(0.25,0.8,0.25,1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--primary);
  border-radius: 0 0 4px 0;
  transition: height 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.category-card:hover::before {
  height: 100%;
  border-radius: 0;
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
  background: var(--bg-alt);
  color: var(--secondary);
  transition: all 0.3s;
}

.category-card:hover .card-icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.08) rotate(-6deg);
}

.category-card h3 {
  font-size: 1.15rem;
  font-weight: 750;
  margin-bottom: 8px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.category-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.card-link {
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s;
}

.card-link:hover {
  gap: 10px;
}

.card-link::after {
  content: '→';
  transition: transform 0.25s;
}

.card-link:hover::after {
  transform: translateX(3px);
}

/* ========== 特性块 ========== */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.feature-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}

.feature-image::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.8;
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-text h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: var(--text);
}

.feature-text p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 550;
  color: var(--text);
  font-size: 0.95rem;
}

.feature-list li::before {
  content: '✓';
  font-weight: 800;
  color: var(--secondary);
  font-size: 1rem;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(78,205,196,0.12);
  border-radius: 50%;
}

/* ========== 数据条 ========== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-light);
  background: var(--surface);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
  transition: width 0.3s;
}

.stat-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: transparent;
}

.stat-item:hover::after {
  width: 50px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.65;
  margin-top: 8px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ========== 内容墙 ========== */
.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}

.content-wall-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border-light);
  background: var(--surface);
  transition: all 0.3s cubic-bezier(0.25,0.8,0.25,1);
}

.content-wall-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.content-wall-item img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.content-wall-item:hover img {
  transform: scale(1.04);
}

.content-wall-body {
  padding: 22px 20px;
}

.content-wall-body h4 {
  font-weight: 750;
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.content-wall-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========== FAQ ========== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  cursor: pointer;
  background: var(--surface);
  transition: all 0.25s;
}

.faq-item:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-sm);
}

.faq-item .faq-question {
  padding: 18px 22px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.98rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

.faq-item .faq-question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--secondary);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
  color: var(--primary);
}

.faq-item .faq-answer {
  padding: 0 22px 18px;
  display: none;
  opacity: 0.75;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.faq-item.open {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  background: #FFFDFB;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ========== CTA横幅 ========== */
.cta-banner {
  padding: 60px 32px;
  text-align: center;
  border-radius: var(--radius-xl);
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, #FF8E7A 40%, #FF6B6B 70%, #E8705A 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.08);
  border-radius: 30px;
  transform: rotate(30deg);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 160px;
  height: 160px;
  background: rgba(255,255,255,0.06);
  border-radius: 24px;
  transform: rotate(-20deg);
  pointer-events: none;
}

.cta-banner h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary:hover {
  background: #FFFDFB;
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
  color: var(--primary-hover);
}

/* ========== 页脚 ========== */
.site-footer {
  padding: 56px 0 28px;
  background: #F5EFE8;
  border-top: 1px solid var(--border);
  color: var(--text);
}

.site-footer .container {
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  color: var(--text);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-col h4 {
  font-weight: 750;
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ========== 工具类 ========== */
.text-accent {
  color: var(--primary);
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  opacity: 0.7;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

/* ========== 额外装饰元素 ========== */
.geo-accent {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 3px;
  transform: rotate(45deg);
  margin: 0 4px;
  vertical-align: middle;
  opacity: 0.8;
}

/* ========== 滚动动画提示 ========== */
@keyframes floatBlock {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-8px) rotate(2deg); }
  75% { transform: translateY(4px) rotate(-2deg); }
}

.float-block {
  display: inline-block;
  animation: floatBlock 5s ease-in-out infinite;
}

/* ========== 响应式 ========== */
@media (max-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .hero-content {
    order: 1;
    max-width: 100%;
  }

  .hero p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    order: 0;
    max-width: 340px;
    margin: 0 auto;
    transform: rotate(0deg);
  }

  .hero-image::before {
    display: none;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-image {
    order: 0;
  }

  .feature-text {
    order: 1;
    text-align: center;
  }

  .feature-list li {
    justify-content: center;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .stat-number {
    font-size: 1.9rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: span 2;
    text-align: center;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: rgba(255,248,240,0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    z-index: 999;
  }

  .main-nav.open a {
    font-size: 1rem;
  }

  .nav-cta {
    text-align: center;
    justify-content: center;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .content-wall {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .cta-banner h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .cards-grid,
  .content-wall,
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .section {
    padding: 50px 0;
  }

  .hero {
    min-height: 60vh;
  }

  .cta-banner {
    padding: 40px 20px;
  }

  .stat-item {
    padding: 20px 14px;
  }

  .stat-number {
    font-size: 1.6rem;
  }
}

/* ========== 无障碍与打印 ========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header {
    position: static;
  }

  .hero {
    padding-top: 0;
    min-height: auto;
  }

  .cta-banner {
    background: #fff !important;
    color: #000 !important;
    border: 2px solid #000;
  }

  .cta-banner h2 {
    color: #000 !important;
  }
}