/* TogoMarketing.com — Dark Theme Stylesheet
   Generated: 2026-08-24
   Colors: bg #120d1a | accent-purple #8b5cf6 | accent-coral #f43f5e | text #fff
*/

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

:root {
  --bg: #120d1a;
  --bg-card: #1e162b;
  --bg-elev: #2d2150;
  --accent: #f43f5e;
  --accent-purple: #8b5cf6;
  --text: #ffffff;
  --text-muted: #cbd5e1;
  --stripe: #635BFF;
  --paypal: #003087;
  --paypal-hover: #0070E0;

  --border: #2d2150;
  --radius: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: #f43f5e; }

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

/* ── Container ────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Promo Banner ────────────────────────────────────────────── */
.promo-banner {
  background: linear-gradient(135deg, #8b5cf6, #f43f5e);
  color: #ffffff;
  text-align: center;
  padding: 0.5rem 1rem;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.4;
}
.promo-banner span {
  margin: 0 0.5rem;
}
.promo-banner .tier-sep {
  color: rgba(255,255,255,0.5);
}
@media (max-width: 768px) {
  .promo-banner {
    font-size: 0.75rem;
    padding: 0.4rem 0.5rem;
  }
  .promo-banner span {
    display: inline-block;
    margin: 0 0.25rem;
  }
}
@media (max-width: 480px) {
  .promo-banner {
    font-size: 0.65rem;
    letter-spacing: -0.3px;
  }
}

/* ── Navigation ───────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18, 13, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--accent);
  color: var(--text) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
}
.nav-cta:hover { background: #f43f5e; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  text-align: center;
  padding: 4rem 1.5rem 3rem;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-card) 100%);
}
.hero h1 {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}
.hero h1 span { color: var(--accent); }
.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
}
.hero-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.hero-badge strong { color: var(--text); }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.btn-primary { background: linear-gradient(135deg, #8b5cf6, #f43f5e); color: var(--text); }
.btn-primary:hover { background: linear-gradient(135deg, #7c3aed, #ec4899); color: var(--text); }
.btn-stripe { background: #635BFF; color: #fff; }
.btn-stripe:hover { background: #4f46e0; color: #fff; }
.btn-paypal { background: #0070E0; color: #fff; }
.btn-paypal:hover { background: #005FCC; color: #fff; }

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.btn-outline:hover { background: var(--accent); color: var(--text); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.125rem; }

/* ── Section ──────────────────────────────────────────────────── */
.section { padding: 4rem 0; }
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.125rem;
}

/* ── Product Grid ─────────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  border-color: var(--accent);
}
.product-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.product-card .subtitle {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.product-card .bullets {
  list-style: none;
  margin-bottom: 1rem;
  flex: 1;
}
.product-card .bullets li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.35rem;
}
.product-card .bullets li::before {
  content: '✓';
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: 700;
}
.product-card .price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 1rem;
}
.product-card .price .original {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 400;
}
.product-card .btn { width: 100%; }
.product-card-actions {
  display: flex;
  gap: 0.5rem;
}
.product-card-actions .btn { flex: 1; font-size: 0.875rem; padding: 0.6rem 0.75rem; }

/* ── Category Grid ────────────────────────────────────────────── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  text-align: center;
}
.category-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.category-card .cat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.category-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.category-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.category-card .cat-count {
  display: inline-block;
  background: var(--bg-elev);
  border-radius: 50px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.category-card .btn-outline { font-size: 0.875rem; padding: 0.5rem 1.25rem; }

/* ── How It Works ─────────────────────────────────────────────── */
.how-it-works {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.step {
  position: relative;
}
.step .step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1rem;
}
.step h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.step p { color: var(--text-muted); font-size: 0.875rem; }

/* ── Video Container ──────────────────────────────────────────── */
.video-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.video-container video {
  width: 100%;
  display: block;
}
.video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--bg-card);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 900px;
  margin: 0 auto 3rem;
}

/* ── Bundle Card ──────────────────────────────────────────────── */
.bundle-card {
  background: linear-gradient(135deg, var(--bg-elev) 0%, var(--bg-card) 100%);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.bundle-card .bundle-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--text);
  border-radius: 50px;
  padding: 0.3rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.bundle-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.bundle-card .bundle-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  margin: 1rem 0;
}
.bundle-card .bundle-savings {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.bundle-card .bundle-savings strong { color: var(--lemon); }
.bundle-payment-options {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Email Capture Form ───────────────────────────────────────── */
.email-capture {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.email-capture h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.email-capture h3 span { color: var(--accent); }
.email-capture p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.email-capture-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.email-capture-form select,
.email-capture-form input[type="email"] {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
}
.email-capture-form select {
  flex: 1 1 100%;
  min-width: 250px;
}
.email-capture-form input[type="email"] {
  flex: 2;
  min-width: 200px;
}
.email-capture-form select:focus,
.email-capture-form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.2);
}
.email-capture-form .btn {
  flex: 1;
  min-width: 150px;
}
.email-capture-form select option {
  background: var(--bg);
  color: var(--text);
}

/* ── Footer ───────────────────────────────────────────────────── */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand h4 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.footer-brand h4 span { color: var(--accent); }
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.875rem;
  max-width: 300px;
}
.footer-col h5 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: var(--text);
}
.footer-col ul {
  list-style: none;
}
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  color: var(--text-muted);
  font-size: 0.875rem;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8125rem;
}
.footer-payment-badges {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}
.payment-badge {
  border-radius: 4px;
  padding: 0.25rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
}
.payment-badge.stripe { background: var(--stripe); color: #fff; }
.payment-badge.paypal { background: #0070E0; color: #fff; }


/* ── Breadcrumb ───────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb .sep { opacity: 0.5; }
.breadcrumb .current { color: var(--text); }

/* ── Page Header (Category) ───────────────────────────────────── */
.page-header {
  text-align: center;
  padding: 3rem 1.5rem 2rem;
}
.page-header h1 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}
.page-header p {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ── Responsive: Tablet (1024px) ──────────────────────────────── */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .how-it-works { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 2.25rem; }
  .page-header h1 { font-size: 1.875rem; }
}

/* ── Responsive: Mobile (768px) ───────────────────────────────── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 1rem;
  }
  .nav-links.active {
    display: flex;
  }
  .hamburger { display: flex; }

  .hero { padding: 2.5rem 1rem 2rem; }
  .hero h1 { font-size: 1.75rem; }
  .hero p { font-size: 1rem; }

  .product-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .how-it-works { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .section { padding: 2.5rem 0; }
  .section-header h2 { font-size: 1.5rem; }

  .page-header h1 { font-size: 1.5rem; }
  .page-header p { font-size: 1rem; }

  .email-capture { padding: 1.5rem; }
  .email-capture-form { flex-direction: column; }
  .email-capture-form select,
  .email-capture-form input[type="email"],
  .email-capture-form .btn {
    width: 100%;
    flex: 1 1 100%;
  }

  .bundle-card { padding: 1.5rem; }
  .bundle-card .bundle-price { font-size: 2.25rem; }
  .bundle-payment-options { flex-direction: column; }
  .bundle-payment-options .btn { width: 100%; }

  .product-card-actions { flex-direction: column; }
}

/* ── Product Page Layout ───────────────────────────────────────── */
.product-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
}
.product-main {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
}
.product-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.product-content h1 {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1rem;
}
.price-display {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.price-display .price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}
.price-note {
  font-size: 0.875rem;
  color: var(--text-muted);
}
.product-screenshot {
  margin-bottom: 2rem;
}
.screenshot-placeholder {
  background: var(--bg);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
}
.screenshot-placeholder img {
  max-width: 100%;
  border-radius: 8px;
}
.sales-copy {
  margin-bottom: 2rem;
}
.copy-section {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: var(--text-muted);
}
.copy-section strong {
  color: var(--text);
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
}
.feature-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}
.feature-list li::before {
  content: '\2713';
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: 700;
}
.trust-badge {
  background: rgba(139, 92, 246, 0.1);
  border-left: 3px solid var(--accent-purple);
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}
.trust-badge p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}
.voice-search-qa {
  margin: 1.5rem 0;
  padding: 1rem;
  background: var(--bg);
  border-radius: 8px;
}
.voice-search-qa h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.voice-search-qa p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ── Checkout Section ─────────────────────────────────────────── */
.checkout-section {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.checkout-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.checkout-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.checkout-buttons .btn {
  flex: 1;
  min-width: 200px;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  text-align: center;
  border-radius: 8px;
}
.checkout-buttons .paypal-form {
  flex: 1;
  min-width: 200px;
  margin: 0;
}
.checkout-buttons .paypal-form .btn {
  width: 100%;
}
.checkout-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* ── Freebie Sidebar ──────────────────────────────────────────── */
.freebie-sidebar {
  position: sticky;
  top: 80px;
}
.freebie-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.freebie-form-wrapper h2 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.freebie-intro {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.freebie-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.freebie-form label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
}
.freebie-form select,
.freebie-form input[type="email"] {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
  color: var(--text);
  font-size: 0.875rem;
  font-family: inherit;
}
.freebie-form select:focus,
.freebie-form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
}
.freebie-form .btn {
  width: 100%;
  padding: 0.7rem;
  font-size: 0.9rem;
}
.freebie-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.5rem;
}

/* ── Related Products ────────────────────────────────────────── */
.related-products {
  margin-top: 2rem;
}
.related-products h2 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.related-card {
  display: block;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.85rem;
  transition: border-color var(--transition), transform var(--transition);
}
.related-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.related-card h3 {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.35rem;
  color: var(--text);
}
.related-price {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
}

/* ── Tech FAQ Section ────────────────────────────────────────── */
.tech-faq-section {
  max-width: 800px;
  margin: 2rem auto 0;
  padding: 0 1.5rem;
}
.tech-faq-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.tech-faq-section details {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.5rem;
}
.tech-faq-section summary {
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
}
.tech-faq-section details[open] summary {
  margin-bottom: 0.5rem;
}
.tech-faq-section p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── Site Footer (injected) ──────────────────────────────────── */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 2rem 1.5rem;
  margin-top: 3rem;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.footer-links a {
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.footer-links a:hover {
  color: var(--text);
}
.footer-brand {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ── Product Page Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .product-main {
    grid-template-columns: 1fr;
  }
  .freebie-sidebar {
    position: static;
  }
}
@media (max-width: 768px) {
  .product-content {
    padding: 1.25rem;
  }
  .product-content h1 {
    font-size: 1.375rem;
  }
  .price-display .price {
    font-size: 1.5rem;
  }
  .checkout-buttons {
    flex-direction: column;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}


/* ── Sale Pricing ─────────────────────────────────────────────── */
.price-original {
  text-decoration: line-through;
  color: #64748b;
  font-size: 1.125rem;
  font-weight: 400;
  margin-right: 0.5rem;
}
.price-sale {
  font-size: 2rem;
  font-weight: 800;
  color: #2dd4bf;
  text-shadow: 0 0 12px rgba(45, 212, 191, 0.3);
}
.sale-badge {
  display: inline-block;
  background: #2dd4bf;
  color: #120d1a;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .price-sale { font-size: 1.5rem; }
  .price-original { font-size: 1rem; }
  .sale-countdown { padding: 10px 12px; }
  .countdown-label { font-size: 0.75rem; }
  .count-num { font-size: 1.1rem; }
  .count-unit { padding: 4px 8px; min-width: 42px; }
  .count-label { font-size: 0.6rem; }
  .count-sep { font-size: 1.1rem; }
  .cross-sell { padding: 16px; }
  .cross-sell h3 { font-size: 1rem; }
  .cross-sell-tier { min-width: 100%; }
  .guarantee-badge { flex-direction: column; text-align: center; gap: 8px; padding: 16px; }
  .exit-popup { padding: 25px 20px; }
  .exit-popup h2 { font-size: 1.2rem; }
  .exit-form { flex-direction: column; }
  .exit-form button, .exit-btn-grab { width: 100%; text-align: center; }
  .nav-links { flex-wrap: wrap; gap: 6px; }
  .nav-links a { font-size: 0.8rem; }
  .quick-start-guide { padding: 16px; }
  .quick-start-guide h3 { font-size: 1rem; }
  .video-placeholder-box .play-icon { font-size: 2rem; }
  .about-section { padding: 20px 16px; }
  .about-hero h1 { font-size: 1.5rem; }
  .about-stat .stat-num { font-size: 1.6rem; }
  .about-stat { min-width: 90px; }
}

/* ── Print ────────────────────────────────────────────────────── */
@media print {
  body { background: #fff; color: #000; }
  .navbar, .hamburger, .footer, .video-container, .hero-badges,
  .email-capture, .bundle-payment-options, .product-card-actions,
  .btn, .nav-cta { display: none !important; }
  .hero { background: none; padding: 1rem; }
  .hero h1, .page-header h1 { color: #000; font-size: 1.5rem; }
  .hero p, .page-header p { color: #333; }
  .product-card, .category-card, .bundle-card, .email-capture {
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: none;
    break-inside: avoid;
  }
  .product-card .price, .bundle-card .bundle-price { color: #000; }
  .product-card .bullets li::before { color: #000; }
  .section { padding: 1rem 0; }
  .container { max-width: 100%; }
}