/* ====================================================================
 * 万词王英语 · 官方网站样式
 * 品牌色: #4F46E5 (靛蓝紫) / #F97316 (活力橙)
 * 设计: Modern Minimal · Soft UI · Glassmorphism
 * ================================================================== */

/* ============== CSS Variables ============== */
:root {
  --brand: #4F46E5;
  --brand-light: #818CF8;
  --brand-deep: #3730A3;
  --accent: #F97316;
  --accent-soft: #FB923C;
  --growth: #22C55E;
  --premium: #F59E0B;
  --danger: #EF4444;

  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-tertiary: #94A3B8;
  --bg: #FFFFFF;
  --bg-soft: #FAFAFA;
  --bg-elevated: #F8FAFC;
  --border: #E2E8F0;
  --border-strong: #CBD5E1;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.10);
  --shadow-xl: 0 24px 64px rgba(15, 23, 42, 0.14);
  --shadow-brand: 0 12px 32px rgba(79, 70, 229, 0.25);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  --container: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --gradient-brand: linear-gradient(135deg, #4F46E5 0%, #7C3AED 50%, #EC4899 100%);
  --gradient-accent: linear-gradient(135deg, #F97316 0%, #EC4899 100%);
  --gradient-premium: linear-gradient(135deg, #F59E0B 0%, #EC4899 100%);
}

/* ============== Reset ============== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei",
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brand); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ============== Layout ============== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-sm { padding: 48px 0; }
  .container { padding: 0 20px; }
}

.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(79, 70, 229, 0.08);
  color: var(--brand);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title .gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-subtitle {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto;
}

/* ============== Navbar ============== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.brand-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gradient-brand);
  display: grid;
  place-items: center;
  color: white;
  font-size: 16px;
  font-weight: 900;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-secondary);
}
.nav-links a:hover { color: var(--brand); }
.nav-links a.active { color: var(--brand); font-weight: 600; }
.nav-cta {
  padding: 9px 18px;
  background: var(--brand);
  color: white !important;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  transition: all var(--transition);
}
.nav-cta:hover {
  background: var(--brand-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-brand);
}
.nav-toggle { display: none; }

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-links.open { max-height: 600px; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
  }
  .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    transition: transform var(--transition);
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ============== Buttons ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand);
  color: white;
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover {
  background: var(--brand-deep);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(79, 70, 229, 0.35);
}
.btn-accent {
  background: var(--gradient-accent);
  color: white;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}
.btn-accent:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.4);
}
.btn-secondary {
  background: white;
  color: var(--text-primary);
  border: 1.5px solid var(--border-strong);
}
.btn-secondary:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.btn-ghost {
  color: var(--text-secondary);
}
.btn-ghost:hover { color: var(--brand); }
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 13px; }

/* ============== Hero ============== */
.hero {
  position: relative;
  padding: 120px 0 96px;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(79, 70, 229, 0.12), transparent),
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(236, 72, 153, 0.06), transparent),
    var(--bg);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(79, 70, 229, 0.08);
  color: var(--brand);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--growth);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero h1 .gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-desc {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
}
.hero-meta-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-meta-label {
  font-size: 13px;
  color: var(--text-tertiary);
}
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 480px;
  margin-left: auto;
}
.hero-phone {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 50%, #EC4899 100%);
  border-radius: 36px;
  padding: 20px;
  box-shadow:
    0 40px 80px rgba(79, 70, 229, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}
.hero-phone-inner {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}
.hero-phone-card {
  background: var(--bg-soft);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--border);
}
.hero-phone-word {
  font-size: 28px;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 6px;
}
.hero-phone-phonetic {
  font-size: 13px;
  color: var(--text-tertiary);
  font-family: "Lucida Sans Unicode", "Arial Unicode MS", sans-serif;
  margin-bottom: 8px;
}
.hero-phone-meaning {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.hero-phone-rate {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.hero-phone-rate-btn {
  flex: 1;
  height: 36px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 600;
  color: white;
}

@media (max-width: 900px) {
  .hero { padding: 64px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 320px; margin: 0 auto; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
}

/* ============== Features Grid ============== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.feature-card {
  padding: 32px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gradient-brand);
  display: grid;
  place-items: center;
  color: white;
  font-size: 24px;
  margin-bottom: 20px;
}
.feature-icon.green { background: linear-gradient(135deg, #22C55E, #16A34A); }
.feature-icon.orange { background: var(--gradient-accent); }
.feature-icon.pink { background: linear-gradient(135deg, #EC4899, #DB2777); }
.feature-icon.cyan { background: linear-gradient(135deg, #06B6D4, #0891B2); }
.feature-icon.gold { background: var(--gradient-premium); }
.feature-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-desc {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ============== Stats ============== */
.stats {
  background: var(--bg-soft);
  border-radius: var(--radius-xl);
  padding: 56px 32px;
  margin: 0 24px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: center;
  max-width: var(--container);
  margin: 0 auto;
}
.stat-num {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ============== Workflow / Process ============== */
.workflow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.workflow-step {
  text-align: center;
  position: relative;
}
.workflow-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin: 0 auto 16px;
  font-size: 18px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-brand);
}
.workflow-step::after {
  content: "";
  position: absolute;
  top: 24px;
  left: calc(50% + 32px);
  right: calc(-50% + 32px);
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  opacity: 0.3;
}
.workflow-step:last-child::after { display: none; }
.workflow-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
}
.workflow-desc {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.5;
}
@media (max-width: 900px) {
  .workflow { grid-template-columns: 1fr; gap: 24px; }
  .workflow-step::after { display: none; }
}

/* ============== Pricing / Premium ============== */
.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  padding: 48px 40px;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: var(--gradient-premium);
}
.pricing-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(245, 158, 11, 0.1);
  color: var(--premium);
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.pricing-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
}
.pricing-price-num {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-primary);
}
.pricing-price-unit {
  font-size: 16px;
  color: var(--text-tertiary);
}
.pricing-price-origin {
  font-size: 16px;
  color: var(--text-tertiary);
  text-decoration: line-through;
  margin-left: 8px;
}
.pricing-features {
  margin-bottom: 32px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--text-secondary);
}
.pricing-features li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  color: var(--growth);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}
.pricing-card .btn { width: 100%; }

/* ============== FAQ ============== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item:hover { border-color: var(--brand-light); }
.faq-q {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-primary);
}
.faq-q::after {
  content: "+";
  font-size: 24px;
  font-weight: 300;
  color: var(--brand);
  transition: transform var(--transition);
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a-inner {
  padding: 0 24px 24px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 500px; }

/* ============== CTA Banner ============== */
.cta-banner {
  background: var(--gradient-brand);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), transparent 50%);
}
.cta-banner h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}
.cta-banner p {
  font-size: 17px;
  opacity: 0.92;
  margin-bottom: 32px;
  position: relative;
}
.cta-banner .btn-accent {
  position: relative;
  font-size: 16px;
}

/* ============== Footer ============== */
.footer {
  background: #0F172A;
  color: #94A3B8;
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .brand { color: white; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 320px; }
.footer h4 {
  color: white;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: 14px; }
.footer ul a:hover { color: white; }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}
.footer-icp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
}
.footer-icp.pending { color: #FCD34D; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============== Article (法律页面通用) ============== */
.article {
  max-width: 800px;
  margin: 0 auto;
}
.article-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}
.article-meta .badge {
  padding: 4px 10px;
  background: rgba(79, 70, 229, 0.08);
  color: var(--brand);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 12px;
}
.article h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.article .updated {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: 40px;
}
.article h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 40px 0 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.article h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 24px 0 12px;
  color: var(--brand-deep);
}
.article p, .article li {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 12px;
}
.article ul, .article ol { padding-left: 24px; margin-bottom: 16px; }
.article ul li, .article ol li { list-style: disc; }
.article ol li { list-style: decimal; }
.article strong { color: var(--text-primary); font-weight: 600; }
.article a { color: var(--brand); border-bottom: 1px solid currentColor; }
.article table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 14.5px;
}
.article th, .article td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.article th { background: var(--bg-soft); font-weight: 600; color: var(--text-primary); }

/* ============== Contact ============== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-card {
  padding: 32px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(79, 70, 229, 0.1);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.contact-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-tertiary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.contact-value {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  word-break: break-all;
}
.contact-note {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-tertiary);
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============== Animations ============== */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============== Scroll to top ============== */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand);
  color: white;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-brand);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  z-index: 50;
  font-size: 18px;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--brand-deep); color: white; }

/* ============== Misc ============== */
.text-center { text-align: center; }
.mt-8 { margin-top: 32px; }
.mt-4 { margin-top: 16px; }
.divider { height: 1px; background: var(--border); margin: 64px 0; }
.tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 12px;
  color: var(--text-secondary);
  margin: 2px;
}

/* Print styles for legal pages */
@media print {
  .navbar, .footer, .scroll-top, .cta-banner { display: none; }
  .section { padding: 24px 0; }
  body { color: black; }
}