/* ==========================================================================
   KTM Cloud (ktmyun.xyz) - Fused Silica Optics (熔融石英与光纤熔接风) CSS
   ========================================================================== */

:root {
  --bg-dark: #0C0E11;
  --bg-card: rgba(18, 22, 29, 0.72);
  --bg-card-hover: rgba(26, 31, 41, 0.85);
  --bg-glass-nav: rgba(12, 14, 17, 0.82);
  
  --accent-orange: #FF6B00;
  --accent-orange-glow: rgba(255, 107, 0, 0.38);
  --accent-orange-bright: #FF8526;
  --accent-cyan: #00F0FF;
  --accent-cyan-glow: rgba(0, 240, 255, 0.25);
  
  --text-main: #F0F3F8;
  --text-muted: #8E9BAE;
  --text-dim: #5C6779;
  
  --border-specular: rgba(255, 255, 255, 0.12);
  --border-specular-hover: rgba(255, 107, 0, 0.5);
  --border-glass-top: rgba(255, 255, 255, 0.22);
  
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', Consolas, monospace;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 9999px;
  
  --shadow-specular: inset 0 1px 1px rgba(255, 255, 255, 0.15), 0 20px 40px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 25px var(--accent-orange-glow);
}

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

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

body {
  position: relative;
  min-height: 100vh;
  background: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  cursor: default;
}

/* --------------------------------------------------------------------------
   Custom Optic Light Trail Cursor (鼠标换尾翼)
   -------------------------------------------------------------------------- */
#cursor-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
}

/* Background Fiber Grid Pattern */
.bg-fiber-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(255, 107, 0, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 85% 40%, rgba(0, 240, 255, 0.04) 0%, transparent 50%),
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
}

.content-wrapper {
  position: relative;
  z-index: 2;
}

a {
  color: var(--accent-orange-bright);
  text-decoration: none;
  transition: all 0.25s ease;
}

a:hover {
  color: #FFA552;
  text-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --------------------------------------------------------------------------
   Header / Navigation Bar
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--bg-glass-nav);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-specular);
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

.brand-logo .optic-node {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-pill);
  background: radial-gradient(circle at 30% 30%, #FF8526, var(--accent-orange));
  box-shadow: 0 0 15px var(--accent-orange-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.brand-logo .optic-node::after {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #FFF;
  box-shadow: 0 0 10px #FFF;
}

.brand-name-tag {
  background: linear-gradient(135deg, #FFFFFF 30%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.domain-badge {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(255, 107, 0, 0.15);
  border: 1px solid rgba(255, 107, 0, 0.3);
  color: var(--accent-orange-bright);
}

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

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-main);
}

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

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

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #FF7B1A, #FF5500);
  color: #FFF !important;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 0 20px var(--accent-orange-glow);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 107, 0, 0.6);
  color: #FFF;
}

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

/* --------------------------------------------------------------------------
   Fused Silica Optics Specular Cards & Components
   -------------------------------------------------------------------------- */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-specular);
  border-top-color: var(--border-glass-top);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-specular);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.05) 50%,
    transparent 100%
  );
  transition: transform 0.6s ease;
  pointer-events: none;
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-specular-hover);
  transform: translateY(-4px);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.25), 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 20px var(--accent-orange-glow);
}

.glass-card:hover::before {
  transform: translateX(200%);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  padding: 160px 0 90px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.25);
  color: var(--accent-orange-bright);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-tag .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-orange);
  box-shadow: 0 0 10px var(--accent-orange);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(255, 107, 0, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #FFFFFF 20%, #FF8526 70%, #FF5500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #FF7B1A, #FF4500);
  color: #FFF !important;
  font-size: 1.05rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 30px var(--accent-orange-glow);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 45px rgba(255, 107, 0, 0.7);
  color: #FFF !important;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-specular);
  color: var(--text-main);
  font-size: 1rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  color: #FFF;
}

.hero-stats-row {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-specular);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.hero-stat-val {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-main);
  font-family: var(--font-mono);
}

.hero-stat-val span {
  color: var(--accent-orange);
}

.hero-stat-lbl {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Optical Refraction Visual Profile Card */
.hero-optics-card {
  padding: 30px;
}

.optics-diagram-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-specular);
}

.optics-diagram-title {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-orange-bright);
}

.optics-status-badge {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: var(--accent-cyan);
  padding: 2px 8px;
  border-radius: 4px;
}

.fiber-path-graphic {
  width: 100%;
  height: 220px;
  position: relative;
}

/* --------------------------------------------------------------------------
   Feature Cards Grid (Fused Silica Advantage)
   -------------------------------------------------------------------------- */
.section-padding {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-orange);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

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

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

.feature-card {
  padding: 36px 28px;
}

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-orange);
  margin-bottom: 24px;
  box-shadow: 0 0 15px rgba(255, 107, 0, 0.2);
}

.feature-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-main);
}

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

/* --------------------------------------------------------------------------
   Pricing Section
   -------------------------------------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.pricing-card.popular {
  border-color: var(--accent-orange);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.3), 0 0 35px rgba(255, 107, 0, 0.35);
  background: linear-gradient(180deg, rgba(25, 30, 42, 0.95) 0%, rgba(18, 22, 29, 0.9) 100%);
}

.popular-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: linear-gradient(135deg, #FF7B1A, #FF4500);
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.4);
}

.plan-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.plan-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.plan-price-box {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-specular);
}

.plan-price {
  font-size: 2.8rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--text-main);
  line-height: 1;
}

.plan-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.plan-features-list {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.plan-features-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-features-list li i {
  color: var(--accent-orange);
  font-size: 0.9rem;
}

.plan-cta-btn {
  width: 100%;
  padding: 14px 0;
  text-align: center;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: block;
}

/* --------------------------------------------------------------------------
   Articles / Knowledge Base Grid
   -------------------------------------------------------------------------- */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.article-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.article-tag {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-specular);
  color: var(--accent-orange-bright);
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
}

.article-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.article-title a {
  color: var(--text-main);
}

.article-title a:hover {
  color: var(--accent-orange-bright);
}

.article-summary {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.article-link {
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-orange-bright);
}

.article-link i {
  transition: transform 0.25s ease;
}

.article-link:hover i {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   Testimonials (用户评价)
   -------------------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  padding: 32px 28px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6B00, #333);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #FFF;
  border: 1px solid var(--border-glass-top);
}

.user-info {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
}

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

.testimonial-stars {
  color: #FFB800;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

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

/* --------------------------------------------------------------------------
   FAQ Accordion Section
   -------------------------------------------------------------------------- */
.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  text-align: left;
  background: var(--bg-card);
  border: 1px solid var(--border-specular);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-specular-hover);
}

.faq-question i {
  color: var(--accent-orange);
  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.35s cubic-bezier(0, 1, 0, 1);
  background: rgba(12, 14, 17, 0.6);
  border: 1px solid transparent;
  border-top: none;
  border-bottom-left-radius: var(--radius-md);
  border-bottom-right-radius: var(--radius-md);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  transition: max-height 0.4s ease-in-out;
  border-color: var(--border-specular);
}

.faq-answer-inner {
  padding: 22px 28px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   CTA Banner Section
   -------------------------------------------------------------------------- */
.cta-banner {
  margin: 60px 0 100px;
}

.cta-banner-card {
  padding: 60px 40px;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(255, 107, 0, 0.2) 0%, rgba(18, 22, 29, 0.85) 70%);
  border: 1px solid var(--border-specular-hover);
  box-shadow: 0 0 50px rgba(255, 107, 0, 0.2);
}

.cta-banner-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-banner-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 32px;
}

/* --------------------------------------------------------------------------
   Footer PBN Section (页脚 PBN 权重精准输血管道)
   -------------------------------------------------------------------------- */
footer {
  background: #080A0D;
  border-top: 1px solid var(--border-specular);
  padding: 60px 0 30px;
  position: relative;
  z-index: 5;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 30px;
}

.footer-brand-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 14px;
  line-height: 1.6;
  max-width: 360px;
}

.footer-col-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: var(--accent-orange-bright);
}

/* PBN Friendly Links Pipeline Area (页脚 PBN 权重区) */
.pbn-pipeline-wrapper {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 24px;
}

.pbn-pipeline-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-align: center;
}

.pbn-pipeline-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  list-style: none;
}

.pbn-pipeline-links li a {
  font-size: 0.78rem;
  color: #626D7F;
  transition: color 0.25s ease;
  font-weight: 400;
}

.pbn-pipeline-links li a:hover {
  color: var(--accent-orange-bright);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* --------------------------------------------------------------------------
   Article Page Specific Styling
   -------------------------------------------------------------------------- */
.article-header {
  padding: 150px 0 40px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.article-main-content {
  max-width: 840px;
  margin: 0 auto 80px;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-specular);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-specular);
}

.article-main-content h1,
.article-main-content h2,
.article-main-content h3 {
  color: var(--text-main);
  margin: 32px 0 16px;
  line-height: 1.3;
}

.article-main-content h2 {
  font-size: 1.6rem;
  border-bottom: 1px solid var(--border-specular);
  padding-bottom: 10px;
}

.article-main-content h3 {
  font-size: 1.25rem;
  color: var(--accent-orange-bright);
}

.article-main-content p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.article-main-content ul,
.article-main-content ol {
  margin: 0 0 20px 24px;
  color: var(--text-muted);
  line-height: 1.8;
}

.article-main-content blockquote {
  border-left: 4px solid var(--accent-orange);
  padding: 16px 20px;
  background: rgba(255, 107, 0, 0.05);
  margin: 24px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-main);
}

.article-cta-box {
  margin: 40px 0;
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.12), rgba(18, 22, 29, 0.8));
  border: 1px solid rgba(255, 107, 0, 0.4);
  border-radius: var(--radius-md);
  text-align: center;
}

/* --------------------------------------------------------------------------
   Responsive Design
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid,
  .articles-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    background: var(--bg-dark);
    padding: 24px;
    border-bottom: 1px solid var(--border-specular);
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .features-grid,
  .pricing-grid,
  .articles-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .article-main-content {
    padding: 24px 18px;
  }
}
