/* 
  WgetCloud Landing Page Stylesheet
  Modern, Ultra-Fast, Mobile-First, Pure CSS Architecture
  Slate Grey Wallpaper with Pink Words & Accents Theme
*/

:root {
  --bg-dark: #131722;
  --bg-nav: rgba(19, 23, 34, 0.88);
  --bg-card: #1c2230;
  --bg-card-hover: #242c3d;
  --bg-glass: rgba(28, 34, 48, 0.75);

  --primary: #ec4899;
  --primary-hover: #be185d;
  --primary-glow: rgba(236, 72, 153, 0.35);
  
  --accent-purple: #a855f7;
  --accent-cyan: #38bdf8;
  --accent-emerald: #10b981;
  
  --text-main: #f8fafc;
  --text-sub: #cbd5e1;
  --text-muted: #94a3b8;
  
  --border-light: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(236, 72, 153, 0.45);
  --border-card: rgba(255, 255, 255, 0.06);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;

  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 25px rgba(236, 72, 153, 0.22);
  
  --container-max: 1200px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Typography Utilities - Pink Words Theme */
.gradient-text {
  background: linear-gradient(135deg, #ffffff 20%, #f472b6 60%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-purple {
  background: linear-gradient(135deg, #c084fc 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-center {
  text-align: center;
}

.brand-highlight {
  color: #f472b6;
  font-weight: 900;
  text-transform: lowercase;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(236, 72, 153, 0.1);
  border: 1px solid rgba(236, 72, 153, 0.25);
  border-radius: var(--radius-pill);
  color: #f472b6;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 3rem auto;
}

/* Header / Navbar on Grey Wallpaper */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bg-nav);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  padding: 0.85rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #ec4899, #a855f7);
  color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px var(--primary-glow);
}

.logo-icon svg {
  stroke: #ffffff;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  overflow-x: auto;
  padding: 0.25rem 0;
}

.nav-links a {
  color: var(--text-sub);
  font-size: 0.925rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.nav-links a:hover {
  color: #f472b6;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #ec4899, #be185d);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(236, 72, 153, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(236, 72, 153, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.btn-large {
  padding: 0.95rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

/* Hero Section - Slate Grey Wallpaper */
.hero {
  position: relative;
  padding: 3.5rem 0 5rem 0;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -150px;
  left: 30%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.16) 0%, rgba(168, 85, 247, 0.08) 40%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-text-side {
  text-align: center;
}

.hero-headline {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero-subheadline {
  font-size: 1.1rem;
  color: var(--text-sub);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5rem;
}

/* Dynamic Tech Visual Card (Right Side) */
.hero-visual-side {
  position: relative;
  width: 100%;
}

.dynamic-tech-card {
  background: linear-gradient(145deg, rgba(28, 34, 48, 0.95), rgba(36, 44, 61, 0.85));
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), var(--shadow-glow);
  backdrop-filter: blur(12px);
  position: relative;
}

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

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--accent-emerald);
  font-weight: 600;
  background: rgba(16, 185, 129, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-emerald);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-emerald);
  animation: pulse-ring 2s infinite ease-in-out;
}

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

/* Node Latency List */
.node-latency-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.node-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  transition: var(--transition-fast);
}

.node-row:hover {
  background: rgba(236, 72, 153, 0.08);
  border-color: rgba(236, 72, 153, 0.3);
}

.node-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.9rem;
}

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

.latency-value {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-emerald);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.signal-bars {
  display: inline-flex;
  gap: 2px;
  align-items: flex-end;
  height: 12px;
}

.signal-bar {
  width: 3px;
  background: var(--accent-emerald);
  border-radius: 1px;
}

.signal-bar:nth-child(1) { height: 4px; }
.signal-bar:nth-child(2) { height: 7px; }
.signal-bar:nth-child(3) { height: 10px; }
.signal-bar:nth-child(4) { height: 12px; }

/* Dynamic Speed Meter Bar */
.speed-meter-container {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.speed-meter-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.speed-meter-val {
  color: #f472b6;
  font-weight: 800;
}

.progress-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  width: 92%;
  background: linear-gradient(90deg, #ec4899, #a855f7, #38bdf8);
  border-radius: var(--radius-pill);
  position: relative;
  animation: speed-anim 3s infinite alternate ease-in-out;
}

@keyframes speed-anim {
  0% { width: 80%; }
  50% { width: 96%; }
  100% { width: 88%; }
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  padding: 0.6rem 1rem;
  background: rgba(28, 34, 48, 0.95);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  z-index: 10;
  animation: float-anim 4s ease-in-out infinite alternate;
}

.badge-top-right {
  top: -15px;
  right: -10px;
}

.badge-bottom-left {
  bottom: -20px;
  left: -10px;
  animation-delay: 2s;
}

@keyframes float-anim {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

/* Hero Metrics Bar below Grid */
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
}

.metric-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.metric-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: #f472b6;
  line-height: 1.2;
}

.metric-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Section Container */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-alt {
  background: rgba(28, 34, 48, 0.5);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

/* Advantage Cards Grid (3 Cards) */
.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-glow);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(236, 72, 153, 0.12);
  color: #f472b6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(236, 72, 153, 0.2);
}

.card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.card-desc {
  color: var(--text-sub);
  font-size: 0.975rem;
  line-height: 1.6;
}

/* Streaming & AI Cards Grid */
.matrix-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.matrix-card {
  background: linear-gradient(145deg, rgba(28, 34, 48, 0.9), rgba(36, 44, 61, 0.6));
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.matrix-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.matrix-badge-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-purple {
  background: rgba(168, 85, 247, 0.15);
  color: var(--accent-purple);
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.badge-cyan {
  background: rgba(236, 72, 153, 0.15);
  color: #f472b6;
  border: 1px solid rgba(236, 72, 153, 0.3);
}

.matrix-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-sub);
  transition: var(--transition-fast);
}

.tag-item:hover {
  background: rgba(236, 72, 153, 0.12);
  border-color: rgba(236, 72, 153, 0.35);
  color: var(--text-main);
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
}

.pricing-card.featured {
  background: linear-gradient(180deg, rgba(36, 44, 61, 0.95), rgba(28, 34, 48, 0.95));
  border: 2px solid #ec4899;
  box-shadow: var(--shadow-glow);
}

.featured-ribbon {
  position: absolute;
  top: -14px;
  right: 20px;
  background: linear-gradient(135deg, #ec4899, #a855f7);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-header {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1.5rem;
}

.pricing-plan-name {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-main);
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.pricing-currency {
  font-size: 1.4rem;
  font-weight: 700;
}

.pricing-period {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-features {
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  color: var(--text-sub);
}

.check-icon {
  width: 18px;
  height: 18px;
  color: var(--accent-emerald);
  flex-shrink: 0;
}

/* 9 SEO Articles Grid Section */
.seo-articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.seo-article-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
  position: relative;
}

.seo-article-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-glow);
}

.seo-card-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #f472b6;
  background: rgba(236, 72, 153, 0.12);
  border: 1px solid rgba(236, 72, 153, 0.25);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.85rem;
  align-self: flex-start;
}

.seo-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.seo-card-desc {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.seo-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
  font-size: 0.825rem;
  color: var(--text-muted);
}

.read-more-link {
  color: #f472b6;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap var(--transition-fast);
  text-decoration: underline;
}

.seo-article-card:hover .read-more-link {
  gap: 0.6rem;
  color: #f472b6;
}

/* User Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  color: #f59e0b;
  margin-bottom: 1rem;
}

.testimonial-content {
  font-size: 0.95rem;
  color: var(--text-sub);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatar-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ec4899, #a855f7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
}

.user-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

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

/* FAQ Accordion */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-fast);
  color: #f472b6;
  flex-shrink: 0;
}

.faq-item[open] summary .faq-icon {
  transform: rotate(180deg);
}

.faq-item[open] summary {
  border-bottom: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.02);
}

.faq-body {
  padding: 1.25rem 1.5rem;
  color: var(--text-sub);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA Banner Section */
.cta-banner {
  background: linear-gradient(135deg, rgba(88, 28, 135, 0.4), rgba(157, 23, 77, 0.4));
  border: 1px solid rgba(236, 72, 153, 0.3);
  border-radius: var(--radius-lg);
  padding: 3.5rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-glow);
}

.cta-banner h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--text-sub);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Strict 4-Link Footer Requirement */
.site-footer {
  background-color: #0c0f17;
  border-top: 1px solid var(--border-light);
  padding: 2.5rem 0 2rem 0;
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-nav a {
  color: var(--text-sub);
  font-size: 1rem;
  font-weight: 600;
  transition: color var(--transition-fast);
  padding: 0.25rem 0.5rem;
}

.footer-nav a:hover {
  color: #f472b6;
  text-decoration: underline;
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Sub-page Article Content Styling */
.article-container {
  max-width: 860px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.75rem;
  margin-top: 2rem;
  margin-bottom: 4rem;
}

.article-header {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

.article-title {
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.article-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.article-meta-bar {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.article-body h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 2rem 0 1rem 0;
  color: #f472b6;
}

.article-body h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem 0;
}

.article-body p {
  color: var(--text-sub);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.article-body ul, .article-body ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
  color: var(--text-sub);
}

.article-body li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.article-body th, .article-body td {
  border: 1px solid var(--border-light);
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.9rem;
}

.article-body th {
  background: rgba(255, 255, 255, 0.04);
  color: #f472b6;
}

.back-home {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #f472b6;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.back-home:hover {
  text-decoration: underline;
}

/* Responsive Media Queries */
@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
  .hero-metrics {
    grid-template-columns: repeat(4, 1fr);
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-card.featured {
    grid-column: span 2;
  }
  .seo-articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .matrix-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .article-container {
    padding: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 5rem 0 6rem 0;
  }
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
  }
  .hero-text-side {
    text-align: left;
  }
  .hero-actions {
    justify-content: flex-start;
  }
  .hero-headline {
    font-size: 3.1rem;
  }
  .hero-subheadline {
    font-size: 1.2rem;
  }
  .advantages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .pricing-card.featured {
    grid-column: span 1;
    transform: scale(1.04);
  }
  .pricing-card.featured:hover {
    transform: scale(1.06) translateY(-5px);
  }
  .seo-articles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
