/* NerviRol CO — style_q9r2xw.css — Diseño 4: Moderno/Tecnológico */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:wght@400;500;700&display=swap');

:root {
  --bg-dark: #0a0f1e;
  --bg-card: #111827;
  --electric: #2563eb;
  --neon: #00d4ff;
  --neon-rgb: 0,212,255;
  --electric-rgb: 37,99,235;
  --gray-light: #f1f5f9;
  --gray-mid: #94a3b8;
  --white: #ffffff;
  --text-body: #e2e8f0;
  --accent: var(--electric);
  --accent-rgb: var(--electric-rgb);
  --border-neon: rgba(0,212,255,0.25);
  --glass-bg: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --price-new: #00d4ff;
  --price-old: #64748b;
  --success: #10b981;
  --error: #ef4444;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg-dark);
  color: var(--text-body);
  line-height: 1.65;
  font-size: 16px;
}
h1,h2,h3,h4,h5 { font-family: 'Space Grotesk', sans-serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== DISCLAIMER BAR ===== */
.disclaimer-bar {
  background: #0f1729;
  border-bottom: 1px solid rgba(0,212,255,0.2);
  text-align: center;
  padding: 7px 16px;
  font-size: 11px;
  color: #94a3b8;
  letter-spacing: 0.03em;
}
.advertorial-label {
  background: rgba(37,99,235,0.15);
  border-bottom: 1px solid rgba(37,99,235,0.3);
  text-align: center;
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--neon);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== NAV D — SPLIT CENTER LOGO ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,15,30,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-neon);
  padding: 0 24px;
  height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.nav-left { justify-self: start; }
.nav-logo {
  justify-self: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
}
.nav-logo span { color: var(--neon); }
.nav-right {
  justify-self: end;
  display: flex;
  gap: 16px;
  align-items: center;
}
.nav-product-link, .nav-blog-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-mid);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-product-link:hover, .nav-blog-link:hover { color: var(--neon); }
.nav-cta {
  background: var(--electric);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(0,212,255,0.3);
}
.nav-cta:hover { background: #1d4ed8; box-shadow: 0 0 16px rgba(37,99,235,0.5); }
@media (max-width: 600px) {
  .site-nav { grid-template-columns: 1fr auto; }
  .nav-left { display: none; }
  .nav-logo { justify-self: start; font-size: 17px; }
  .nav-right .nav-blog-link { display: none; }
  .nav-product-link { display: none; }
}

/* ===== HERO ===== */
.hero-section {
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1a3a 50%, #0a0f1e 100%);
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(37,99,235,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--neon);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.1;
}
.hero-title .highlight { color: var(--neon); }
.hero-subtitle {
  font-size: 16px;
  color: var(--gray-mid);
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-price-block { margin-bottom: 28px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-price-new { font-size: 38px; font-weight: 700; color: var(--neon); font-family: 'Space Grotesk',sans-serif; }
.hero-price-old { font-size: 22px; color: var(--price-old); text-decoration: line-through; }
.hero-discount {
  background: #ef4444;
  color: #fff;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
}
.hero-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--electric), #1d4ed8);
  color: #fff;
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  border: 1px solid rgba(0,212,255,0.3);
  box-shadow: 0 0 24px rgba(37,99,235,0.4);
  transition: box-shadow 0.2s, transform 0.2s;
}
.hero-cta:hover { box-shadow: 0 0 36px rgba(37,99,235,0.6); transform: translateY(-2px); }
.hero-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-neon);
  box-shadow: 0 0 40px rgba(0,212,255,0.1);
}
.hero-img-wrap img { width: 100%; height: 420px; object-fit: cover; }
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-img-wrap img { height: 280px; }
  .hero-section { padding: 48px 16px 40px; }
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.section-sub { font-size: 16px; color: var(--gray-mid); margin-bottom: 40px; }
.section-wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 72px 0; }

/* ===== BENEFITS ===== */
.benefits-section { background: #0d1423; border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.benefit-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.benefit-card:hover {
  border-color: rgba(0,212,255,0.4);
  box-shadow: 0 0 20px rgba(0,212,255,0.08);
}
.benefit-icon { font-size: 32px; margin-bottom: 14px; }
.benefit-title { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.benefit-text { font-size: 14px; color: var(--gray-mid); line-height: 1.6; }

/* ===== RATING BAR ===== */
.rating-bar-section {
  background: var(--bg-dark);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.rating-inner {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}
.rating-big { text-align: center; }
.rating-number { font-size: 64px; font-weight: 700; color: var(--neon); font-family: 'Space Grotesk',sans-serif; line-height: 1; }
.rating-stars { font-size: 22px; color: #fbbf24; margin: 6px 0; }
.rating-count { font-size: 13px; color: var(--gray-mid); }
.rating-bars { flex: 1; min-width: 260px; }
.rating-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.rating-label { font-size: 13px; color: var(--gray-mid); width: 70px; flex-shrink: 0; }
.rating-bar-track { flex: 1; background: rgba(255,255,255,0.07); border-radius: 999px; height: 8px; overflow: hidden; }
.rating-bar-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--electric), var(--neon)); }
.rating-pct { font-size: 12px; color: var(--gray-mid); width: 34px; text-align: right; }

/* ===== REVIEWS ===== */
.reviews-section { background: #0d1423; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 40px; }
.review-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 24px;
  transition: border-color 0.3s;
}
.review-card:hover { border-color: rgba(37,99,235,0.4); }
.review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.review-avatar { border-radius: 50%; flex-shrink: 0; }
.review-name { font-weight: 700; color: var(--white); font-size: 15px; }
.review-city { font-size: 12px; color: var(--gray-mid); }
.review-stars { color: #fbbf24; font-size: 14px; margin-bottom: 10px; }
.review-text { font-size: 14px; color: #cbd5e1; line-height: 1.65; }

/* ===== CAROUSEL / COMO FUNCIONA ===== */
.carousel-section { background: var(--bg-dark); }
.carousel-wrap { position: relative; border-radius: 16px; overflow: hidden; border: 1px solid var(--border-neon); }
.carousel-track { display: flex; transition: transform 0.5s cubic-bezier(.4,0,.2,1); }
.carousel-slide { flex: 0 0 100%; position: relative; }
.carousel-slide img { width: 100%; height: 480px; object-fit: cover; }
.carousel-slide-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(10,15,30,0.92));
  padding: 40px 32px 24px;
  color: #fff;
}
.carousel-slide-caption h3 { font-size: 20px; margin-bottom: 6px; }
.carousel-slide-caption p { font-size: 14px; color: var(--gray-mid); }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(10,15,30,0.7);
  border: 1px solid var(--border-neon);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.carousel-btn:hover { background: rgba(37,99,235,0.5); }
.carousel-btn.prev { left: 14px; }
.carousel-btn.next { right: 14px; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--glass-border);
  cursor: pointer; transition: background 0.2s;
}
.carousel-dot.active { background: var(--neon); }
@media (max-width: 768px) { .carousel-slide img { height: 280px; } }

/* ===== FAQ ===== */
.faq-section { background: #0d1423; }
.faq-list { margin-top: 36px; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(0,212,255,0.3); }
.faq-question {
  width: 100%; padding: 18px 22px;
  background: none; border: none; cursor: pointer;
  text-align: left;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px; font-weight: 600;
  color: var(--white);
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
}
.faq-icon { font-size: 20px; color: var(--neon); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
  font-size: 15px; color: #94a3b8; line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 22px 20px; }

/* ===== ORDER FORM ===== */
.order-section { background: var(--bg-dark); }
.order-section-inner { max-width: 700px; margin: 0 auto; }
.order-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-neon);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 0 40px rgba(0,212,255,0.06);
}
.order-form-title {
  font-size: 24px; font-weight: 700; color: var(--white);
  text-align: center; margin-bottom: 6px;
}
.order-form-subtitle { text-align: center; font-size: 14px; color: var(--gray-mid); margin-bottom: 28px; }
.form-price-badge {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-bottom: 28px;
  padding: 14px;
  background: rgba(0,212,255,0.06);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 10px;
}
.form-price-new { font-size: 32px; font-weight: 700; color: var(--neon); }
.form-price-old { font-size: 18px; color: var(--price-old); text-decoration: line-through; }
.form-discount-badge {
  background: #ef4444; color: #fff;
  padding: 3px 10px; border-radius: 4px; font-size: 13px; font-weight: 700;
}
/* Form 2 — 2-column grid */
.order-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px; }
.order-form .field-full { grid-column: 1 / -1; }
.field-group { display: flex; flex-direction: column; gap: 5px; }
.field-group label { font-size: 13px; font-weight: 600; color: var(--gray-mid); }
.field-group input, .field-group select {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--white);
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.field-group input::placeholder { color: #475569; }
.field-group input:focus, .field-group select:focus {
  border-color: rgba(0,212,255,0.5);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.08);
}
.field-group.error input, .field-group.error select { border-color: var(--error); }
.field-group.valid input, .field-group.valid select { border-color: var(--success); }
.field-error { font-size: 12px; color: var(--error); margin-top: 3px; display: none; }
.field-group.error .field-error { display: block; }
.field-group select option { background: #111827; }
.consent-row { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 10px; }
.consent-row input[type=checkbox] { margin-top: 3px; accent-color: var(--electric); width: 16px; height: 16px; flex-shrink: 0; }
.consent-row label { font-size: 13px; color: var(--gray-mid); line-height: 1.5; }
.consent-row a { color: var(--neon); text-decoration: underline; }
.submit-btn {
  grid-column: 1 / -1;
  width: 100%;
  padding: 17px;
  background: linear-gradient(135deg, var(--electric), #1d4ed8);
  color: #fff;
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 10px;
  font-size: 17px; font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  cursor: pointer;
  box-shadow: 0 0 24px rgba(37,99,235,0.35);
  transition: box-shadow 0.2s, transform 0.2s;
  margin-top: 6px;
}
.submit-btn:hover:not(:disabled) { box-shadow: 0 0 36px rgba(37,99,235,0.55); transform: translateY(-1px); }
.submit-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
@media (max-width: 600px) {
  .order-form { grid-template-columns: 1fr; }
  .order-form-card { padding: 24px 18px; }
}

/* ===== COMPARISON TABLE ===== */
.comparison-section { background: #0d1423; }
.comparison-table { width: 100%; border-collapse: collapse; margin-top: 36px; border-radius: 12px; overflow: hidden; }
.comparison-table thead th {
  padding: 16px 20px;
  font-size: 15px; font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}
.comparison-table thead th:first-child { background: #1e1e2e; color: var(--gray-mid); }
.comparison-table thead th:nth-child(2) { background: #1a1a2e; color: #ef4444; }
.comparison-table thead th:nth-child(3) { background: rgba(37,99,235,0.25); color: var(--neon); border: 1px solid var(--border-neon); }
.comparison-table tbody tr { border-bottom: 1px solid rgba(255,255,255,0.06); }
.comparison-table tbody tr:last-child { border-bottom: none; }
.comparison-table tbody td { padding: 14px 20px; font-size: 14px; }
.comparison-table tbody td:first-child { color: var(--gray-mid); font-weight: 500; }
.comparison-table tbody td:nth-child(2) { background: rgba(239,68,68,0.05); color: #ef4444; text-align: center; font-size: 18px; }
.comparison-table tbody td:nth-child(3) { background: rgba(37,99,235,0.05); color: var(--success); text-align: center; font-size: 18px; border-left: 1px solid var(--border-neon); border-right: 1px solid var(--border-neon); }
.comparison-table tbody tr:last-child td:nth-child(3) { border-bottom: 1px solid var(--border-neon); }

/* ===== DELIVERY PROGRESS ===== */
.delivery-progress { margin-top: 32px; }
.delivery-title { font-size: 14px; color: var(--gray-mid); text-align: center; margin-bottom: 24px; }
.delivery-steps { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.delivery-step { display: flex; flex-direction: column; align-items: center; gap: 8px; min-width: 100px; }
.delivery-step-icon {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; background: var(--glass-bg); border: 2px solid var(--glass-border);
}
.delivery-step.active .delivery-step-icon { background: rgba(37,99,235,0.2); border-color: var(--electric); }
.delivery-step-label { font-size: 11px; color: var(--gray-mid); text-align: center; line-height: 1.3; }
.delivery-step.active .delivery-step-label { color: var(--neon); }
.delivery-line { flex: 1; height: 2px; background: var(--glass-border); min-width: 24px; }

/* ===== BLOG SECTION (homepage) ===== */
.blog-section { background: var(--bg-dark); }
/* Variant 3 — Featured + list */
.blog-grid-v3 { margin-top: 36px; }
.blog-featured {
  display: flex; gap: 0; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--glass-border);
  margin-bottom: 20px;
  transition: border-color 0.3s;
}
.blog-featured:hover { border-color: rgba(0,212,255,0.35); }
.blog-featured-img { width: 45%; flex-shrink: 0; }
.blog-featured-img img { width: 100%; height: 280px; object-fit: cover; }
.blog-featured-body { padding: 32px 28px; background: var(--bg-card); flex: 1; display: flex; flex-direction: column; justify-content: center; }
.blog-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(37,99,235,0.15); border: 1px solid rgba(37,99,235,0.3);
  color: var(--neon); font-size: 11px; font-weight: 600;
  padding: 3px 10px; border-radius: 999px; margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.blog-card-title { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 10px; line-height: 1.3; }
.blog-card-excerpt { font-size: 14px; color: var(--gray-mid); margin-bottom: 14px; line-height: 1.6; }
.blog-card-meta { font-size: 12px; color: #475569; margin-bottom: 14px; }
.blog-card-cta {
  display: inline-block;
  background: var(--electric); color: #fff;
  padding: 9px 20px; border-radius: 6px;
  font-size: 13px; font-weight: 700;
  transition: background 0.2s;
  align-self: flex-start;
}
.blog-card-cta:hover { background: #1d4ed8; }
.blog-small-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.blog-card-v {
  background: var(--bg-card); border: 1px solid var(--glass-border);
  border-radius: 10px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.blog-card-v:hover { border-color: rgba(37,99,235,0.35); box-shadow: 0 4px 20px rgba(0,212,255,0.06); }
.blog-card-v img { width: 100%; height: 160px; object-fit: cover; }
.blog-card-v-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.blog-card-v-body .blog-card-title { font-size: 15px; margin-bottom: 8px; }
.blog-card-v-body .blog-card-cta { font-size: 12px; padding: 7px 14px; margin-top: auto; }
@media (max-width: 768px) {
  .blog-featured { flex-direction: column; }
  .blog-featured-img { width: 100%; }
  .blog-featured-img img { height: 220px; }
  .blog-small-grid { grid-template-columns: 1fr; }
}

/* ===== FOOTER ===== */
.site-footer {
  background: #060b17;
  border-top: 1px solid var(--glass-border);
  padding: 48px 24px 24px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: flex; gap: 48px; flex-wrap: wrap; justify-content: space-between; margin-bottom: 36px; }
.footer-brand .nav-logo { font-size: 22px; margin-bottom: 12px; display: block; }
.footer-brand p { font-size: 13px; color: var(--gray-mid); line-height: 1.6; max-width: 280px; }
.footer-links h4 { font-size: 13px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links ul li a { font-size: 13px; color: var(--gray-mid); transition: color 0.2s; }
.footer-links ul li a:hover { color: var(--neon); }
.footer-bottom {
  border-top: 1px solid var(--glass-border); padding-top: 20px;
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 12px; color: #475569; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-legal a { font-size: 12px; color: #475569; transition: color 0.2s; }
.footer-legal a:hover { color: var(--neon); }

/* ===== MODAL ===== */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(6px);
  z-index: 999; align-items: center; justify-content: center;
  padding: 16px;
}
.modal-overlay.active { display: flex; }
.modal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-neon);
  border-radius: 16px;
  padding: 40px;
  max-width: 480px; width: 100%;
  text-align: center;
  box-shadow: 0 0 60px rgba(0,212,255,0.15);
}
.modal-check { font-size: 56px; margin-bottom: 16px; animation: popIn 0.4s ease; }
@keyframes popIn { 0%{transform:scale(0)}80%{transform:scale(1.1)}100%{transform:scale(1)} }
.modal-title { font-size: 24px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.modal-sub { font-size: 15px; color: var(--gray-mid); margin-bottom: 20px; }
.modal-price { font-size: 28px; font-weight: 700; color: var(--neon); margin-bottom: 20px; }
.modal-close {
  background: var(--electric); color: #fff;
  border: none; padding: 12px 28px; border-radius: 8px;
  font-size: 15px; font-weight: 700; cursor: pointer;
}

/* ===== THANK YOU PAGE ===== */
.thankyou-wrap { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 48px 24px; }
.thankyou-card { background: var(--bg-card); border: 1px solid var(--border-neon); border-radius: 16px; padding: 56px 40px; max-width: 520px; text-align: center; }
.thankyou-icon { font-size: 64px; margin-bottom: 20px; }
.thankyou-title { font-size: 32px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.thankyou-sub { font-size: 16px; color: var(--gray-mid); margin-bottom: 24px; }

/* ===== BLOG PAGE ===== */
.blog-hero-section {
  background: linear-gradient(135deg, #0d1423 0%, #0a1535 100%);
  padding: 64px 24px 48px;
  border-bottom: 1px solid var(--border-neon);
}
.blog-hero-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.blog-hero-title { font-size: clamp(28px,4vw,44px); font-weight: 700; color: var(--white); margin-bottom: 14px; }
.blog-hero-sub { font-size: 16px; color: var(--gray-mid); margin-bottom: 24px; }
.blog-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.blog-tag-pill {
  background: rgba(37,99,235,0.12); border: 1px solid rgba(37,99,235,0.3);
  color: var(--neon); padding: 5px 14px; border-radius: 999px; font-size: 13px; font-weight: 600;
}
.blog-count-bar {
  text-align: center; padding: 14px;
  border-bottom: 1px solid var(--glass-border);
  font-size: 13px; color: var(--gray-mid);
  background: rgba(255,255,255,0.02);
}
.blog-content-wrap { max-width: 1100px; margin: 0 auto; padding: 56px 24px; }
.blog-bottom-cta {
  background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(0,212,255,0.08));
  border: 1px solid var(--border-neon);
  border-radius: 16px; padding: 40px; text-align: center; margin-top: 48px;
}
.blog-bottom-cta h3 { font-size: 24px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.blog-bottom-cta p { color: var(--gray-mid); margin-bottom: 20px; }
.blog-bottom-cta a {
  display: inline-block; background: var(--electric); color: #fff;
  padding: 14px 32px; border-radius: 8px; font-weight: 700; font-size: 16px;
}

/* ===== ARTICLE PAGE ===== */
.article-hero { background: var(--bg-card); border-bottom: 1px solid var(--glass-border); padding: 56px 24px 0; }
.article-hero-inner { max-width: 780px; margin: 0 auto; }
.article-hero .blog-tag { margin-bottom: 16px; }
.article-hero h1 { font-size: clamp(24px,4vw,40px); color: var(--white); margin-bottom: 14px; }
.article-hero-meta { font-size: 13px; color: var(--gray-mid); margin-bottom: 24px; }
.article-hero img { width: 100%; border-radius: 10px 10px 0 0; max-height: 420px; object-fit: cover; margin-top: 24px; }
.article-body { max-width: 780px; margin: 0 auto; padding: 40px 24px 64px; }
.article-body h2 { font-size: 22px; color: var(--white); margin: 32px 0 14px; }
.article-body p { font-size: 15px; color: #cbd5e1; line-height: 1.8; margin-bottom: 16px; }
.article-body ul { padding-left: 20px; margin-bottom: 16px; }
.article-body ul li { font-size: 15px; color: #cbd5e1; line-height: 1.7; margin-bottom: 6px; }
.info-box {
  background: rgba(37,99,235,0.08); border-left: 3px solid var(--electric);
  border-radius: 0 8px 8px 0; padding: 16px 20px; margin: 24px 0;
  font-size: 14px; color: #94a3b8; line-height: 1.7;
}
.disclaimer-article {
  background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border);
  border-radius: 8px; padding: 14px 18px; margin-top: 32px;
  font-size: 12px; color: #475569; line-height: 1.6;
}
.article-cta {
  background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(0,212,255,0.06));
  border: 1px solid var(--border-neon); border-radius: 12px;
  padding: 28px; text-align: center; margin-top: 36px;
}
.article-cta h3 { font-size: 20px; color: var(--white); margin-bottom: 8px; }
.article-cta p { font-size: 14px; color: var(--gray-mid); margin-bottom: 16px; }
.article-cta a {
  display: inline-block; background: var(--electric); color: #fff;
  padding: 12px 28px; border-radius: 7px; font-weight: 700; font-size: 15px;
}
.mini-faq { margin-top: 36px; }
.mini-faq h3 { font-size: 18px; color: var(--white); margin-bottom: 16px; }

/* ===== LEGAL PAGES ===== */
.legal-wrap { max-width: 820px; margin: 0 auto; padding: 56px 24px; }
.legal-wrap h1 { font-size: 32px; color: var(--white); margin-bottom: 32px; }
.legal-wrap h2 { font-size: 20px; color: var(--white); margin: 28px 0 12px; }
.legal-wrap p { font-size: 15px; color: #94a3b8; line-height: 1.8; margin-bottom: 14px; }
.legal-wrap ul { padding-left: 20px; margin-bottom: 14px; }
.legal-wrap ul li { font-size: 15px; color: #94a3b8; line-height: 1.7; margin-bottom: 6px; }
.legal-wrap a { color: var(--neon); }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mb-0 { margin-bottom: 0; }
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--electric), #1d4ed8);
  color: #fff; padding: 14px 32px; border-radius: 8px;
  font-size: 16px; font-weight: 700;
  border: 1px solid rgba(0,212,255,0.3);
  box-shadow: 0 0 20px rgba(37,99,235,0.3);
  transition: box-shadow 0.2s, transform 0.2s;
}
.btn-primary:hover { box-shadow: 0 0 30px rgba(37,99,235,0.5); transform: translateY(-2px); }
