/* QUEENSMTP.COM — Dark Glossy Theme */

/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #7c6aff;
  --primary-dark: #6550e0;
  --primary-light: #9b8aff;
  --primary-bg: rgba(124, 106, 255, 0.08);
  --secondary: #00e5a0;
  --secondary-dark: #00c488;
  --text: #e8e8f4;
  --text-light: #9090b0;
  --text-muted: #5c5c78;
  --bg: #06060e;
  --bg-light: #0a0b18;
  --bg-dark: #030308;
  --border: rgba(255, 255, 255, 0.06);
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.6);
  --max-width: 1200px;
  --transition: 0.25s ease;

  /* Glass & Glow */
  --glass-bg: rgba(12, 12, 28, 0.65);
  --glass-bg-solid: #0e0e20;
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-border-hover: rgba(255, 255, 255, 0.1);
  --glass-blur: blur(16px);
  --glow-primary: 0 0 20px rgba(124, 106, 255, 0.2);
  --glow-primary-lg: 0 0 40px rgba(124, 106, 255, 0.15);
  --glow-success: 0 0 20px rgba(0, 229, 160, 0.15);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse at 15% 0%, rgba(124, 106, 255, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 100%, rgba(0, 229, 160, 0.02) 0%, transparent 50%);
  background-attachment: fixed;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-light); }

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

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

/* Custom scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(124, 106, 255, 0.2) transparent;
}
*::-webkit-scrollbar { width: 6px; height: 6px; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb { background: rgba(124, 106, 255, 0.2); border-radius: 3px; }
*::-webkit-scrollbar-thumb:hover { background: rgba(124, 106, 255, 0.35); }

/* ===== HEADER ===== */
.site-header {
  background: rgba(6, 6, 14, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo { text-decoration: none; display: flex; align-items: center; }
.logo-img { height: 40px; width: auto; display: block; }
.logo-text { font-size: 1.4rem; font-weight: 800; color: var(--text); letter-spacing: -0.5px; }
.logo-highlight { color: var(--primary); }
.footer-logo-img { height: 36px; width: auto; display: block; margin-bottom: 12px; }

/* Nav */
.nav-list {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}

.nav-link {
  display: block;
  padding: 8px 16px;
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav-link:hover { color: var(--text); background: var(--primary-bg); }

/* Nav CTA Button */
.nav-cta {
  display: block;
  padding: 9px 24px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 9999px;
  margin-left: 8px;
  transition: all var(--transition);
  box-shadow: 0 0 16px rgba(124, 106, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 9999px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent, rgba(124,106,255,0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.nav-cta:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 0 28px rgba(124, 106, 255, 0.4);
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

/* Dropdown */
.nav-dropdown { position: relative; }

.dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  margin-left: 6px;
  vertical-align: middle;
  border-top: 5px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  opacity: 0.4;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: rgba(10, 10, 24, 0.92);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  list-style: none;
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: var(--text-light);
  font-size: 0.9rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.dropdown-menu a:hover { background: var(--primary-bg); color: var(--text); }

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle .bar {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== BREADCRUMB ===== */
.breadcrumb { background: var(--bg-light); border-bottom: 1px solid var(--border); padding: 12px 0; }

.breadcrumb-list {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 0.85rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: '\203A';
  margin-right: 6px;
  color: var(--text-muted);
}

.breadcrumb-item a { color: var(--primary); }
.breadcrumb-item.active span { color: var(--text-light); }

/* ===== HERO ===== */
.hero {
  background: var(--bg-light);
  border-bottom: 1px solid var(--glass-border);
  color: #fff;
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Ambient glow orbs */
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 50%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(124, 106, 255, 0.12) 0%, transparent 60%);
  pointer-events: none;
  animation: heroGlowPulse 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 50%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(0, 229, 160, 0.06) 0%, transparent 60%);
  pointer-events: none;
  animation: heroGlowPulse 8s ease-in-out infinite 4s;
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  line-height: 1.12;
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 52px;
  flex-wrap: wrap;
  position: relative;
}

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

.hero-stat .stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  display: block;
  color: var(--primary-light);
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
}

.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--glow-primary); }

.btn-white {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-white:hover { background: rgba(255, 255, 255, 0.18); color: #fff; transform: translateY(-1px); }

.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; box-shadow: var(--glow-primary); }

.hero .btn-primary,
.page-hero .btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border: none;
  box-shadow: var(--glow-primary);
}
.hero .btn-primary:hover,
.page-hero .btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(124, 106, 255, 0.35);
}

.hero .btn-outline,
.page-hero .btn-outline {
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}
.hero .btn-outline:hover,
.page-hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero .btn-white,
.page-hero .btn-white {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.hero .btn-white:hover,
.page-hero .btn-white:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.cta-section .btn-outline { color: #fff; border-color: rgba(255, 255, 255, 0.5); }
.cta-section .btn-outline:hover { background: rgba(255, 255, 255, 0.15); color: #fff; border-color: rgba(255, 255, 255, 0.8); }

.btn-secondary { background: var(--secondary); color: #fff; }
.btn-secondary:hover { background: var(--secondary-dark); color: #fff; box-shadow: var(--glow-success); }

.btn-lg { padding: 16px 40px; font-size: 1.1rem; }

.btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-light { background: var(--bg-light); }
.section-dark { background: var(--bg-dark); color: #fff; }

.section h2 { font-size: 2rem; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 20px; line-height: 1.2; }
.section p { line-height: 1.75; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.section-header h2 { font-size: 2.25rem; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 16px; }
.section-header p { color: var(--text-light); font-size: 1.1rem; }
.section-dark .section-header p { color: rgba(255, 255, 255, 0.7); }

/* ===== FEATURE GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.feature-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: rgba(124, 106, 255, 0.25);
  box-shadow: var(--glow-primary);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-bg);
  border: 1px solid rgba(124, 106, 255, 0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.feature-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; }

/* ===== PRICING TABLE ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition);
}

.pricing-card:hover {
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-md);
}

.pricing-card.popular {
  border-color: var(--primary);
  position: relative;
  box-shadow: var(--glow-primary-lg);
  transform: scale(1.03);
}

.pricing-card.popular::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 4px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--glow-primary);
}

.pricing-card h3 { font-size: 1.3rem; margin-bottom: 8px; color: var(--text); }
.pricing-card .price { font-size: 3rem; font-weight: 800; color: var(--primary); margin: 16px 0; }
.pricing-card .price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.pricing-card .price-desc { color: var(--text-light); font-size: 0.9rem; margin-bottom: 24px; }

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-light);
}

.pricing-features li::before {
  content: '\2713';
  color: var(--secondary);
  font-weight: 700;
  margin-right: 10px;
}

/* ===== FAQ ACCORDION ===== */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.faq-item:hover { border-color: rgba(124, 106, 255, 0.2); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--text);
  transition: all var(--transition);
}

.faq-question:hover { color: var(--primary-light); }

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-question::after { content: '\2212'; color: var(--primary); }

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-answer a { color: var(--primary-light); }
.faq-answer a:hover { color: var(--primary); }

.faq-item.active .faq-answer { display: block; }

/* ===== ARTICLE / GUIDE CONTENT ===== */
.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-content h1 { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 16px; line-height: 1.2; color: var(--text); }
.article-content h2 { font-size: 1.75rem; font-weight: 700; margin: 48px 0 16px; padding-top: 16px; border-top: 1px solid var(--border); color: var(--text); }
.article-content h3 { font-size: 1.25rem; font-weight: 600; margin: 32px 0 12px; color: var(--text); }
.article-content p { margin-bottom: 16px; color: var(--text-light); }
.article-content ul, .article-content ol { margin: 0 0 16px 24px; color: var(--text-light); }
.article-content li { margin-bottom: 8px; }
.article-content strong { color: var(--text); }

.article-meta { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 32px; }

/* Table of Contents */
.toc {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  margin-bottom: 40px;
}

.toc h4 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 12px; }
.toc ol { margin: 0; padding-left: 20px; }
.toc li { margin-bottom: 6px; font-size: 0.95rem; color: var(--text-light); }
.toc a { color: var(--primary); }
.toc a:hover { color: var(--primary-light); }

/* Code blocks */
.code-block {
  background: #030308;
  color: #c8c8e0;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
  overflow-x: auto;
  font-family: 'JetBrains Mono', 'SF Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Callout / Note */
.callout {
  background: var(--primary-bg);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin-bottom: 24px;
}

.callout p { margin: 0; color: var(--text-light); }
.callout strong { color: var(--primary-light); }

/* Comparison table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  font-size: 0.9rem;
}

.comparison-table th, .comparison-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison-table th { background: var(--bg-light); font-weight: 600; color: var(--text); }
.comparison-table td { color: var(--text-light); }
.comparison-table tr:hover td { background: rgba(255, 255, 255, 0.02); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--bg-light);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  color: #fff;
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(124, 106, 255, 0.08) 0%, transparent 55%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  position: relative;
  color: var(--text);
}

.cta-section p {
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-section .btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: var(--glow-primary);
}

.cta-section .btn-primary:hover {
  box-shadow: 0 0 30px rgba(124, 106, 255, 0.35);
  transform: translateY(-2px);
}

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step-card { text-align: center; padding: 24px; position: relative; }

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 16px;
  box-shadow: var(--glow-primary);
}

.step-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.step-card p { color: var(--text-light); font-size: 0.9rem; }

/* ===== CONTACT FORM ===== */
.contact-form { max-width: 600px; margin: 0 auto; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.9rem; color: var(--text); }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: all var(--transition);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124, 106, 255, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239090b0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--bg-light);
  color: var(--text);
}

/* ===== FOOTER ===== */
.site-footer { background: var(--bg-dark); color: rgba(255, 255, 255, 0.8); padding: 64px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--primary-light); }

.footer-brand { margin-top: 20px; }
.footer-brand .logo-text { font-size: 1.1rem; }
.footer-brand .logo-highlight { color: var(--primary-light); }
.footer-brand p { font-size: 0.8rem; color: rgba(255, 255, 255, 0.4); margin-top: 8px; line-height: 1.5; }

.footer-bottom { padding: 24px 0; text-align: center; }
.footer-bottom p { color: rgba(255, 255, 255, 0.3); font-size: 0.85rem; }

/* ===== RELATED SERVICES ===== */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.related-card {
  display: block;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
}

.related-card:hover {
  box-shadow: var(--glow-primary);
  border-color: rgba(124, 106, 255, 0.2);
  transform: translateY(-2px);
  color: var(--text);
}

.related-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.related-card p { font-size: 0.85rem; color: var(--text-light); }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-muted { color: var(--text-light); }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--bg-light);
  border-bottom: 1px solid var(--glass-border);
  color: #fff;
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 45%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(124, 106, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 40%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(0, 229, 160, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 28px;
  font-size: 1.08rem;
  line-height: 1.7;
  position: relative;
}

.page-hero .btn-group { margin-bottom: 8px; position: relative; }
.page-hero .hero-stats { margin-top: 40px; }

/* ===== 404 PAGE ===== */
.page-404 { text-align: center; padding: 100px 20px; }
.page-404 h1 { font-size: 6rem; font-weight: 800; color: var(--primary); margin-bottom: 16px; text-shadow: var(--glow-primary); }
.page-404 h2 { font-size: 1.5rem; margin-bottom: 16px; color: var(--text); }
.page-404 p { color: var(--text-light); margin-bottom: 32px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .mobile-toggle { display: flex; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(8, 8, 18, 0.95);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
    padding: 16px;
  }

  .nav-menu.active { display: block; }

  .nav-list { flex-direction: column; gap: 0; }

  .nav-link { padding: 12px 16px; }

  .nav-cta {
    margin: 8px 16px 0;
    text-align: center;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0 0 0 16px;
    display: none;
  }

  .nav-dropdown.active .dropdown-menu { display: block; }

  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .hero-stats { gap: 24px; }
  .hero-stat .stat-number { font-size: 1.6rem; }

  .section { padding: 48px 0; }
  .section-header h2 { font-size: 1.75rem; }

  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: none; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .related-grid { grid-template-columns: 1fr; }

  .page-hero h1 { font-size: 1.75rem; }
  .article-content h1 { font-size: 1.75rem; }
  .article-content h2 { font-size: 1.35rem; }

  .page-404 h1 { font-size: 4rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 48px 0; }
  .hero h1 { font-size: 1.75rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; align-items: center; }
}
