/* ==========================================================================
   快连vpn - Aesthetic Baby Pink & Bows Theme (Coquette / Pastel Chic)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500;600;700&display=swap');

:root {
  /* Aesthetic Baby Pink Color Palette */
  --bg-pink-light: #fdf2f8;
  --bg-pink-base: #fce7f3;
  --bg-pink-soft: #fbcfe8;
  --bg-card: rgba(255, 255, 255, 0.88);
  --bg-card-hover: rgba(255, 255, 255, 0.98);
  
  --border-pink: rgba(244, 114, 182, 0.3);
  --border-pink-glow: rgba(236, 72, 153, 0.5);
  
  --text-primary: #4c0519;
  --text-secondary: #881337;
  --text-muted: #9f1239;

  --accent-pink-soft: #f472b6;
  --accent-pink-main: #ec4899;
  --accent-rose: #f43f5e;
  --accent-purple: #c084fc;
  --accent-emerald: #10b981;
  
  --gradient-pink: linear-gradient(135deg, #f472b6 0%, #ec4899 50%, #fb7185 100%);
  --gradient-soft: linear-gradient(180deg, rgba(253, 242, 248, 0.6) 0%, rgba(252, 231, 243, 0.9) 100%);
  --gradient-glow: radial-gradient(circle at 50% -20%, rgba(244, 114, 182, 0.25), transparent 70%);

  /* Layout & Fonts */
  --font-sans: 'Quicksand', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --max-width: 1200px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;

  --shadow-pink: 0 12px 35px -10px rgba(236, 72, 153, 0.25);
  --shadow-card: 0 15px 35px -10px rgba(244, 114, 182, 0.15);
}

/* Reset & Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--bg-pink-light);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg-pink-light);
  background-image: 
    radial-gradient(circle at 20% 10%, rgba(244, 114, 182, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 80% 50%, rgba(244, 63, 94, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 50% 85%, rgba(192, 132, 252, 0.15) 0%, transparent 50%);
}

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

a:hover {
  color: #be123c;
  text-shadow: 0 0 12px rgba(244, 114, 182, 0.4);
}

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

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

/* Typography Helpers */
h1, h2, h3, h4 {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: var(--gradient-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 2px 10px rgba(236, 72, 153, 0.25));
}

.section-title {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 14px;
}

.section-title p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.975rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-pink);
  color: #ffffff;
  box-shadow: 0 6px 25px rgba(236, 72, 153, 0.35), 0 0 15px rgba(244, 114, 182, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 32px rgba(236, 72, 153, 0.5);
  color: #ffffff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.85);
  color: var(--text-primary);
  border-color: rgba(244, 114, 182, 0.35);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 15px rgba(244, 114, 182, 0.1);
}

.btn-secondary:hover {
  background: #ffffff;
  border-color: var(--accent-pink-main);
  transform: translateY(-3px);
  color: var(--text-primary);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.6);
  color: var(--accent-pink-main);
  border-color: rgba(236, 72, 153, 0.4);
}

.btn-outline:hover {
  background: rgba(244, 114, 182, 0.15);
  border-color: var(--accent-pink-main);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(236, 72, 153, 0.2);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 242, 248, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-pink);
  transition: all 0.3s ease;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--gradient-pink);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

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

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.nav-links a:hover {
  color: var(--accent-pink-main);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 8px;
}

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

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(244, 114, 182, 0.4);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 26px;
  box-shadow: 0 4px 20px rgba(244, 114, 182, 0.18);
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 22px;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.hero-desc {
  font-size: 1.18rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.75;
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-features-list {
  display: flex;
  gap: 28px;
  list-style: none;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-features-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Dynamic Network Dashboard Component - Pink Aesthetic */
.dashboard-card {
  background: var(--bg-card);
  border: 1px solid var(--border-pink-glow);
  border-radius: var(--radius-lg);
  padding: 30px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card), 0 0 30px rgba(244, 114, 182, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.dashboard-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-pink);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-pink);
  margin-bottom: 22px;
}

.dashboard-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #db2777;
  background: rgba(251, 207, 232, 0.6);
  padding: 6px 16px;
  border-radius: 9999px;
  border: 1px solid rgba(244, 114, 182, 0.4);
}

.pulse-dot {
  width: 9px;
  height: 9px;
  background-color: #ec4899;
  border-radius: 50%;
  box-shadow: 0 0 10px #ec4899;
  animation: pulsePink 2s infinite;
}

@keyframes pulsePink {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(236, 72, 153, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(236, 72, 153, 0); }
}

.live-moving-wave {
  animation: waveScroll 2.2s linear infinite;
  will-change: transform;
}

@keyframes waveScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-120px);
  }
}

.node-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 26px;
}

.node-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(253, 242, 248, 0.7);
  border: 1px solid var(--border-pink);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
}

.node-item:hover {
  border-color: var(--accent-pink-main);
  background: #ffffff;
  transform: translateX(4px);
  box-shadow: 0 4px 15px rgba(244, 114, 182, 0.15);
}

.node-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.node-flag {
  font-size: 1.35rem;
}

.node-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.node-route {
  font-size: 0.75rem;
  font-weight: 700;
  color: #be123c;
  background: rgba(244, 114, 182, 0.18);
  padding: 3px 10px;
  border-radius: 8px;
  border: 1px solid rgba(244, 114, 182, 0.3);
}

.node-metrics {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ping-value {
  font-family: 'Quicksand', monospace;
  color: #db2777;
  font-size: 0.9rem;
  font-weight: 700;
  background: rgba(251, 207, 232, 0.6);
  padding: 4px 12px;
  border-radius: 8px;
  border: 1px solid rgba(244, 114, 182, 0.3);
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.8);
  padding: 14px;
  border-radius: var(--radius-sm);
  text-align: center;
  border: 1px solid var(--border-pink);
  transition: all 0.2s;
}

.stat-box:hover {
  border-color: var(--accent-pink-main);
  background: #ffffff;
}

.stat-number {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
}

.stat-label {
  font-size: 0.775rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 2px;
}

/* Bento Grid Layout - Aesthetic Pink */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-pink);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.bento-card:hover {
  border-color: var(--accent-pink-main);
  transform: translateY(-6px);
  box-shadow: var(--shadow-pink);
  background: var(--bg-card-hover);
}

.bento-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--gradient-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.6rem;
  margin-bottom: 22px;
  box-shadow: 0 8px 20px rgba(236, 72, 153, 0.3);
}

.bento-card h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.bento-card p {
  color: var(--text-secondary);
  font-size: 0.975rem;
  line-height: 1.7;
  font-weight: 600;
}

/* AI & Streaming Section */
.ai-streaming-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 32px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.tag-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-pink);
  padding: 9px 18px;
  border-radius: 9999px;
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--text-primary);
  box-shadow: 0 2px 10px rgba(244, 114, 182, 0.1);
  transition: all 0.25s ease;
}

.tag-item:hover {
  border-color: var(--accent-pink-main);
  background: rgba(251, 207, 232, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.25);
}

/* Pricing SaaS Section - Baby Pink Chic */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-pink);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-card);
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-pink-main);
}

.pricing-card.popular {
  background: #ffffff;
  border: 2px solid var(--accent-pink-main);
  box-shadow: var(--shadow-pink), 0 0 35px rgba(244, 114, 182, 0.25);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-pink);
  color: white;
  padding: 6px 22px;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.35);
}

.pricing-header h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 18px 0;
  letter-spacing: -0.03em;
}

.pricing-price span {
  font-size: 0.975rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.pricing-features {
  list-style: none;
  margin: 28px 0 36px;
  flex-grow: 1;
}

.pricing-features li {
  margin-bottom: 14px;
  color: var(--text-secondary);
  font-size: 0.975rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-features li::before {
  content: '🎀';
  font-size: 1rem;
}

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

.article-card {
  background: var(--bg-card);
  border: 1px solid var(--border-pink);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
}

.article-card:hover {
  border-color: var(--accent-pink-main);
  transform: translateY(-5px);
  box-shadow: var(--shadow-pink);
}

.article-category {
  display: inline-block;
  color: var(--accent-pink-main);
  font-size: 0.825rem;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.article-card h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
  line-height: 1.45;
}

.article-card h3 a {
  color: var(--text-primary);
}

.article-card h3 a:hover {
  color: var(--accent-pink-main);
}

.article-excerpt {
  color: var(--text-secondary);
  font-size: 0.925rem;
  line-height: 1.65;
  margin-bottom: 22px;
  flex-grow: 1;
  font-weight: 600;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.825rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-pink);
  padding-top: 14px;
  font-weight: 600;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-pink);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: all 0.3s;
}

.testimonial-card:hover {
  border-color: var(--accent-pink-main);
  box-shadow: var(--shadow-pink);
}

.testimonial-content {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
  font-weight: 600;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar-placeholder {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.author-info h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.author-info p {
  font-size: 0.825rem;
  color: var(--text-muted);
  font-weight: 600;
}

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

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-pink);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
}

.faq-item.active {
  border-color: var(--accent-pink-main);
  box-shadow: var(--shadow-pink);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-sans);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-icon {
  transition: transform 0.3s ease;
  font-size: 1.3rem;
  color: var(--accent-pink-main);
  font-weight: bold;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--text-secondary);
  font-size: 0.975rem;
  line-height: 1.75;
  padding: 0 28px;
  font-weight: 600;
}

.faq-item.active .faq-answer {
  max-height: 350px;
  padding: 0 28px 24px 28px;
}

/* Footer */
.site-footer {
  background: #fce7f3;
  border-top: 1px solid var(--border-pink);
  padding: 70px 0 36px;
  margin-top: 110px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.925rem;
  margin-top: 14px;
  max-width: 340px;
  line-height: 1.7;
  font-weight: 600;
}

.footer-col h4 {
  font-size: 1.05rem;
  margin-bottom: 18px;
  color: var(--text-primary);
}

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

.footer-col a {
  color: var(--text-secondary);
  font-size: 0.925rem;
  font-weight: 600;
}

.footer-col a:hover {
  color: var(--accent-pink-main);
}

.footer-bottom {
  border-top: 1px solid var(--border-pink);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 600;
}

.partner-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}

.partner-links a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 0.2s;
}

.partner-links a:hover {
  color: var(--accent-pink-main);
}

/* Article Detail Pages */
.article-header {
  padding: 70px 0 36px;
  text-align: center;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-weight: 600;
}

.breadcrumb a {
  color: var(--text-secondary);
}

.article-content-wrap {
  max-width: 860px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-pink);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--text-primary);
  line-height: 1.85;
  box-shadow: var(--shadow-card);
}

.article-content-wrap h2 {
  font-size: 1.85rem;
  margin: 40px 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-pink);
}

.article-content-wrap h3 {
  font-size: 1.35rem;
  margin: 28px 0 14px;
}

.article-content-wrap p {
  margin-bottom: 20px;
  color: var(--text-secondary);
  font-weight: 600;
}

.article-content-wrap ul, .article-content-wrap ol {
  margin-bottom: 24px;
  padding-left: 28px;
  color: var(--text-secondary);
  font-weight: 600;
}

.article-content-wrap li {
  margin-bottom: 10px;
}

.article-content-wrap table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 0.925rem;
}

.article-content-wrap th, .article-content-wrap td {
  border: 1px solid var(--border-pink);
  padding: 14px;
  text-align: left;
}

.article-content-wrap th {
  background: rgba(253, 242, 248, 0.8);
  color: var(--text-primary);
  font-weight: 700;
}

.callout-box {
  background: rgba(251, 207, 232, 0.4);
  border-left: 4px solid var(--accent-pink-main);
  padding: 20px 24px;
  border-radius: 12px;
  margin: 28px 0;
  color: var(--text-primary);
}

.related-articles {
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid var(--border-pink);
}

/* Section Spacing */
section {
  padding: 90px 0;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.85rem;
  }
  .bento-grid, .pricing-grid, .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links, .header-cta .btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  /* Mobile menu open state */
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #fdf2f8;
    padding: 28px;
    border-bottom: 1px solid var(--border-pink);
    box-shadow: 0 20px 40px rgba(244, 114, 182, 0.25);
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

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

  .bento-grid, .pricing-grid, .articles-grid, .ai-streaming-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .article-content-wrap {
    padding: 28px 20px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
