/* ==========================================================================
   饿饭CC云 (efanccyun.mom) - 真实感极致落地页与站群系统主样式表
   Realistic Glassmorphism & Metallic Depth Design System
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Variables & Design System Tokens
   -------------------------------------------------------------------------- */
:root {
  --bg-primary: #07090e;
  --bg-secondary: #0d1117;
  --bg-card: rgba(18, 24, 38, 0.75);
  --bg-card-hover: rgba(28, 36, 56, 0.85);
  
  --accent-gold: #f5b041;
  --accent-gold-glow: rgba(245, 176, 65, 0.4);
  --accent-cyan: #00f2fe;
  --accent-blue: #4facfe;
  --accent-gradient: linear-gradient(135deg, #ffbc00 0%, #ff8800 50%, #e056fd 100%);
  --metallic-gradient: linear-gradient(145deg, #1e2638, #0f1522);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-border-hover: rgba(245, 176, 65, 0.4);
  
  --text-main: #f0f4f8;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --shadow-realistic: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  --shadow-glow: 0 0 25px rgba(245, 176, 65, 0.25);
  
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & Base Styles
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  color: var(--text-main);
  scroll-behavior: smooth;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  position: relative;
  background: radial-gradient(circle at 50% 0%, #151c2e 0%, #07090e 70%);
  background-attachment: fixed;
}

a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: #ffca70;
  text-shadow: 0 0 8px var(--accent-gold-glow);
}

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

/* Custom Cursor Canvas */
#cursor-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
}

/* --------------------------------------------------------------------------
   3. Header & Navigation (Realistic Glass Navbar)
   -------------------------------------------------------------------------- */
.header-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 2rem;
  background: rgba(13, 17, 23, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}

.brand-logo .logo-icon {
  width: 42px;
  height: 42px;
  background: var(--accent-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  font-size: 1.4rem;
  color: #000;
  font-weight: 900;
}

.brand-logo span.highlight {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.3rem 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition-smooth);
  box-shadow: 0 0 8px var(--accent-gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--accent-gradient);
  color: #0d0f12 !important;
  font-weight: 700 !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(245, 176, 65, 0.4);
  transition: var(--transition-smooth) !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 176, 65, 0.6);
  color: #000 !important;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.8rem;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   4. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  padding: 10rem 2rem 5rem;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  background: rgba(245, 176, 65, 0.1);
  border: 1px solid rgba(245, 176, 65, 0.3);
  border-radius: 50px;
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 15px rgba(245, 176, 65, 0.15);
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 176, 65, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(245, 176, 65, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 176, 65, 0); }
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 1.2rem;
  color: #fff;
  letter-spacing: -0.5px;
}

.hero-title .gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
  max-width: 600px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 3rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--accent-gradient);
  color: #0b0e14;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(245, 176, 65, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(245, 176, 65, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  color: #000;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  transform: translateY(-2px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
}

.stat-item h4 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* Hero Realistic Metallic Card Illustration */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.realistic-node-card {
  width: 100%;
  max-width: 440px;
  background: var(--metallic-gradient);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow-realistic);
  position: relative;
  overflow: hidden;
}

.realistic-node-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transform: rotate(30deg);
  pointer-events: none;
}

.card-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--glass-border);
}

.card-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #4cd964;
  font-weight: 600;
}

.card-status .status-light {
  width: 10px;
  height: 10px;
  background-color: #4cd964;
  border-radius: 50%;
  box-shadow: 0 0 10px #4cd964;
}

.node-list-preview {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.node-preview-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: var(--transition-smooth);
}

.node-preview-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--accent-gold);
  transform: translateX(4px);
}

.node-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.flag-icon {
  font-size: 1.3rem;
}

.node-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.node-tag {
  font-size: 0.75rem;
  color: var(--accent-gold);
  background: rgba(245, 176, 65, 0.15);
  padding: 0.1rem 0.5rem;
  border-radius: 6px;
}

.ping-tag {
  font-family: monospace;
  font-size: 0.85rem;
  color: #4cd964;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   5. Section Common Components
   -------------------------------------------------------------------------- */
.section-wrapper {
  padding: 6rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 4rem;
}

.section-subtitle {
  color: var(--accent-gold);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.6rem;
  display: block;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 0.8rem;
}

/* --------------------------------------------------------------------------
   6. Core Features Grid
   -------------------------------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.2rem 1.8rem;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-realistic);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border-hover);
  background: var(--bg-card-hover);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 20px rgba(245, 176, 65, 0.15);
}

.feature-icon-box {
  width: 60px;
  height: 60px;
  background: rgba(245, 176, 65, 0.1);
  border: 1px solid rgba(245, 176, 65, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--accent-gold);
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   7. Single-Row Pricing Table (价格格式弄成一排)
   -------------------------------------------------------------------------- */
.pricing-container-outer {
  width: 100%;
  overflow-x: auto;
  padding: 1rem 0 2.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-gold) var(--bg-secondary);
}

.pricing-container-outer::-webkit-scrollbar {
  height: 8px;
}

.pricing-container-outer::-webkit-scrollbar-track {
  background: var(--bg-secondary);
  border-radius: 10px;
}

.pricing-container-outer::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: 10px;
}

/* Forced Single Row Horizontal Flex Layout */
.pricing-single-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: stretch;
  min-width: max-content;
  margin: 0 auto;
  padding: 0 1rem;
}

.price-card {
  width: 290px;
  flex: 0 0 290px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2.2rem 1.6rem;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-realistic);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: var(--transition-smooth);
}

.price-card:hover {
  transform: translateY(-10px);
  border-color: var(--glass-border-hover);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 25px rgba(245, 176, 65, 0.2);
}

.price-card.popular {
  background: linear-gradient(160deg, rgba(35, 45, 70, 0.85), rgba(15, 20, 32, 0.95));
  border: 2px solid var(--accent-gold);
  box-shadow: 0 20px 40px rgba(245, 176, 65, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gradient);
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 1rem;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(245, 176, 65, 0.4);
}

.price-header h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}

.price-header p {
  font-size: 0.85rem;
  color: var(--text-dim);
  min-height: 2.4em;
}

.price-amount-box {
  margin: 1.5rem 0;
  padding: 1rem 0;
  border-top: 1px dashed var(--glass-border);
  border-bottom: 1px dashed var(--glass-border);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-gold);
}

.price-amount span.currency {
  font-size: 1.4rem;
  margin-right: 0.2rem;
}

.price-amount span.period {
  font-size: 0.9rem;
  color: var(--text-dim);
  font-weight: 400;
}

.price-features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.price-features li {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.price-features li i {
  color: #4cd964;
  font-size: 1rem;
}

.price-btn {
  width: 100%;
  padding: 0.85rem;
  text-align: center;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  display: block;
}

/* --------------------------------------------------------------------------
   8. Articles SEO Grid (8篇关键长文跳转)
   -------------------------------------------------------------------------- */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.article-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 1.8rem;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-realistic);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.article-card:hover {
  transform: translateY(-6px);
  border-color: var(--glass-border-hover);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.article-meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--accent-gold);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.article-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.article-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent-gold);
}

.read-more-link:hover {
  gap: 0.7rem;
}

/* --------------------------------------------------------------------------
   9. User Testimonials & FAQ Section
   -------------------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-realistic);
}

.user-avatar-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #000;
  font-size: 1.2rem;
}

.user-info h4 {
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
}

.user-info span {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.star-rating {
  color: #ffbc00;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.testimonial-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-question {
  width: 100%;
  padding: 1.4rem 1.8rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  color: var(--accent-gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.8rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.8rem 1.4rem;
  transition: max-height 0.4s ease-in-out;
}

/* --------------------------------------------------------------------------
   10. Core Task 2: Footer PBN Links Pipe & Website Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: #05070b;
  border-top: 1px solid var(--glass-border);
  padding: 4rem 2rem 2rem;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  margin-top: 1rem;
  color: var(--text-dim);
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col ul a {
  color: var(--text-dim);
  font-size: 0.88rem;
}

.footer-col ul a:hover {
  color: var(--accent-gold);
}

/* Core Task 2: Low-key PBN Links Section */
.pbn-links-area {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.8rem;
  margin-top: 2rem;
  text-align: center;
}

.pbn-links-area p.pbn-title {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
}

.pbn-links-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pbn-links-grid a {
  font-size: 0.78rem;
  color: #4a5568;
  transition: color 0.2s ease;
}

.pbn-links-grid a:hover {
  color: var(--accent-gold);
}

.footer-bottom-bar {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* --------------------------------------------------------------------------
   11. Article Content Detail Styles
   -------------------------------------------------------------------------- */
.article-container {
  max-width: 900px;
  margin: 9rem auto 5rem;
  padding: 0 1.5rem;
}

.article-header {
  margin-bottom: 3rem;
  text-align: center;
}

.article-header h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.article-content {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-realistic);
  color: var(--text-main);
  line-height: 1.85;
  font-size: 1.05rem;
}

.article-content h2 {
  font-size: 1.7rem;
  color: #fff;
  margin: 2.2rem 0 1rem;
  border-left: 4px solid var(--accent-gold);
  padding-left: 1rem;
}

.article-content h3 {
  font-size: 1.3rem;
  color: #e2e8f0;
  margin: 1.6rem 0 0.8rem;
}

.article-content p {
  margin-bottom: 1.4rem;
  color: #cbd5e1;
}

.article-content ul, .article-content ol {
  margin: 1rem 0 1.5rem 1.8rem;
  color: #cbd5e1;
}

.article-content li {
  margin-bottom: 0.5rem;
}

.article-cta-box {
  margin: 3rem 0;
  background: linear-gradient(145deg, rgba(245, 176, 65, 0.15), rgba(13, 17, 23, 0.8));
  border: 1px solid var(--accent-gold);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.article-cta-box h3 {
  color: var(--accent-gold);
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

/* --------------------------------------------------------------------------
   12. Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 8rem;
  }

  .hero-description {
    margin: 0 auto 2rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    max-width: 600px;
    margin: 0 auto;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }

  .hero-title {
    font-size: 2.2rem;
  }

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

  .pricing-single-row {
    justify-content: flex-start;
  }

  .article-content {
    padding: 2rem 1.2rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }
}
