/* ========== 出众科技 OTC 网站样式 ========== */

/* ---- CSS变量 ---- */
:root {
  --primary: #005DB4;
  --primary-dark: #003D7A;
  --primary-light: #E8F1FA;
  --accent: #00A86B;
  --accent-light: #E6F7F0;
  --text-dark: #1A2332;
  --text-gray: #5A6578;
  --text-light: #8A95A8;
  --bg-white: #FFFFFF;
  --bg-light: #F7F9FC;
  --bg-dark: #0A1628;
  --border: #E2E8F0;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
  --max-width: 1200px;
}

/* ---- 基础重置 ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- 导航栏 ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img { height: 40px; width: auto; }
.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
}
.logo-text span {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-gray);
  display: block;
  letter-spacing: 0.5px;
  margin-top: -2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover,
.nav-links a.active { color: var(--primary); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}
.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 10px 24px !important;
  border-radius: 24px;
  font-size: 14px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--primary-dark); transform: translateY(-1px); }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.mobile-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
}

/* ---- Hero区域 ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #0D2240 50%, var(--primary-dark) 100%);
  overflow: hidden;
  padding-top: 72px;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../images/banner-bg.png') center/cover no-repeat;
  opacity: 0.15;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content h1 {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-content h1 .highlight {
  background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content .subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
  font-weight: 300;
}
.hero-content .desc {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.8;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #008F5D 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,168,107,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,168,107,0.45);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual img {
  max-height: 420px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
.hero-stats {
  position: absolute;
  bottom: 40px;
  left: 0; right: 0;
  z-index: 2;
}
.hero-stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}
.stat-item .num {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-item .num span { font-size: 18px; font-weight: 400; }
.stat-item .label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
}

/* ---- Section通用 ---- */
.section {
  padding: 100px 0;
}
.section-alt { background: var(--bg-light); }
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.section-header .tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
}
.section-header p {
  font-size: 17px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ---- 产品卡片 ---- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.product-card:hover::before { opacity: 1; }
.product-card .icon {
  width: 56px; height: 56px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.product-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.product-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 20px;
}
.product-card .specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-card .specs span {
  font-size: 12px;
  padding: 4px 12px;
  background: var(--bg-light);
  color: var(--text-gray);
  border-radius: 20px;
  font-weight: 500;
}
.product-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}
.product-card .card-link:hover { gap: 10px; }

/* ---- 优势特性 ---- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.feature-item {
  display: flex;
  gap: 20px;
}
.feature-item .icon-box {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  flex-shrink: 0;
}
.feature-item h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.feature-item p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
}
.feature-img {
  background: linear-gradient(135deg, var(--primary-light), #fff);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}
.feature-img img { max-height: 320px; filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1)); }

/* ---- CTA区域 ---- */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}
.cta-section .container {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section .btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.cta-section .btn-primary:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
}

/* ---- 页脚 ---- */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-text { color: #fff; margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.footer-brand .contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-brand .contact-info span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.footer h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/* ---- 面包屑 ---- */
.breadcrumb {
  background: var(--bg-light);
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-light);
}
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { color: var(--text-light); }
.breadcrumb .current { color: var(--text-dark); font-weight: 500; }

/* ---- 页面标题区 ---- */
.page-header {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
  padding: 140px 0 60px;
  text-align: center;
  color: #fff;
}
.page-header h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
}
.page-header p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* ---- 关于我们页面 ---- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-intro .content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}
.about-intro .content p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-intro .image {
  background: var(--primary-light);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-intro .image img { max-height: 280px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.value-card .icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.value-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.value-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}

/* ---- 联系页面 ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}
.contact-info-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-info-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}
.contact-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; }
.contact-item .icon {
  width: 44px; height: 44px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-item h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-item p {
  font-size: 15px;
  color: var(--text-gray);
}
.contact-form {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-form h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.form-group label .required { color: #EF4444; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,93,180,0.35);
}
.map-container {
  margin-top: 48px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 360px;
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ---- 产品详情 ---- */
.product-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.product-detail-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: var(--transition);
}
.product-detail-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}
.product-detail-card .tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 16px;
}
.product-detail-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.product-detail-card .desc {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 20px;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.spec-table th,
.spec-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.spec-table th {
  background: var(--bg-light);
  font-weight: 600;
  color: var(--text-dark);
  width: 40%;
}
.spec-table td { color: var(--text-gray); }
.spec-table tr:last-child th,
.spec-table tr:last-child td { border-bottom: none; }

/* ---- 动画 ---- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- 响应式 ---- */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-content .desc { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-visual img { max-height: 300px; }
  .hero-stats .container { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .hero-content h1 { font-size: 32px; }
  .hero-content .subtitle { font-size: 16px; }
  .section-header h2 { font-size: 28px; }
  .section { padding: 60px 0; }
  .product-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats .container { grid-template-columns: repeat(2, 1fr); }
  .stat-item .num { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .cta-section h2 { font-size: 28px; }
  .page-header h1 { font-size: 30px; }
  .page-header { padding: 120px 0 40px; }
}

@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .hero-stats .container { grid-template-columns: 1fr; }
  .btn { padding: 12px 24px; font-size: 14px; }
}

/* ---- 移动端菜单 ---- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  z-index: 999;
  box-shadow: var(--shadow);
}
.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a.active { color: var(--primary); }
.mobile-menu.show { display: block; }

/* ---- 新闻列表 ---- */
.news-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.news-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.news-card .card-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 14px;
}
.news-card .date {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 10px;
}
.news-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
  line-height: 1.5;
}
.news-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 16px;
}
.news-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}
.news-card .card-link:hover { gap: 10px; }

/* ---- 文章页 ---- */
.article { max-width: 820px; margin: 0 auto; }
.article .article-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.article .meta {
  font-size: 14px;
  color: var(--text-light);
  padding-bottom: 24px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.article h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 36px 0 14px;
  color: var(--text-dark);
}
.article p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.9;
  margin-bottom: 16px;
}
.article ul, .article ol { margin-bottom: 16px; }
.article li {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.9;
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
}
.article ul li::before {
  content: '';
  position: absolute;
  left: 2px; top: 12px;
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
}
.article ol { counter-reset: item; list-style: none; }
.article ol li { counter-increment: item; }
.article ol li::before {
  content: counter(item);
  position: absolute;
  left: 0; top: 3px;
  width: 20px; height: 20px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.article strong { color: var(--text-dark); }
.article .article-cta {
  margin-top: 48px;
  background: var(--primary-light);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}
.article .article-cta h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.article .article-cta p {
  margin-bottom: 20px;
  font-size: 15px;
  color: var(--text-gray);
}

@media (max-width: 768px) {
  .news-list { grid-template-columns: 1fr; }
  .article .article-title { font-size: 24px; }
  .article h2 { font-size: 19px; }
}
