/* ==========================================================================
   boostnet - Premium Light Pink & White Accelerator Theme (Pure CSS)
   ========================================================================== */

/* --- CSS Variables & Design Tokens (Light Pink & White Theme) --- */
:root {
  --bg-dark: #fdf2f8;
  --bg-surface: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #fff0f6;
  --bg-nav: rgba(255, 255, 255, 0.92);
  
  --border-color: rgba(244, 114, 182, 0.2);
  --border-light: rgba(244, 114, 182, 0.35);
  --border-glow: rgba(236, 72, 153, 0.5);
  
  --primary-color: #ec4899;
  --primary-gradient: linear-gradient(135deg, #ec4899 0%, #f43f5e 50%, #fb7185 100%);
  --accent-cyan: #db2777;
  --accent-blue: #e11d48;
  --accent-emerald: #059669;
  --accent-purple: #c026d3;
  
  --text-main: #1e1b4b;
  --text-muted: #475569;
  --text-dim: #94a3b8;
  
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --container-max: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-glow: 0 10px 30px rgba(236, 72, 153, 0.18);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Global Styles --- */
*, *::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;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

/* --- Typography Helpers --- */
.gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

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

.section {
  padding: 5.5rem 0;
  position: relative;
}

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

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

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

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

/* --- Header & Light Nav --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--bg-nav);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 15px rgba(244, 114, 182, 0.08);
}

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

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

.logo-icon {
  width: 34px;
  height: 34px;
  background: var(--primary-gradient);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

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

.nav-link {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.4rem 0.2rem;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-cyan);
}

.nav-cta {
  display: flex;
  align-items: center;
}

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

.btn-primary {
  background: var(--primary-gradient);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(236, 72, 153, 0.35);
}

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

.btn-secondary {
  background-color: #ffffff;
  color: var(--accent-cyan);
  border-color: var(--border-light);
  box-shadow: 0 2px 10px rgba(244, 114, 182, 0.1);
}

.btn-secondary:hover {
  background-color: #fce7f3;
  border-color: var(--border-glow);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 0.9rem 2.25rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* --- Hero Section (Left-Right Split Layout) --- */
.hero {
  padding: 9rem 0 5.5rem 0;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-dark);
}

.hero-glow {
  position: absolute;
  top: 5%;
  left: 30%;
  width: 700px;
  height: 500px;
  background: radial-gradient(circle, rgba(244, 114, 182, 0.25) 0%, rgba(251, 113, 133, 0.08) 45%, transparent 70%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-left {
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1.1rem;
  background: rgba(244, 114, 182, 0.12);
  border: 1px solid rgba(244, 114, 182, 0.3);
  border-radius: 9999px;
  color: #be185d;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

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

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

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

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

.hero-metrics {
  display: flex;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
}

.metric-lbl {
  font-size: 0.825rem;
  color: var(--text-muted);
}

/* --- Hero Right: Dynamic Card (Light Pink & White) --- */
.hero-right {
  position: relative;
}

.dynamic-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(236, 72, 153, 0.12), 0 0 30px rgba(244, 114, 182, 0.1);
  position: relative;
  overflow: hidden;
}

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

.card-title-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-main);
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-emerald);
  background: rgba(16, 185, 129, 0.12);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.status-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-emerald);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

/* Speed Radar Display */
.radar-display {
  background: #fdf2f8;
  border: 1px solid rgba(244, 114, 182, 0.25);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.speed-meter {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.meter-val {
  font-size: 2.75rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-family: monospace;
}

.meter-unit {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.meter-graph-bar {
  height: 8px;
  width: 100%;
  background: rgba(244, 114, 182, 0.2);
  border-radius: 9999px;
  overflow: hidden;
  position: relative;
}

.meter-graph-fill {
  height: 100%;
  width: 88%;
  background: var(--primary-gradient);
  border-radius: 9999px;
  animation: wave-bar 3s infinite alternate ease-in-out;
}

@keyframes wave-bar {
  0% { width: 72%; }
  50% { width: 96%; }
  100% { width: 85%; }
}

/* Nodes Matrix Status */
.nodes-matrix {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.node-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid rgba(244, 114, 182, 0.18);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--text-main);
  transition: var(--transition);
}

.node-row:hover {
  background: #fce7f3;
  border-color: rgba(236, 72, 153, 0.4);
}

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

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

.node-ping {
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--accent-emerald);
  background: rgba(16, 185, 129, 0.1);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

.node-badge-iepl {
  font-size: 0.725rem;
  color: #be185d;
  background: rgba(244, 114, 182, 0.15);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-weight: 700;
}

/* --- Features Section (3 Cards) --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(244, 114, 182, 0.05);
}

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

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  background: rgba(244, 114, 182, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(244, 114, 182, 0.25);
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--text-main);
}

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

/* --- Media & AI Support Grid --- */
.support-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.support-block {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 4px 15px rgba(244, 114, 182, 0.05);
}

.support-block-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-main);
}

.support-block-title svg {
  color: var(--accent-cyan);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.support-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  background: #fdf2f8;
  border: 1px solid rgba(244, 114, 182, 0.15);
  border-radius: var(--radius-sm);
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--text-main);
}

.support-badge {
  font-size: 0.75rem;
  padding: 0.15rem 0.5rem;
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-emerald);
  border-radius: 4px;
}

/* --- Pricing Section (Light Pink & White Theme) --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(244, 114, 182, 0.05);
}

.pricing-card:hover {
  border-color: var(--border-glow);
}

.pricing-card.featured {
  border-color: var(--primary-color);
  background: linear-gradient(180deg, #fff0f6 0%, #ffffff 100%);
  box-shadow: var(--shadow-glow);
  transform: scale(1.03);
}

.pricing-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--primary-gradient);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 9999px;
  text-transform: uppercase;
}

.pricing-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.pricing-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

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

.pricing-price span {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--text-muted);
}

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

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}

.pricing-feature-item svg {
  color: var(--accent-emerald);
  flex-shrink: 0;
}

/* --- SEO Articles Grid Section --- */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.article-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(244, 114, 182, 0.05);
}

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

.article-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.article-tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(244, 114, 182, 0.15);
  color: #be185d;
  border: 1px solid rgba(244, 114, 182, 0.3);
}

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

.article-title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.85rem;
  color: var(--text-main);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card:hover .article-title {
  color: var(--accent-cyan);
}

.article-snippet {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(244, 114, 182, 0.12);
  font-size: 0.85rem;
  color: var(--accent-cyan);
  font-weight: 600;
}

.article-footer svg {
  transition: transform 0.3s ease;
}

.article-card:hover .article-footer svg {
  transform: translateX(4px);
}

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 15px rgba(244, 114, 182, 0.05);
}

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

.testimonial-quote {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-style: italic;
}

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

.avatar-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
}

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

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

/* --- 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-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(244, 114, 182, 0.04);
}

.faq-item[open] {
  border-color: var(--border-glow);
  background: #fff0f6;
}

.faq-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;
  color: var(--text-main);
}

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

.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  color: var(--accent-cyan);
}

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

.faq-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid rgba(244, 114, 182, 0.15);
  margin-top: 0.25rem;
  padding-top: 1rem;
}

/* --- Footer (Light Pink) --- */
.footer {
  background-color: #fce7f3;
  border-top: 1px solid rgba(244, 114, 182, 0.3);
  padding: 4rem 0 2rem 0;
  margin-top: auto;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  text-align: center;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.footer-nav-link {
  color: #831843;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
}

.footer-nav-link:hover {
  color: var(--accent-cyan);
  background: rgba(236, 72, 153, 0.1);
}

.footer-bottom {
  border-top: 1px solid rgba(244, 114, 182, 0.25);
  padding-top: 2rem;
  text-align: center;
  color: #9d174d;
  font-size: 0.875rem;
}

/* --- Subpages & SEO Article Layout --- */
.page-container {
  padding: 8rem 0 5rem 0;
}

.page-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 3.5rem auto;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.25;
  color: var(--text-main);
}

.page-description {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

.breadcrumbs a {
  color: var(--text-muted);
}

.breadcrumbs a:hover {
  color: var(--accent-cyan);
}

.content-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  max-width: 920px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(244, 114, 182, 0.08);
}

.content-section {
  margin-bottom: 2.5rem;
}

.content-section:last-child {
  margin-bottom: 0;
}

.content-subtitle {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.content-subtitle svg {
  color: var(--accent-cyan);
}

.content-text {
  color: var(--text-muted);
  line-height: 1.85;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.content-text a {
  color: var(--accent-cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content-text a:hover {
  color: var(--text-main);
}

.content-list {
  list-style: none;
  margin-left: 0.5rem;
  margin-bottom: 1.5rem;
}

.content-list-item {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.content-list-item::before {
  content: "•";
  color: var(--accent-cyan);
  font-weight: bold;
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: -2px;
}

.article-callout {
  background: #fdf2f8;
  border-left: 4px solid var(--primary-color);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  color: var(--text-main);
  font-size: 0.975rem;
  line-height: 1.7;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

  .hero-metrics {
    justify-content: center;
  }
  
  .features-grid,
  .pricing-grid,
  .articles-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .support-container {
    grid-template-columns: 1fr;
  }
}

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

  .hero {
    padding-top: 7rem;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .features-grid,
  .pricing-grid,
  .articles-grid,
  .testimonials-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-nav {
    flex-direction: column;
    gap: 1rem;
  }
  
  .content-box {
    padding: 1.75rem;
  }

  .page-title {
    font-size: 1.85rem;
  }
}
