:root {
  --brand-orange: #ff7a1a;
  --brand-dark: #2f2a2a;
  --brand-light: #ffffff;
  --muted: #6f6c6c;
  --bg-gray: #f7f7f7;
  --border: #e5e3e3;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--brand-dark);
  background-color: var(--brand-light);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1040px, 92%);
  margin: 0 auto;
}

.site-header {
  background-color: var(--brand-light);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand img {
  width: 44px;
  height: 44px;
}

nav a {
  margin-left: 24px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
}

nav a:hover,
nav a:focus {
  color: var(--brand-orange);
}

.hero {
  padding: 120px 0 100px;
  background-image: url('../images/poster.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 245, 235, 0.35) 100%);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-30px, -30px);
  }
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-inner {
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.15), rgba(255, 122, 26, 0.08));
  border: 1px solid rgba(255, 122, 26, 0.25);
  border-radius: 999px;
  color: var(--brand-orange);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.badge-icon {
  font-size: 1.1rem;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-inner {
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.15), rgba(255, 122, 26, 0.08));
  border: 1px solid rgba(255, 122, 26, 0.25);
  border-radius: 999px;
  color: var(--brand-orange);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.badge-icon {
  font-size: 1.1rem;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 24px;
  font-weight: 800;
  line-height: 1.2;
  color: #1a1818;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8),
               0 4px 16px rgba(255, 255, 255, 0.6),
               0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-copy .lead {
  margin-bottom: 36px;
  font-size: 1.15rem;
  color: #2f2a2a;
  line-height: 1.7;
  text-shadow: 0 2px 6px rgba(255, 255, 255, 0.9),
               0 1px 2px rgba(0, 0, 0, 0.1);
  font-weight: 500;
}

.subheading {
  color: var(--brand-orange);
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover::before {
  opacity: 1;
}

.btn.primary {
  background: linear-gradient(135deg, var(--brand-orange), #ff9d4d);
  color: var(--brand-light);
  box-shadow: 0 8px 24px rgba(255, 122, 26, 0.25);
}

.btn.primary:hover {
  box-shadow: 0 12px 32px rgba(255, 122, 26, 0.35);
}

.btn.secondary {
  background: var(--brand-light);
  color: var(--brand-dark);
  border: 2px solid var(--brand-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn.secondary:hover {
  background: var(--brand-dark);
  color: var(--brand-light);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-rect {
  border-radius: 12px;
  padding: 12px 20px;
}

.btn:hover {
  transform: translateY(-2px);
}

/* Hero 数据统计 */
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(229, 227, 227, 0.5);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3),
               0 4px 16px rgba(0, 0, 0, 0.2);
}

.stat-label {
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3),
               0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-rect {
  border-radius: 12px;
  padding: 12px 20px;
}

.btn:hover {
  transform: translateY(-2px);
}

.highlights {
  background: linear-gradient(180deg, var(--brand-light) 0%, var(--bg-gray) 100%);
  padding: 80px 0;
}

.highlights-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-title-small {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 12px;
}

.section-subtitle-small {
  font-size: 1.05rem;
  color: var(--muted);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.highlight-card {
  background: var(--brand-light);
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(229, 227, 227, 0.5);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 122, 26, 0.3);
}

.highlight-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.12), rgba(255, 122, 26, 0.06));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.highlight-card:hover .highlight-icon {
  transform: scale(1.1) rotate(-5deg);
}

.highlight-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin: 0;
}

.highlight-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.highlight-footer {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid rgba(229, 227, 227, 0.5);
}

.highlight-tag {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(255, 122, 26, 0.08);
  color: var(--brand-orange);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.page-hero {
  padding: 72px 0 48px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 122, 26, 0.08), transparent);
}

.page-hero .lead {
  color: var(--muted);
  margin-top: 12px;
}

.narrow {
  max-width: 640px;
}

.feature-list {
  display: grid;
  gap: 24px;
  padding: 60px 0 80px;
  max-width: 800px;
}

.feature-list article {
  padding: 32px;
  background: var(--brand-light);
  border-left: 4px solid var(--brand-orange);
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-list article:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.feature-list article h2 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 12px;
}

.feature-list article p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
}

.downloads table {
  width: 100%;
  border-collapse: collapse;
  margin: 36px 0 72px;
}

.downloads th,
.downloads td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.downloads th {
  background: rgba(255, 122, 26, 0.06);
  font-weight: 600;
}

.about {
  display: grid;
  gap: 32px;
  padding: 48px 0 80px;
  max-width: 800px;
}

.about article h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--brand-dark);
}

.about article p {
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 16px;
}

/* 主页新增板块 */
.why-choose {
  padding: 80px 0;
  background: var(--bg-gray);
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: var(--brand-dark);
}

.section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  color: var(--muted);
  margin-bottom: 48px;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .why-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-card {
  padding: 36px 28px;
  background: var(--brand-light);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(229, 227, 227, 0.5);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 122, 26, 0.3);
}

.why-card-enhanced {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.12), rgba(255, 122, 26, 0.06));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(-5deg);
}

.why-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 12px;
}

.why-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.why-feature-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(229, 227, 227, 0.5);
}

.why-feature-list span {
  color: var(--brand-orange);
  font-size: 0.85rem;
  font-weight: 600;
}

/* 使用场景 */
.use-cases {
  padding: 80px 0;
  background: var(--brand-light);
}

.cases-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.case-item {
  padding: 36px;
  background: var(--brand-light);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-item:hover {
  border-color: var(--brand-orange);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.case-item-enhanced {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.case-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.case-item:hover .case-icon {
  transform: scale(1.15) rotate(-5deg);
}

.case-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.case-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 0;
}

.case-item p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.case-highlights {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.case-tag {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(255, 122, 26, 0.08);
  color: var(--brand-orange);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(255, 122, 26, 0.15);
}

/* 产品价值 */
.value-prop {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.08) 0%, rgba(255, 200, 100, 0.05) 50%, rgba(255, 122, 26, 0.03) 100%);
  position: relative;
  overflow: hidden;
}

.value-prop::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.value-container {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.value-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.15), rgba(255, 122, 26, 0.08));
  color: var(--brand-orange);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 122, 26, 0.2);
}

.value-container h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 24px;
  line-height: 1.3;
}

.value-container p {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.value-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.value-trust {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(229, 227, 227, 0.5);
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

/* 功能页 Hero 区域 */
.features-hero {
  padding: 80px 0 60px;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.05) 0%, rgba(255, 122, 26, 0.02) 50%, rgba(255, 255, 255, 0) 100%);
  position: relative;
  overflow: hidden;
}

.features-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.features-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.features-hero .container {
  position: relative;
  z-index: 1;
}

.features-hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.15), rgba(255, 122, 26, 0.08));
  color: var(--brand-orange);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 122, 26, 0.2);
}

.features-hero h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--brand-dark);
}

.features-hero .lead {
  color: var(--muted);
  margin-top: 12px;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* 功能页简介 */
.feature-intro-section {
  padding: 50px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(247, 247, 247, 0.5) 100%);
}

.feature-intro-content {
  max-width: 800px;
  text-align: center;
}

.feature-intro-content p {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

/* 功能卡片网格 */
.features-grid-section {
  padding: 60px 0 100px;
  background: var(--bg-gray);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 功能卡片基础样式 */
.feature-card {
  background: var(--brand-light);
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(229, 227, 227, 0.6);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-orange), #ff9d4d);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 122, 26, 0.3);
}

.feature-card:hover::before {
  opacity: 1;
}

/* 特色卡片变体 */
.feature-card-primary {
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.05) 0%, var(--brand-light) 100%);
  border: 1px solid rgba(255, 122, 26, 0.2);
}

.feature-card-accent {
  background: linear-gradient(135deg, rgba(255, 200, 100, 0.08) 0%, var(--brand-light) 100%);
  border: 1px solid rgba(255, 200, 100, 0.3);
}

.feature-card-highlight {
  background: linear-gradient(135deg, rgba(100, 150, 255, 0.05) 0%, var(--brand-light) 100%);
  border: 1px solid rgba(100, 150, 255, 0.2);
}

.feature-card-coming {
  opacity: 0.85;
  background: linear-gradient(135deg, rgba(150, 150, 150, 0.03) 0%, var(--brand-light) 100%);
}

.feature-card-coming:hover {
  opacity: 1;
}

/* 宽卡片 */
.feature-card-wide {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.08) 0%, rgba(255, 200, 100, 0.05) 100%);
  border: 2px dashed rgba(255, 122, 26, 0.25);
}

.feature-card-wide:hover {
  transform: translateY(-4px);
  border-style: solid;
}

/* 功能图标 */
.feature-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.1), rgba(255, 122, 26, 0.05));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.icon-emoji {
  font-size: 2rem;
}

/* 功能内容 */
.feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-content h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin: 0;
  line-height: 1.3;
}

.feature-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.feature-details {
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-details li {
  color: var(--muted);
  font-size: 0.9rem;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.feature-details li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand-orange);
  font-weight: 700;
}

/* 功能徽章 */
.feature-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--brand-orange);
  color: var(--brand-light);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(255, 122, 26, 0.25);
}

.ai-badge {
  background: linear-gradient(135deg, #6496ff, #4a7dff);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 2px 8px rgba(100, 150, 255, 0.3);
  }
  50% {
    box-shadow: 0 2px 16px rgba(100, 150, 255, 0.5);
  }
}

.coming-badge {
  background: var(--muted);
  opacity: 0.8;
}

/* 宽卡片内容 */
.feature-content-wide {
  text-align: center;
}

.feature-content-wide h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 12px;
}

.feature-content-wide p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-tags {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.tag {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 122, 26, 0.1);
  color: var(--brand-orange);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255, 122, 26, 0.2);
  transition: all 0.2s ease;
}

.tag:hover {
  background: rgba(255, 122, 26, 0.15);
  transform: translateY(-2px);
}


.site-footer {
  background: var(--bg-gray);
  padding: 32px 0;
  margin-top: 0;
}

.footer-inner {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.muted {
  color: var(--muted);
}

/* 后台管理页面样式 */
.page-hero {
  padding: 72px 0 48px;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.08), rgba(255, 200, 100, 0.05));
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 200, 100, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, #ff7a1a, #ff9d4d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero .lead {
  color: var(--muted);
  margin-top: 12px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.dashboard {
  padding: 32px 0 72px;
}

.auth-card,
.form-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 122, 26, 0.1);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 8px 32px rgba(255, 122, 26, 0.08);
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-card::before,
.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #ff7a1a, #ff9d4d);
  transition: left 0.3s ease;
}

.auth-card:hover::before,
.form-card:hover::before {
  left: 0;
}

.auth-card:hover,
.form-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(255, 122, 26, 0.15);
  border-color: rgba(255, 122, 26, 0.2);
}

.form-card h2 {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff7a1a, #ff9d4d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-card h2::before {
  content: '⚙️';
  font-size: 1.5rem;
}

.form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-end;
  position: relative;
}

.form-inline {
  align-items: flex-end;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 220px;
  flex: 1;
}

.field-control {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 200px;
  flex: 1;
}

.field-control--narrow {
  flex: 0 1 180px;
}

.field-control--type {
  max-width: 240px;
}

.field-control label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.field-control label::before {
  content: '';
  width: 4px;
  height: 4px;
  background: linear-gradient(135deg, #ff7a1a, #ff9d4d);
  border-radius: 50%;
}

.form-group input,
.form-group select,
.field-control input,
.field-control select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid transparent;
  border-radius: 16px;
  font-size: 0.95rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group select:focus,
.field-control input:focus,
.field-control select:focus {
  border-color: #ff7a1a;
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 122, 26, 0.15), 0 8px 24px rgba(255, 122, 26, 0.1);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.95);
}

.form-group input::placeholder,
.field-control input::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

.form-group--stacked {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-control input,
.field-control select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
  background: #fff;
}

.download-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.download-field input[type="file"] {
  padding: 6px 0;
  border: none;
}

.download-field small {
  color: var(--muted);
  font-size: 0.8rem;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--brand-orange);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 122, 26, 0.18);
}

.field-control input:focus,
.field-control select:focus,
.download-field input[type="file"]:focus {
  border-color: var(--brand-orange);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 122, 26, 0.18);
}

.form-actions {
  display: flex;
  gap: 12px;
}

.form-error {
  color: #c0392b;
  font-size: 0.95rem;
}

.toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.toggle:hover {
  background: rgba(255, 122, 26, 0.05);
}

.toggle input[type="checkbox"] {
  position: relative;
  width: 48px;
  height: 24px;
  appearance: none;
  background: linear-gradient(135deg, #e0e0e0, #f0f0f0);
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle input[type="checkbox"]:before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.toggle input[type="checkbox"]:checked {
  background: linear-gradient(135deg, #ff7a1a, #ff9d4d);
  box-shadow: 0 2px 12px rgba(255, 122, 26, 0.3);
}

.toggle input[type="checkbox"]:checked:before {
  transform: translateX(24px);
}

.toggle input[type="checkbox"]:hover:before {
  transform: scale(1.1);
}

.toggle input[type="checkbox"]:checked:hover:before {
  transform: translateX(24px) scale(1.1);
}

.toggle-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* 小型toggle样式 */
.badge-toggle input[type="checkbox"] {
  width: 42px;
  height: 20px;
}

.badge-toggle input[type="checkbox"]:before {
  width: 16px;
  height: 16px;
  top: 2px;
  left: 2px;
}

.badge-toggle input[type="checkbox"]:checked:before {
  transform: translateX(22px);
}

.dashboard {
  padding: 32px 0 72px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  position: relative;
  overflow: hidden;
}

.dashboard::before {
  content: '';
  position: absolute;
  top: 5%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: admin-bg-float 15s ease-in-out infinite;
}

.dashboard::after {
  content: '';
  position: absolute;
  bottom: 5%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 157, 77, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: admin-bg-float 20s ease-in-out infinite reverse;
}

@keyframes admin-bg-float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(-3%, -3%) rotate(120deg);
  }
  66% {
    transform: translate(3%, -3%) rotate(240deg);
  }
}

.dashboard .form-card,
.dashboard .admin-card {
  position: relative;
  z-index: 1;
}

.notice {
  padding: 18px 24px;
  border-radius: 16px;
  margin-bottom: 24px;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  border-left: 4px solid;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.notice.success {
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.15), rgba(46, 204, 113, 0.08));
  color: #1e8449;
  border-left-color: #2ecc71;
  box-shadow: 0 4px 16px rgba(46, 204, 113, 0.15);
}

.notice.success::before {
  content: '✅';
  margin-right: 12px;
  font-size: 1.1rem;
}

.notice.error {
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.15), rgba(231, 76, 60, 0.08));
  color: #c0392b;
  border-left-color: #e74c3c;
  box-shadow: 0 4px 16px rgba(231, 76, 60, 0.15);
}

.notice.error::before {
  content: '❌';
  margin-right: 12px;
  font-size: 1.1rem;
}

.notice:hover {
  transform: translateX(4px);
}

.admin-table {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.admin-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  border: 2px solid transparent;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
  backdrop-filter: blur(15px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(255, 122, 26, 0.08);
}

.admin-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #ff7a1a, #ff9d4d);
  transition: left 0.3s ease;
}

.admin-card:hover::before {
  left: 0;
}

.admin-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(255, 122, 26, 0.15);
  border-color: rgba(255, 122, 26, 0.2);
}

.admin-card__header {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}

.admin-card__title {
  flex: 1 1 320px;
  display: grid;
  grid-template-columns: minmax(240px, 2fr) minmax(160px, 1fr);
  gap: 20px;
}

.admin-card__toggles {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.badge-toggle {
  padding: 14px 18px;
  border: 2px solid rgba(255, 122, 26, 0.15);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
  backdrop-filter: blur(10px);
  font-weight: 600;
  color: var(--muted);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.badge-toggle:hover {
  border-color: #ff7a1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 122, 26, 0.1);
}

.badge-toggle input {
  margin-right: 12px;
  transform: scale(1.2);
}

.badge-toggle span {
  font-size: 0.9rem;
  font-weight: 600;
}

.admin-card__body {
  padding-top: 24px;
  border-top: 2px solid rgba(255, 122, 26, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.admin-card__download-fields {
  flex: 1 1 320px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.4));
  border: 2px dashed rgba(255, 122, 26, 0.2);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.admin-card__download-fields:hover {
  border-style: solid;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
}

.admin-card__download-fields label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-card__download-fields label::before {
  content: '📎';
  font-size: 1rem;
}

.file-history {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 122, 26, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.file-history__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.file-history__item {
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 122, 26, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.file-history__item.is-active {
  border-color: rgba(46, 204, 113, 0.5);
  box-shadow: 0 4px 16px rgba(46, 204, 113, 0.15);
}

.file-history__actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(46, 204, 113, 0.12);
  color: #1e8449;
  font-weight: 600;
  font-size: 0.75rem;
}

.file-history__empty {
  font-size: 0.85rem;
  color: var(--muted);
}

.upload-progress {
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 122, 26, 0.2);
}

.upload-progress__bar {
  width: 0;
  height: 6px;
  border-radius: 6px;
  background: linear-gradient(90deg, #ff7a1a, #ffb347);
  transition: width 0.2s ease;
}

.upload-progress__text {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 6px;
}

.upload-progress.is-error {
  border-color: rgba(231, 76, 60, 0.4);
}

.upload-progress.is-error .upload-progress__bar {
  background: rgba(231, 76, 60, 0.7);
}

.admin-card__footer {
  border-top: 2px solid rgba(255, 122, 26, 0.1);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.admin-card__download-action {
  flex: 1 1 260px;
}

.row-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  align-items: center;
}

.btn.link {
  background: none;
  border: none;
  color: #e74c3c;
  padding: 12px 20px;
  box-shadow: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.btn.link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(231, 76, 60, 0.05));
  transition: left 0.3s ease;
}

.btn.link:hover::before {
  left: 0;
}

.btn.link:hover {
  background: rgba(231, 76, 60, 0.08);
  transform: translateY(-2px);
  text-decoration: none;
}

.btn.disabled {
  border: 2px dashed rgba(255, 122, 26, 0.2);
  color: var(--muted);
  background: linear-gradient(135deg, rgba(247, 247, 247, 0.6), rgba(247, 247, 247, 0.4));
  backdrop-filter: blur(10px);
  cursor: not-allowed;
  box-shadow: none;
  pointer-events: none;
  opacity: 0.7;
}

/* 增强按钮样式 */
.btn-primary {
  background: linear-gradient(135deg, #ff7a1a, #ff9d4d);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 16px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(255, 122, 26, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 122, 26, 0.35);
}

.btn-secondary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
  backdrop-filter: blur(15px);
  color: #ff7a1a;
  border: 2px solid rgba(255, 122, 26, 0.3);
  padding: 14px 28px;
  border-radius: 16px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(255, 122, 26, 0.1);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #ff7a1a, #ff9d4d);
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 122, 26, 0.35);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}


@media (max-width: 640px) {
  nav a {
    margin-left: 16px;
    font-size: 0.95rem;
  }

  .header-inner {
    flex-direction: column;
    gap: 16px;
  }

  .hero {
    padding: 80px 0 60px;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 8px 16px;
  }

  .hero-copy h1 {
    font-size: 2rem;
  }

  .hero-copy .lead {
    font-size: 1rem;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .cta-group {
    flex-direction: column;
    width: 100%;
  }

  .cta-group .btn {
    width: 100%;
    justify-content: center;
  }

  /* Highlights 移动端 */
  .highlights {
    padding: 60px 0;
  }

  .highlights-header {
    margin-bottom: 40px;
  }

  .section-title-small {
    font-size: 1.6rem;
  }

  .section-subtitle-small {
    font-size: 0.95rem;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .highlight-card {
    padding: 32px 24px;
  }

  .highlight-icon {
    width: 60px;
    height: 60px;
  }

  .highlight-card h3 {
    font-size: 1.25rem;
  }

  /* Why Choose 移动端 */
  .why-card {
    padding: 28px 24px;
  }

  .why-icon {
    width: 48px;
    height: 48px;
  }

  .why-card h3 {
    font-size: 1.2rem;
  }

  /* Use Cases 移动端 */
  .case-item {
    padding: 28px 24px;
  }

  .case-item-enhanced {
    flex-direction: column;
    gap: 16px;
  }

  .case-icon {
    font-size: 2rem;
  }

  .case-item h3 {
    font-size: 1.2rem;
  }

  .case-tag {
    font-size: 0.7rem;
    padding: 4px 10px;
  }

  /* Value Prop 移动端 */
  .value-prop {
    padding: 80px 0;
  }

  .value-badge {
    font-size: 0.8rem;
    padding: 6px 16px;
  }

  .value-container h2 {
    font-size: 2rem;
  }

  .value-container p {
    font-size: 1rem;
  }

  .value-actions {
    flex-direction: column;
    width: 100%;
  }

  .value-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .value-trust {
    gap: 16px;
  }

  .trust-item {
    font-size: 0.85rem;
  }

  .admin-card {
    padding: 20px 16px;
  }

  .admin-card__title {
    grid-template-columns: 1fr;
  }

  .admin-card__header {
    flex-direction: column;
  }

  .admin-card__toggles {
    width: 100%;
  }

  .badge-toggle {
    width: 100%;
  }

  .admin-card__body {
    flex-direction: column;
  }

  .admin-card__download-fields {
    width: 100%;
  }

  .admin-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-card__download-action {
    width: 100%;
  }

  .row-actions {
    width: 100%;
    justify-content: flex-end;
  }

  /* 新增板块移动端优化 */
  .why-choose,
  .use-cases,
  .value-prop {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .why-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-card {
    padding: 24px 20px;
  }

  .cases-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .case-item {
    padding: 24px 20px;
  }

  .value-container h2 {
    font-size: 1.6rem;
  }

  .value-container p {
    font-size: 1rem;
  }

  .value-actions {
    flex-direction: column;
  }

  .value-actions .btn {
    width: 100%;
  }

  .feature-intro-section {
    padding: 32px 0;
  }

  .feature-intro-content p {
    font-size: 1rem;
  }

  /* 功能页移动端优化 */
  .features-hero {
    padding: 60px 0 40px;
  }

  .features-hero-badge {
    font-size: 0.8rem;
    padding: 6px 16px;
  }

  .features-hero h1 {
    font-size: 1.8rem;
  }

  .features-hero .lead {
    font-size: 1rem;
  }

  .features-grid-section {
    padding: 40px 0 60px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 28px 20px;
    gap: 16px;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
  }

  .icon-emoji {
    font-size: 1.6rem;
  }

  .feature-content h3 {
    font-size: 1.2rem;
  }

  .feature-desc {
    font-size: 0.9rem;
  }

  .feature-details li {
    font-size: 0.85rem;
  }

  .feature-badge {
    top: 12px;
    right: 12px;
    font-size: 0.7rem;
    padding: 5px 10px;
  }

  .feature-content-wide h3 {
    font-size: 1.3rem;
  }

  .feature-content-wide p {
    font-size: 0.95rem;
  }

  .tag {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

}
