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

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --card: #161616;
  --border: #222222;
  --text: #ffffff;
  --text-muted: #d4d4d4;
  --text-dim: #a0a0a0;
  --cyan: #00e5ff;
  --cyan-dim: #0a3d4a;
  --red: #ff4444;
  --purple: #a855f7;
  --green: #22c55e;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', 'Fira Code', monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--cyan); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .8; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 720px; margin: 0 auto; padding: 0 2rem; }

/* === Nav === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  transition: background .3s, backdrop-filter .3s;
}
.nav.scrolled { background: rgba(10,10,10,.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: .875rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { font-weight: 700; font-size: 1.25rem; color: var(--text); }
.logo:hover { opacity: 1; }
.dot { color: var(--cyan); }
.nav-links { display: flex; gap: 2.5rem; }
.nav-links a { color: var(--text-muted); font-size: .875rem; font-weight: 500; transition: color .2s; padding: .25rem 0; border-bottom: 2px solid transparent; }
.nav-links a:hover, .nav-links a.active { color: var(--text); opacity: 1; border-bottom-color: var(--cyan); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--text-muted); margin: 5px 0; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 640px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(10,10,10,.95); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 1rem 1.5rem; border-top: 1px solid var(--border); border-bottom: none; min-height: 48px; display: flex; align-items: center; }
}

/* === Buttons === */
.btn {
  display: inline-block; padding: .85rem 2rem; border-radius: 6px;
  font-weight: 600; font-size: .9rem; transition: all .2s; border: 1px solid transparent;
  min-height: 48px; line-height: 1.4;
}
.btn-primary { background: var(--cyan); color: var(--black); box-shadow: 0 2px 8px rgba(0,229,255,.2); }
.btn-primary:hover { opacity: .9; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,229,255,.3); }
.btn-secondary { background: transparent; color: var(--text); border-color: var(--border); }
.btn-secondary:hover { border-color: var(--text-muted); transform: translateY(-1px); }
.btn-lg { padding: 1.1rem 2.75rem; font-size: 1.15rem; }

/* === Hero === */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 6rem 1.5rem 4rem;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,229,255,.04) 0%, transparent 60%);
}
.hero-tag {
  font-family: var(--mono); font-size: .8rem; color: var(--cyan);
  text-transform: uppercase; letter-spacing: .15em; margin-bottom: 1.5rem;
}
.hero-title { font-size: clamp(3rem, 8vw, 5.5rem); font-weight: 700; line-height: 1.1; margin-bottom: 1.5rem; }
.hero-subtitle { font-size: 1.2rem; color: var(--text); max-width: 600px; margin: 0 auto 2.5rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* === Sections === */
.section { padding: 6rem 2rem; border-top: 1px solid var(--border); }
.section:first-of-type { border-top: none; }
.section-alt { background: #131313; }
.section-title { font-size: 2.25rem; font-weight: 700; text-align: center; margin-bottom: .75rem; color: var(--text); }
.section-subtitle { color: var(--text-muted); text-align: center; max-width: 560px; margin: 0 auto 3rem; }

/* === Project Cards === */
.project-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.project-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 12px;
  padding: 2.5rem; transition: border-color .3s, transform .3s, background .3s; position: relative;
  border-left: 4px solid var(--border);
}
.project-card:hover { transform: translateY(-4px); background: linear-gradient(135deg, var(--card) 0%, rgba(255,255,255,.02) 100%); }
.project-card[data-color="red"] { border-left-color: var(--red); }
.project-card[data-color="red"]:hover { border-color: var(--red); }
.project-card[data-color="purple"] { border-left-color: var(--purple); }
.project-card[data-color="purple"]:hover { border-color: var(--purple); }
.project-card[data-color="cyan"] { border-left-color: var(--cyan); }
.project-card[data-color="cyan"]:hover { border-color: var(--cyan); }
.project-card[data-color="green"] { border-left-color: var(--green); }
.project-card[data-color="green"]:hover { border-color: var(--green); }
.project-card[data-color="crimson"] { border-left-color: #dc2626; }
.project-card[data-color="crimson"]:hover { border-color: #dc2626; }
.project-card[data-color="blue"] { border-left-color: #3b82f6; }
.project-card[data-color="blue"]:hover { border-color: #3b82f6; }
.project-icon { font-size: 2rem; margin-bottom: 1rem; }
.project-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: .25rem; color: var(--text); }
.project-tagline { font-family: var(--mono); font-size: .8rem; color: var(--cyan); margin-bottom: 1rem; }
.project-card p { color: var(--text-muted); font-size: .925rem; line-height: 1.65; }
.project-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.project-tags span {
  font-size: .75rem; padding: .25rem .6rem; border-radius: 4px;
  background: rgba(255,255,255,.05); color: var(--text-muted); border: 1px solid var(--border);
}
.project-status {
  position: absolute; top: 1.25rem; right: 1.25rem;
  font-size: .7rem; font-weight: 600; padding: .25rem .75rem; border-radius: 20px;
  text-transform: uppercase; letter-spacing: .05em;
}
.status-active { background: rgba(34,197,94,.15); color: var(--green); border: 1px solid rgba(34,197,94,.3); }
.status-dev { background: rgba(0,229,255,.15); color: var(--cyan); border: 1px solid rgba(0,229,255,.3); }
.status-research { background: rgba(168,85,247,.15); color: var(--purple); border: 1px solid rgba(168,85,247,.3); }

/* === Principles === */
.principles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.principle h3 { font-size: 1.1rem; margin-bottom: .75rem; color: var(--text); }
.principle p { color: var(--text-muted); font-size: .925rem; line-height: 1.65; }

/* === Privacy === */
.privacy-content h3 { font-size: 1.1rem; margin: 2rem 0 .75rem; color: var(--text); }
.privacy-content h3:first-child { margin-top: 0; }
.privacy-content p { color: var(--text-muted); font-size: .925rem; line-height: 1.7; margin-bottom: .75rem; }
.privacy-content strong { color: var(--text); }
.privacy-date { margin-top: 2rem; font-size: .8rem; color: var(--text-muted); font-style: italic; }

/* === Newsletter Signup === */
.newsletter-box {
  max-width: 480px; margin: 0 auto;
  background: var(--card); border: 1px solid var(--border); border-radius: 12px;
  padding: 2rem; text-align: center;
}
.newsletter-form { display: flex; flex-direction: column; gap: .75rem; }
.newsletter-input-group { display: flex; gap: .5rem; }
.newsletter-input {
  flex: 1; padding: .75rem 1rem; border: 1px solid var(--border); border-radius: 6px;
  background: var(--black); color: var(--text); font-size: .95rem; font-family: var(--font);
  transition: border-color .2s;
}
.newsletter-input:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 2px rgba(0,229,255,.15); }
.newsletter-input::placeholder { color: var(--text-dim); }
.newsletter-btn { white-space: nowrap; padding: .75rem 1.5rem; }
.newsletter-btn:disabled { opacity: .6; cursor: wait; }
.newsletter-note { font-size: .8rem; color: var(--text-muted); margin-top: .75rem; }
.newsletter-note a { color: var(--cyan); font-size: .8rem; }
.newsletter-success { color: var(--green); font-weight: 500; }
.newsletter-error { color: var(--red); font-weight: 500; }
@media (max-width: 480px) {
  .newsletter-input-group { flex-direction: column; }
  .newsletter-btn { width: 100%; }
}

/* === Contact === */
.contact-links { margin-top: 2rem; display: flex; gap: 2rem; justify-content: center; }
.contact-links a { color: var(--text-muted); font-size: .9rem; }

/* === Footer === */
.footer { border-top: 1px solid var(--border); padding: 2rem 1.5rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-brand { font-weight: 700; font-size: 1rem; }
.footer-copy { font-size: .8rem; color: var(--text-muted); }

/* === Blog index (minimal) === */
.blog-list { list-style: none; }
.blog-list li { padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.blog-list li:last-child { border-bottom: none; }
.blog-list a { color: var(--text); font-weight: 600; font-size: 1.1rem; }
.blog-list a:hover { color: var(--cyan); opacity: 1; }
.blog-list .blog-date { font-size: .8rem; color: var(--text-dim); font-family: var(--mono); margin-top: .25rem; }
.blog-list .blog-excerpt { color: var(--text-muted); font-size: .9rem; margin-top: .5rem; }

/* === Responsive === */
@media (max-width: 640px) {
  .hero { padding: 5rem 1rem 3rem; }
  .hero-title { font-size: 2.5rem; }
  .section { padding: 4rem 1rem; }
  .project-grid { grid-template-columns: 1fr; }
  .btn { min-height: 48px; }
  .project-card { padding: 2rem 1.5rem; }
}

/* === Utility Classes === */
.divider { height: 1px; background: linear-gradient(to right, transparent, var(--border), transparent); margin: 3rem 0; }
.content-box { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 2rem; }
.card-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--cyan-dim); border-radius: 12px; margin-bottom: 1rem; }

/* === Quiz CTA Section === */
.section-quiz-cta {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.08) 0%, rgba(0, 229, 255, 0.03) 100%);
  border-top: 1px solid rgba(0, 229, 255, 0.2);
  border-bottom: 1px solid rgba(0, 229, 255, 0.2);
}

.quiz-cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.quiz-cta-badge {
  display: inline-block;
  background: rgba(0, 229, 255, 0.15);
  color: var(--cyan);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 229, 255, 0.3);
}

.quiz-cta-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.quiz-cta-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.quiz-cta-content .btn {
  display: inline-flex;
  align-items: center;
}

/* ============================================================
   ENHANCED STYLES — Professional polish & page-specific classes
   ============================================================ */

/* === Icon System === */
.icon-inline { width: 1em; height: 1em; vertical-align: -0.125em; display: inline-block; filter: brightness(0) invert(1); }
.project-icon .icon-inline { width: 2rem; height: 2rem; }
.icon { display: flex; align-items: center; justify-content: center; font-size: 2rem; margin-bottom: 1rem; }
.icon .icon-inline { width: 2.5rem; height: 2.5rem; }

/* === Section Enhancements === */
.section-bordered { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-glow { background: radial-gradient(ellipse at 50% 0%, rgba(0,229,255,.04) 0%, transparent 60%); }

/* === Nav Dropdowns === */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  color: var(--text-muted); font-size: .875rem; font-weight: 500; cursor: pointer;
  background: none; border: none; font-family: var(--font); transition: color .2s;
  display: flex; align-items: center; gap: .25rem;
}
.nav-dropdown-toggle:hover { color: var(--text); }
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0; min-width: 180px;
  background: rgba(22,22,22,.95); backdrop-filter: blur(12px);
  border: 1px solid var(--border); border-radius: 8px; padding: .5rem 0;
  margin-top: .5rem; z-index: 101;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: .5rem 1rem; color: var(--text-muted);
  font-size: .85rem; transition: color .2s, background .2s;
}
.nav-dropdown-menu a:hover { color: var(--text); background: rgba(255,255,255,.05); }

/* === Product Pages === */
.product-hero {
  padding: 8rem 1.5rem 4rem; text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,229,255,.06) 0%, transparent 50%);
}
.product-hero h1 { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 700; margin-bottom: 1rem; }
.product-hero .subtitle {
  font-size: 1.2rem; color: var(--text-muted); max-width: 700px;
  margin: 0 auto 2rem; line-height: 1.7;
}
.product-badge {
  display: inline-block; background: rgba(0,229,255,.15); color: var(--cyan);
  padding: .4rem 1rem; border-radius: 20px; font-size: .75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.5rem;
  border: 1px solid rgba(0,229,255,.3);
}
.product-price { font-size: 3rem; font-weight: 700; color: var(--cyan); margin-bottom: .5rem; }
.product-price-note { font-size: .9rem; color: var(--text-muted); margin-bottom: 2rem; }

/* === Pricing === */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem; max-width: 1200px; margin: 0 auto;
}
.pricing-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 12px;
  padding: 2.5rem; position: relative; transition: border-color .3s, transform .3s;
}
.pricing-card:hover { transform: translateY(-4px); border-color: var(--cyan); }
.pricing-card.featured { border-color: var(--cyan); }
.pricing-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: .5rem; }
.pricing-card .price { font-size: 2.5rem; font-weight: 700; color: var(--cyan); margin: 1rem 0; }
.pricing-card .price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.pricing-card ul { list-style: none; margin: 1.5rem 0; }
.pricing-card li {
  position: relative; padding: .5rem 0 .5rem 1.5rem;
  color: var(--text-muted); font-size: .925rem;
}
.pricing-card li::before {
  content: ''; position: absolute; left: 0; top: .75rem;
  width: .5rem; height: .5rem; border-radius: 50%; background: var(--cyan);
}

/* === Feature Tables === */
.feature-table { width: 100%; border-collapse: collapse; margin: 2rem 0; }
.feature-table th, .feature-table td {
  padding: .75rem 1rem; text-align: left;
  border-bottom: 1px solid var(--border); font-size: .925rem;
}
.feature-table th { color: var(--text); font-weight: 600; background: var(--dark); }
.feature-table td { color: var(--text-muted); }
.feature-table .check { color: var(--green); text-align: center; }
.feature-table .cross { color: var(--red); text-align: center; opacity: .5; }

/* === Trust & Testimonials === */
.trust-bar { display: flex; justify-content: center; gap: 3rem; padding: 2rem 0; flex-wrap: wrap; }
.trust-stat { text-align: center; }
.trust-stat .number { font-size: 2rem; font-weight: 700; color: var(--cyan); }
.trust-stat .label { font-size: .8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; }

/* === Forms === */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: .875rem; font-weight: 500;
  margin-bottom: .5rem; color: var(--text);
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: .75rem 1rem; border: 1px solid var(--border); border-radius: 6px;
  background: var(--black); color: var(--text); font-size: .95rem; font-family: var(--font);
  transition: border-color .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--cyan); box-shadow: 0 0 0 2px rgba(0,229,255,.15);
}
.form-textarea { min-height: 100px; resize: vertical; }

/* === Quiz / Assessment === */
.quiz-container { max-width: 720px; margin: 0 auto; }
.quiz-progress {
  height: 4px; background: var(--border); border-radius: 2px;
  margin-bottom: 2rem; overflow: hidden;
}
.quiz-progress-bar { height: 100%; background: var(--cyan); transition: width .3s; }
.quiz-question { margin-bottom: 2rem; }
.quiz-question h3 { font-size: 1.2rem; margin-bottom: 1rem; }
.quiz-option {
  display: block; padding: 1rem; margin-bottom: .5rem;
  border: 1px solid var(--border); border-radius: 8px;
  cursor: pointer; transition: border-color .2s, background .2s; color: var(--text-muted);
}
.quiz-option:hover { border-color: var(--cyan); }
.quiz-option.selected { border-color: var(--cyan); background: rgba(0,229,255,.05); }

/* === Resources === */
.resource-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 2rem; text-align: center;
}
.resource-card h3 { font-size: 1.2rem; margin-bottom: .75rem; }
.resource-card p { color: var(--text-muted); font-size: .925rem; margin-bottom: 1.5rem; }
.dl-check { color: var(--green); font-size: 1.2rem; }

/* === Animations === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp .6s ease-out; }

/* === Enhanced Responsive (768px) === */
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .trust-bar { gap: 1.5rem; }
  .trust-stat .number { font-size: 1.5rem; }
  .product-hero { padding: 6rem 1rem 3rem; }
  .product-hero h1 { font-size: 2rem; }
}

/* === Enhanced Responsive (640px additions) === */
@media (max-width: 640px) {
  .nav-dropdown-menu { position: static; background: transparent; backdrop-filter: none; border: none; border-radius: 0; padding: 0; margin-top: 0; }
  .nav-dropdown-menu a { padding-left: 2.5rem; }
}

/* ============================================================
   PAGE-SPECIFIC STYLES — Extracted from inline <style> blocks
   ============================================================ */

/* === Pricing Page === */
.pricing-hero { padding: 120px 0 60px; text-align: center; background: linear-gradient(135deg, var(--black) 0%, var(--dark) 100%); }
    .pricing-hero h1 { font-size: 3rem; margin-bottom: 1rem; }
    .pricing-hero .tagline { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 2rem; }
    .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; padding: 4rem 0; }
    .pricing-card { background: var(--card); border-radius: 16px; padding: 2rem; border: 1px solid var(--border); transition: all 0.3s ease; }
    .pricing-card:hover { border-color: var(--cyan); transform: translateY(-4px); }
    .pricing-card.featured { border-color: var(--cyan); position: relative; }
    .pricing-card.featured::before { content: 'MOST POPULAR'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--cyan); color: var(--black); padding: 4px 16px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
    .pricing-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
    .pricing-card .price { font-size: 2.5rem; font-weight: 700; color: var(--cyan); margin: 1rem 0; }
    .pricing-card .price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
    .pricing-card .duration { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }
    .pricing-card ul { list-style: none; padding: 0; margin: 0 0 2rem 0; }
    .pricing-card li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; color: var(--text-muted); }
    .pricing-card li::before { content: '✓'; position: absolute; left: 0; color: var(--cyan); }
    .pricing-card .cta { display: block; text-align: center; padding: 1rem; background: var(--cyan); color: var(--black); border-radius: 8px; text-decoration: none; font-weight: 600; transition: background 0.2s; }
    .pricing-card .cta:hover { background: #00c4d9; }
    .pricing-card .cta.secondary { background: transparent; border: 1px solid var(--cyan); color: var(--cyan); }
    .pricing-card .cta.secondary:hover { background: rgba(0, 229, 255, 0.1); }
    .trust-section { background: var(--dark); padding: 4rem 0; text-align: center; }
    .trust-badges { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; margin-top: 2rem; }
    .trust-badge { text-align: center; }
    .trust-badge .icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
    .trust-badge .label { color: var(--text-muted); font-size: 0.9rem; }
    .faq-section { padding: 4rem 0; }
    .faq-item { max-width: 800px; margin: 0 auto 2rem; }
    .faq-q { font-weight: 600; font-size: 1.1rem; margin-bottom: 0.5rem; }
    .faq-a { color: var(--text-muted); line-height: 1.6; }
    /* NEW: Comparison Table Styles */
    .comparison-section { padding: 4rem 0; background: var(--dark); }
    .comparison-table { max-width: 900px; margin: 2rem auto 0; border-collapse: collapse; width: 100%; font-size: 0.9rem; }
    .comparison-table th, .comparison-table td { padding: 1rem; text-align: left; border-bottom: 1px solid var(--border); }
    .comparison-table th { background: var(--card); color: #fff; font-weight: 600; }
    .comparison-table td:first-child { color: var(--text-muted); font-weight: 500; }
    .comparison-table .highlight-col { background: rgba(0, 229, 255, 0.08); }
    .comparison-table .check { color: #10b981; font-weight: bold; }
    .comparison-table .cross { color: #ef4444; }
    .comparison-table .partial { color: #f59e0b; }
    /* NEW: Social Proof Styles */
    .social-proof-section { padding: 4rem 0; background: linear-gradient(135deg, var(--card) 0%, var(--dark) 100%); }
    .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }
    .testimonial-card { background: var(--card); border-radius: 12px; padding: 1.5rem; border: 1px solid var(--border); }
    .testimonial-card .quote { color: var(--text-muted); font-style: italic; line-height: 1.6; margin-bottom: 1rem; }
    .testimonial-card .author { color: var(--text-muted); font-size: 0.9rem; }
    .testimonial-card .author strong { color: #fff; }
    .stats-bar { display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap; margin: 3rem 0; }
    .stat-item { text-align: center; }
    .stat-item .number { font-size: 2.5rem; font-weight: 700; color: var(--cyan); }
    .stat-item .label { color: var(--text-muted); font-size: 0.9rem; }
    /* NEW: Why lilMONSTER Section */
    .why-section { padding: 4rem 0; }
    .why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 2rem; }
    .why-card { background: var(--card); border-radius: 12px; padding: 2rem; border: 1px solid var(--border); }
    .why-card .icon { font-size: 2rem; margin-bottom: 1rem; }
    .why-card h4 { font-size: 1.1rem; margin-bottom: 0.5rem; color: #fff; }
    .why-card p { color: var(--text-muted); line-height: 1.6; font-size: 0.95rem; }
    .guarantee-box { background: linear-gradient(135deg, rgba(0, 229, 255, 0.15) 0%, rgba(0, 229, 255, 0.03) 100%); border: 2px solid var(--cyan); border-radius: 16px; padding: 2rem; text-align: center; margin: 3rem auto; max-width: 600px; }
    .guarantee-box .badge { display: inline-block; background: var(--cyan); color: var(--black); padding: 0.25rem 1rem; border-radius: 20px; font-size: 0.8rem; font-weight: 600; margin-bottom: 1rem; }
    .guarantee-box h4 { font-size: 1.5rem; margin-bottom: 0.5rem; }
    .guarantee-box p { color: var(--text-muted); line-height: 1.6; }
    /* NEW: Urgency CTA */
    .cta-urgent { position: relative; overflow: hidden; }
    .cta-urgent::after { content: ''; position: absolute; top: 0; right: 0; width: 0; height: 0; border-style: solid; border-width: 0 30px 30px 0; border-color: transparent #f59e0b transparent transparent; }
    .urgency-badge { background: #f59e0b; color: #000; font-size: 0.7rem; padding: 2px 6px; border-radius: 4px; margin-left: 0.5rem; font-weight: 600; animation: pulse 2s infinite; }
    @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
    @media (max-width: 768px) { .pricing-hero h1 { font-size: 2rem; } .pricing-grid { padding: 2rem 1rem; } .comparison-table { font-size: 0.8rem; } .comparison-table th, .comparison-table td { padding: 0.75rem 0.5rem; } .stats-bar { gap: 2rem; } }

/* === Newsletter Page === */
.newsletter-hero {
      min-height: 70vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }
    .newsletter-card {
      background: var(--card, #161616); border: 1px solid var(--border, #222222);
      border-radius: 16px;
      padding: 3rem;
      max-width: 480px;
      width: 100%;
      box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
      text-align: center;
    }
    .newsletter-card h1 {
      color: #fff;
      font-size: 2rem;
      margin-bottom: 0.5rem;
      font-weight: 700;
    }
    .newsletter-card .subtitle {
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 2rem;
      line-height: 1.6;
    }
    .newsletter-card form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .newsletter-card input[type="email"] {
      padding: 1rem 1.25rem;
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      background: #fff;
      color: #2c3e50;
      transition: box-shadow 0.2s;
    }
    .newsletter-card input[type="email"]:focus {
      outline: none;
      box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4);
    }
    .newsletter-card input[type="email"]::placeholder {
      color: #95a5a6;
    }
    .newsletter-card button {
      padding: 1rem 2rem;
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      font-weight: 600;
      background: #2c3e50;
      color: #fff;
      cursor: pointer;
      transition: all 0.2s;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .newsletter-card button:hover {
      background: #34495e;
      transform: translateY(-2px);
    }
    .newsletter-card button:disabled {
      opacity: 0.7;
      cursor: not-allowed;
      transform: none;
    }
    .newsletter-footer {
      margin-top: 1.5rem;
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.7);
    }
    .newsletter-footer a {
      color: rgba(255, 255, 255, 0.9);
      text-decoration: underline;
    }
    .message {
      margin-top: 1rem;
      padding: 0.75rem;
      border-radius: 6px;
      font-size: 0.9rem;
    }
    .message.success {
      background: rgba(46, 204, 113, 0.2);
      color: #fff;
    }
    .message.error {
      background: rgba(231, 76, 60, 0.2);
      color: #fff;
    }
    .back-link {
      display: inline-block;
      margin-top: 2rem;
      color: var(--text-secondary);
      text-decoration: none;
    }
    .back-link:hover {
      color: var(--primary);
    }
    @media (max-width: 480px) {
      .newsletter-card {
        padding: 2rem 1.5rem;
      }
      .newsletter-card h1 {
        font-size: 1.5rem;
      }
    }

/* === Newsletter Thanks Page === */
.thanks-hero {
      min-height: 70vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }
    .thanks-card {
      background: var(--card, #161616); border: 1px solid var(--border, #222222);
      border-radius: 16px;
      padding: 3rem;
      max-width: 480px;
      width: 100%;
      box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
      text-align: center;
    }
    .thanks-icon {
      font-size: 4rem;
      margin-bottom: 1rem;
    }
    .thanks-card h1 {
      color: #fff;
      font-size: 2rem;
      margin-bottom: 1rem;
      font-weight: 700;
    }
    .thanks-card p {
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }
    .thanks-card .btn {
      display: inline-block;
      padding: 1rem 2rem;
      background: #2c3e50;
      color: #fff;
      text-decoration: none;
      border-radius: 8px;
      font-weight: 600;
      transition: all 0.2s;
    }
    .thanks-card .btn:hover {
      background: #34495e;
      transform: translateY(-2px);
    }
    .status-info {
      margin-top: 1rem;
      padding: 0.75rem 1rem;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 6px;
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.8);
    }
    .status-info.already {
      background: rgba(241, 196, 15, 0.2);
    }
    .status-info.error {
      background: rgba(231, 76, 60, 0.2);
    }
    @media (max-width: 480px) {
      .thanks-card {
        padding: 2rem 1.5rem;
      }
      .thanks-card h1 {
        font-size: 1.5rem;
      }
    }

/* === Products Listing Page === */
.products-hero { padding: 120px 0 40px; background: linear-gradient(135deg, var(--black) 0%, var(--dark) 100%); text-align: center; }
    .products-hero h1 { font-size: 2.75rem; margin-bottom: 1rem; }
    .products-hero .tagline { font-size: 1.2rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 2rem; }
    .filter-bar { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; padding: 1.5rem 0; background: var(--dark); border-bottom: 1px solid var(--border); position: sticky; top: 60px; z-index: 10; }
    .filter-btn { padding: 8px 20px; background: var(--card); border: 1px solid var(--border); border-radius: 20px; color: var(--text-muted); cursor: pointer; font-size: 0.9rem; transition: all 0.2s; font-family: inherit; }
    .filter-btn:hover, .filter-btn.active { background: var(--cyan); color: var(--black); border-color: var(--cyan); font-weight: 600; }
    .products-section { padding: 3rem 0 4rem; }
    .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
    .product-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 1.75rem; transition: border-color 0.2s, transform 0.2s; display: flex; flex-direction: column; }
    .product-card:hover { border-color: var(--cyan); transform: translateY(-2px); }
    .product-card.premium { border-color: rgba(168, 85, 247, 0.3); }
    .product-card.premium:hover { border-color: #a855f7; }
    .product-card .card-badge { display: inline-block; font-size: 0.75rem; padding: 3px 10px; border-radius: 12px; font-weight: 500; margin-bottom: 0.75rem; width: fit-content; }
    .badge-security { background: rgba(0, 229, 255, 0.15); color: var(--cyan); }
    .badge-ai { background: rgba(168, 85, 247, 0.15); color: #a855f7; }
    .badge-compliance { background: rgba(34, 197, 94, 0.15); color: #22c55e; }
    .badge-premium { background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(0, 229, 255, 0.2)); color: #c084fc; }
    .badge-industry { background: rgba(251, 191, 36, 0.15); color: #fbbf24; }
    .product-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; line-height: 1.3; }
    .product-card h3 a { color: white; text-decoration: none; }
    .product-card h3 a:hover { color: var(--cyan); }
    .product-card .desc { color: var(--text-muted); font-size: 0.9rem; flex: 1; margin-bottom: 1rem; line-height: 1.5; }
    .product-card .card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
    .product-card .card-price { font-size: 1.5rem; font-weight: 700; color: var(--cyan); }
    .product-card.premium .card-price { color: #a855f7; }
    .product-card .card-price span { font-size: 0.8rem; color: var(--text-muted); font-weight: 400; }
    .product-card .card-link { padding: 8px 20px; background: transparent; border: 1px solid var(--cyan); color: var(--cyan); border-radius: 6px; text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: all 0.2s; }
    .product-card .card-link:hover { background: var(--cyan); color: var(--black); }
    .product-card.premium .card-link { border-color: #a855f7; color: #a855f7; }
    .product-card.premium .card-link:hover { background: #a855f7; color: white; }
    .featured-banner { background: linear-gradient(135deg, #1a0a2e 0%, var(--card) 100%); border: 1px solid rgba(168, 85, 247, 0.3); border-radius: 16px; padding: 2.5rem; max-width: 1100px; margin: 0 auto 2rem; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
    .featured-banner .fb-content { flex: 1; min-width: 300px; }
    .featured-banner h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }
    .featured-banner p { color: var(--text-muted); margin-bottom: 1rem; }
    .featured-banner .fb-cta { display: inline-block; padding: 12px 28px; background: #a855f7; color: white; border-radius: 8px; text-decoration: none; font-weight: 600; transition: background 0.2s; }
    .featured-banner .fb-cta:hover { background: #9333ea; }
    .featured-banner .fb-price { text-align: center; }
    .featured-banner .fb-price .price { font-size: 3rem; font-weight: 700; color: #a855f7; }
    .featured-banner .fb-price .sub { color: var(--text-muted); font-size: 0.9rem; }
    .bundle-cta { text-align: center; padding: 3rem 0; background: var(--dark); }
    .bundle-cta h2 { font-size: 1.75rem; margin-bottom: 0.75rem; }
    .bundle-cta p { color: var(--text-muted); max-width: 500px; margin: 0 auto 1.5rem; }
    .bundle-cta a { display: inline-block; padding: 14px 32px; background: var(--cyan); color: var(--black); border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 1.1rem; transition: background 0.2s; }
    .bundle-cta a:hover { background: #00c4d9; }
    @media (max-width: 768px) {
      .products-hero h1 { font-size: 2rem; }
      .featured-banner { flex-direction: column; text-align: center; }
      .products-grid { grid-template-columns: 1fr; }
    }

/* === Checklist Download Page === */
.dl-hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 6rem 1.5rem 4rem;
      background:
        radial-gradient(ellipse at 50% 0%, rgba(34,197,94,.06) 0%, transparent 50%);
    }
    .dl-card {
      max-width: 600px;
      width: 100%;
      text-align: center;
    }
    .dl-check {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: rgba(34,197,94,.15);
      margin-bottom: 1.5rem;
      font-size: 2.5rem;
    }
    .dl-h1 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: .5rem;
    }
    .dl-sub {
      color: var(--text-muted);
      font-size: 1.05rem;
      line-height: 1.7;
      margin-bottom: 2rem;
    }
    .dl-btn-group {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      align-items: center;
      margin-bottom: 3rem;
    }
    .dl-btn {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      padding: 1rem 2.5rem;
      border: none;
      border-radius: 8px;
      font-weight: 700;
      font-size: 1.05rem;
      cursor: pointer;
      font-family: var(--font);
      transition: opacity .2s, transform .2s;
      text-decoration: none;
    }
    .dl-btn-primary {
      background: var(--cyan);
      color: var(--black);
    }
    .dl-btn-primary:hover {
      opacity: .9;
      transform: translateY(-2px);
    }
    .dl-note {
      font-size: .85rem;
      color: var(--text-muted);
      margin-bottom: .5rem;
    }

    /* Upsell card */
    .dl-upsell {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 2.5rem 2rem;
      margin-top: 1rem;
      text-align: center;
    }
    .dl-upsell-tag {
      font-family: var(--mono);
      font-size: .75rem;
      color: var(--purple);
      text-transform: uppercase;
      letter-spacing: .15em;
      margin-bottom: .75rem;
    }
    .dl-upsell h2 {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: .5rem;
    }
    .dl-upsell p {
      color: var(--text-muted);
      font-size: .95rem;
      line-height: 1.65;
      margin-bottom: 1.5rem;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
    }
    .dl-upsell-features {
      list-style: none;
      padding: 0;
      margin: 0 0 1.5rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: .5rem .75rem;
      text-align: left;
      max-width: 420px;
      margin-left: auto;
      margin-right: auto;
    }
    .dl-upsell-features li {
      font-size: .875rem;
      color: var(--text-muted);
      display: flex;
      gap: .5rem;
      align-items: flex-start;
    }
    .dl-upsell-features .icon {
      color: var(--cyan);
      flex-shrink: 0;
    }
    .dl-btn-secondary {
      display: inline-block;
      padding: .85rem 2rem;
      border: 1px solid var(--border);
      border-radius: 8px;
      color: var(--text);
      font-weight: 600;
      font-size: .95rem;
      text-decoration: none;
      transition: border-color .2s, transform .2s;
    }
    .dl-btn-secondary:hover {
      border-color: var(--cyan);
      transform: translateY(-1px);
      opacity: 1;
    }

    @media (max-width: 640px) {
      .dl-hero { padding: 5rem 1rem 3rem; }
      .dl-upsell { padding: 2rem 1.25rem; }
      .dl-upsell-features { grid-template-columns: 1fr; }
      .dl-h1 { font-size: 1.5rem; }
    }

/* === Checklist Lead Magnet Page === */
/* === Lead Magnet Page Styles === */
    .lm-hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 6rem 1.5rem 4rem;
      background:
        radial-gradient(ellipse at 30% 0%, rgba(0,229,255,.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 100%, rgba(168,85,247,.04) 0%, transparent 50%);
    }
    .lm-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    .lm-tag {
      font-family: var(--mono);
      font-size: .8rem;
      color: var(--cyan);
      text-transform: uppercase;
      letter-spacing: .15em;
      margin-bottom: 1rem;
    }
    .lm-h1 {
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 700;
      line-height: 1.15;
      margin-bottom: 1rem;
    }
    .lm-h1 em {
      font-style: normal;
      color: var(--cyan);
    }
    .lm-subtitle {
      color: var(--text-muted);
      font-size: 1.1rem;
      line-height: 1.7;
      margin-bottom: 2rem;
    }

    /* Preview list */
    .lm-preview {
      list-style: none;
      margin: 0 0 2rem;
      padding: 0;
    }
    .lm-preview li {
      display: flex;
      align-items: flex-start;
      gap: .75rem;
      padding: .6rem 0;
      font-size: .95rem;
      color: var(--text-muted);
      border-bottom: 1px solid var(--border);
    }
    .lm-preview li:last-child {
      border-bottom: none;
    }
    .lm-preview .check {
      color: var(--green);
      font-size: 1rem;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .lm-preview strong {
      color: var(--text);
    }

    .lm-more {
      text-align: center;
      font-size: .85rem;
      color: var(--text-muted);
      margin-top: .5rem;
    }

    /* Form card */
    .lm-form-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 2.5rem 2rem;
      box-shadow: 0 20px 60px rgba(0,0,0,.4);
    }
    .lm-form-title {
      font-size: 1.35rem;
      font-weight: 700;
      margin-bottom: .5rem;
      text-align: center;
    }
    .lm-form-sub {
      color: var(--text-muted);
      font-size: .9rem;
      text-align: center;
      margin-bottom: 1.5rem;
      line-height: 1.6;
    }
    .lm-form {
      display: flex;
      flex-direction: column;
      gap: .75rem;
    }
    .lm-input {
      padding: .85rem 1rem;
      border: 1px solid var(--border);
      border-radius: 6px;
      background: var(--black);
      color: var(--text);
      font-size: .95rem;
      font-family: var(--font);
      transition: border-color .2s;
    }
    .lm-input:focus {
      outline: none;
      border-color: var(--cyan);
      box-shadow: 0 0 0 2px rgba(0,229,255,.15);
    }
    .lm-input::placeholder {
      color: var(--text-dim);
    }
    .lm-submit {
      padding: 1rem;
      border: none;
      border-radius: 6px;
      background: var(--cyan);
      color: var(--black);
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      font-family: var(--font);
      transition: opacity .2s, transform .2s;
      text-transform: uppercase;
      letter-spacing: .03em;
    }
    .lm-submit:hover {
      opacity: .9;
      transform: translateY(-1px);
    }
    .lm-submit:disabled {
      opacity: .6;
      cursor: wait;
      transform: none;
    }
    .lm-msg {
      padding: .6rem;
      border-radius: 6px;
      font-size: .9rem;
      text-align: center;
    }
    .lm-msg.success { background: rgba(34,197,94,.15); color: var(--green); }
    .lm-msg.error   { background: rgba(255,68,68,.15); color: var(--red); }
    .lm-form-note {
      font-size: .75rem;
      color: var(--text-muted);
      text-align: center;
      margin-top: .5rem;
    }
    .lm-form-note a {
      color: var(--cyan);
      font-size: .75rem;
    }

    /* Trust badges */
    .lm-trust {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      margin-top: 1.5rem;
      padding-top: 1.25rem;
      border-top: 1px solid var(--border);
    }
    .lm-trust-item {
      text-align: center;
    }
    .lm-trust-num {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--cyan);
      display: block;
      line-height: 1.2;
    }
    .lm-trust-label {
      font-size: .7rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .lm-hero { padding: 5rem 1rem 3rem; }
      .lm-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
      .lm-form-card { padding: 2rem 1.25rem; }
      .lm-trust { gap: 1rem; }
    }

/* === Security Assessment Tool === */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            min-height: 100vh;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .assessment-card {
            background: #ffffff;
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            overflow: hidden;
        }
        
        .header {
            background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
            color: white;
            padding: 40px;
            text-align: center;
        }
        
        .header h1 {
            font-size: 28px;
            margin-bottom: 10px;
        }
        
        .header p {
            opacity: 0.9;
            font-size: 16px;
        }
        
        .logo {
            font-size: 14px;
            opacity: 0.7;
            margin-bottom: 20px;
        }
        
        .progress-bar {
            background: rgba(255,255,255,0.2);
            height: 6px;
            border-radius: 3px;
            margin-top: 20px;
            overflow: hidden;
        }
        
        .progress-fill {
            background: #4ecca3;
            height: 100%;
            border-radius: 3px;
            transition: width 0.3s ease;
            width: 0%;
        }
        
        .content {
            padding: 40px;
        }
        
        .intro {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .intro h2 {
            color: #1a1a2e;
            margin-bottom: 15px;
        }
        
        .intro p {
            color: #666;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .question-container {
            display: none;
        }
        
        .question-container.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .question-number {
            color: #4ecca3;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .question-text {
            font-size: 18px;
            color: #1a1a2e;
            margin-bottom: 20px;
            font-weight: 500;
        }
        
        .options {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .option {
            display: flex;
            align-items: center;
            padding: 16px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .option:hover {
            border-color: #4ecca3;
            background: #f8fffe;
        }
        
        .option.selected {
            border-color: #4ecca3;
            background: #e8fff9;
        }
        
        .option input {
            display: none;
        }
        
        .option-radio {
            width: 20px;
            height: 20px;
            border: 2px solid #ccc;
            border-radius: 50%;
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .option.selected .option-radio {
            border-color: #4ecca3;
            background: #4ecca3;
        }
        
        .option.selected .option-radio::after {
            content: '';
            width: 8px;
            height: 8px;
            background: white;
            border-radius: 50%;
        }
        
        .option-text {
            flex: 1;
        }
        
        .option-label {
            font-weight: 500;
            color: #333;
        }
        
        .option-desc {
            font-size: 13px;
            color: #777;
            margin-top: 4px;
        }
        
        .nav-buttons {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
            gap: 15px;
        }
        
        .btn {
            padding: 14px 28px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .btn-secondary {
            background: #f0f0f0;
            color: #666;
        }
        
        .btn-secondary:hover {
            background: #e0e0e0;
        }
        
        .btn-primary {
            background: #4ecca3;
            color: white;
            flex: 1;
        }
        
        .btn-primary:hover {
            background: #3db892;
        }
        
        .btn-primary:disabled {
            background: #ccc;
            cursor: not-allowed;
        }
        
        /* Results Section */
        .results {
            display: none;
        }
        
        .results.active {
            display: block;
        }
        
        .score-circle {
            width: 180px;
            height: 180px;
            margin: 0 auto 30px;
            position: relative;
        }
        
        .score-circle svg {
            transform: rotate(-90deg);
        }
        
        .score-circle circle {
            fill: none;
            stroke-width: 12;
        }
        
        .score-bg {
            stroke: #e0e0e0;
        }
        
        .score-fill {
            stroke: #4ecca3;
            stroke-linecap: round;
            transition: stroke-dashoffset 1s ease;
        }
        
        .score-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
        }
        
        .score-number {
            font-size: 48px;
            font-weight: 700;
            color: #1a1a2e;
        }
        
        .score-label {
            font-size: 14px;
            color: #666;
        }
        
        .score-title {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .score-title h2 {
            color: #1a1a2e;
            margin-bottom: 8px;
        }
        
        .score-title p {
            color: #666;
        }
        
        .recommendations {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 25px;
        }
        
        .recommendations h3 {
            color: #1a1a2e;
            margin-bottom: 15px;
            font-size: 16px;
        }
        
        .recommendation-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .recommendation-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .rec-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            flex-shrink: 0;
            font-size: 12px;
        }
        
        .rec-icon.critical {
            background: #ffebee;
            color: #c62828;
        }
        
        .rec-icon.warning {
            background: #fff3e0;
            color: #ef6c00;
        }
        
        .rec-icon.good {
            background: #e8f5e9;
            color: #2e7d32;
        }
        
        .rec-text {
            flex: 1;
            font-size: 14px;
            color: #444;
        }
        
        .cta-box {
            background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            color: white;
        }
        
        .cta-box h3 {
            font-size: 20px;
            margin-bottom: 10px;
        }
        
        .cta-box p {
            opacity: 0.9;
            margin-bottom: 20px;
            font-size: 15px;
        }
        
        .cta-btn {
            display: inline-block;
            background: #4ecca3;
            color: white;
            padding: 14px 32px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.2s ease;
        }
        
        .cta-btn:hover {
            background: #3db892;
            transform: translateY(-2px);
        }
        
        .restart-btn {
            display: block;
            margin: 20px auto 0;
            background: transparent;
            color: #666;
            border: 2px solid #ddd;
            padding: 12px 24px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.2s ease;
        }
        
        .restart-btn:hover {
            border-color: #4ecca3;
            color: #4ecca3;
        }
        
        .category-breakdown {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 25px;
        }
        
        .category-item {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 10px;
        }
        
        .category-name {
            font-size: 13px;
            color: #666;
            margin-bottom: 5px;
        }
        
        .category-score {
            font-size: 20px;
            font-weight: 600;
            color: #1a1a2e;
        }
        
        @media (max-width: 600px) {
            .header {
                padding: 30px 20px;
            }
            
            .content {
                padding: 25px;
            }
            
            .category-breakdown {
                grid-template-columns: 1fr;
            }
            
            .score-circle {
                width: 150px;
                height: 150px;
            }
            
            .score-number {
                font-size: 40px;
            }
        }

/* === Product Detail Pages (Combined) === */
.product-hero { padding: 120px 0 60px; text-align: center; background: linear-gradient(135deg, var(--black) 0%, var(--dark) 100%); }

.product-hero .badge { display: inline-block; background: rgba(0, 229, 255, 0.15); color: var(--cyan); padding: 6px 16px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; margin-bottom: 1.5rem; }

.product-hero h1 { font-size: 2.75rem; margin-bottom: 1rem; line-height: 1.2; }

.product-hero .tagline { font-size: 1.2rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 2rem; }

.price-box { background: var(--card); border: 2px solid var(--cyan); border-radius: 16px; padding: 2.5rem; max-width: 500px; margin: 0 auto 2rem; text-align: center; }

.price-box .price { font-size: 3.5rem; font-weight: 700; color: #fff; }

.price-box .price span { font-size: 1.5rem; color: var(--cyan); }

.price-box .cta-btn { display: block; background: var(--cyan); color: var(--black); padding: 1.1rem 2rem; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 1.1rem; transition: all 0.2s; margin: 1.5rem 0 1rem; }

.price-box .cta-btn:hover { background: #00c4d9; transform: translateY(-2px); }

.price-box .guarantee { font-size: 0.9rem; color: var(--text-muted); }

.benefits-section { background: var(--dark); padding: 4rem 0; }

.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; max-width: 900px; margin: 2rem auto 0; }

.benefit-card { background: var(--card); border-radius: 12px; padding: 1.5rem; border: 1px solid var(--border); }

.benefit-card h4 { margin-bottom: 0.5rem; color: #fff; }

.benefit-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin: 0; }

.benefit-card .icon { font-size: 1.5rem; margin-bottom: 0.75rem; }

.section-title { font-size: 1.75rem; margin-bottom: 1rem; text-align: center; }

.includes-section { padding: 4rem 0; }

.includes-list { max-width: 700px; margin: 0 auto; list-style: none; padding: 0; }

.includes-list li { padding: 1rem 0; padding-left: 2rem; position: relative; color: var(--text-muted); border-bottom: 1px solid var(--border); font-size: 1.05rem; }

.includes-list li::before { content: '✓'; position: absolute; left: 0; color: var(--cyan); font-weight: bold; }

.final-cta { padding: 4rem 0; text-align: center; background: linear-gradient(135deg, rgba(0, 229, 255, 0.12) 0%, rgba(0, 229, 255, 0.04) 100%); }

.final-cta .cta-btn { display: inline-block; background: var(--cyan); color: var(--black); padding: 1.1rem 2.5rem; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 1.1rem; transition: all 0.2s; }

.final-cta .cta-btn:hover { background: #00c4d9; transform: translateY(-2px); }

@media (max-width: 768px) { .product-hero h1 { font-size: 2rem; } }

.price-box .value { color: #22c55e; font-size: 0.95rem; margin: 0.5rem 0 1rem; }

.price-box .value del { color: var(--text-dim); }

.cta-btn { display: block; width: 100%; padding: 1rem 2rem; background: var(--cyan); color: var(--black); border: none; border-radius: 8px; font-size: 1.1rem; font-weight: 600; cursor: pointer; text-decoration: none; transition: background 0.2s; margin-bottom: 1rem; }

.cta-btn:hover { background: #00c4d9; }

.guarantee { font-size: 0.9rem; color: var(--text-muted); }

.guarantee svg { width: 16px; height: 16px; vertical-align: middle; margin-right: 4px; }

.section-subtitle { color: var(--text); text-align: center; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }

.value-stack { background: var(--dark); padding: 4rem 0; }

.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; max-width: 900px; margin: 0 auto; }

.value-item { background: var(--card); border-radius: 12px; padding: 1.5rem; border: 1px solid var(--border); }

.value-item h4 { font-size: 1.1rem; margin-bottom: 0.5rem; display: flex; justify-content: space-between; align-items: center; }

.value-item .val { color: #22c55e; font-weight: 600; }

.value-item p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

.bonus-item { background: linear-gradient(135deg, var(--card) 0%, #1a1a2e 100%); border-color: var(--cyan); }

.bonus-item .badge { font-size: 0.7rem; padding: 2px 8px; background: var(--cyan); color: var(--black); border-radius: 4px; margin-left: 8px; }

.total-value { text-align: center; margin-top: 2rem; padding: 1.5rem; background: var(--card); border-radius: 12px; max-width: 600px; margin-left: auto; margin-right: auto; }

.total-value .old-price { color: var(--text-dim); text-decoration: line-through; font-size: 1.25rem; }

.total-value .new-price { color: var(--cyan); font-size: 2.5rem; font-weight: 700; margin: 0.5rem 0; }

.total-value .savings { color: #22c55e; }

.comparison-section { padding: 4rem 0; }

.comparison-table { max-width: 800px; margin: 0 auto; border-collapse: collapse; width: 100%; }

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

.comparison-table th { background: var(--card); color: var(--text-muted); font-weight: 500; }

.comparison-table td:first-child { color: var(--text-muted); }

.comparison-table .check { color: #22c55e; }

.comparison-table .cross { color: #ef4444; }

.comparison-table .highlight { background: rgba(0, 229, 255, 0.08); }

.comparison-table .price-cell { font-weight: 700; color: var(--cyan); }

.pain-section { background: var(--dark); padding: 4rem 0; }

.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; max-width: 900px; margin: 0 auto; }

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

.pain-item .icon { font-size: 2.5rem; margin-bottom: 1rem; }

.pain-item h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }

.pain-item p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

.proof-section { padding: 4rem 0; }

.proof-stats { display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap; margin-bottom: 2rem; }

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

.proof-stat .number { font-size: 2.5rem; font-weight: 700; color: var(--cyan); }

.proof-stat .label { color: var(--text-muted); font-size: 0.9rem; }

.testimonial { max-width: 600px; margin: 2rem auto; background: var(--card); border-radius: 12px; padding: 2rem; border-left: 4px solid var(--cyan); }

.testimonial p { color: var(--text-muted); font-style: italic; margin-bottom: 1rem; }

.testimonial .author { color: var(--text-muted); font-size: 0.9rem; }

.faq-section { background: var(--dark); padding: 4rem 0; }

.faq-item { max-width: 700px; margin: 0 auto 1.5rem; background: var(--card); border-radius: 8px; padding: 1.25rem 1.5rem; }

.faq-q { font-weight: 600; margin-bottom: 0.5rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }

.faq-q::after { content: '+'; color: var(--cyan); font-size: 1.25rem; }

.faq-item.open .faq-q::after { content: '-'; }

.faq-a { color: var(--text-muted); line-height: 1.6; display: none; }

.faq-item.open .faq-a { display: block; margin-top: 0.75rem; }

.final-cta .price-box { margin-bottom: 2rem; }

.trust-row { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-top: 1.5rem; }

.trust-item { color: var(--text-muted); font-size: 0.85rem; display: flex; align-items: center; gap: 0.5rem; }

.price-box .original-price { text-decoration: line-through; color: var(--text-dim); font-size: 1.1rem; }

.price-box .current-price { font-size: 3.5rem; font-weight: 700; color: #fff; margin: 0.5rem 0; }

.price-box .current-price span { font-size: 1.5rem; color: var(--cyan); }

.price-box .savings { color: #22c55e; font-weight: 600; margin-bottom: 1.5rem; }

.price-box .guarantee svg { width: 16px; height: 16px; vertical-align: middle; margin-right: 4px; }

.trust-bar { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-top: 1.5rem; padding: 1rem 0; border-top: 1px solid var(--border); }

.trust-bar span { color: var(--text-muted); font-size: 0.9rem; }

.trust-bar span strong { color: #fff; }

.value-stack .section-title { text-align: center; margin-bottom: 3rem; }

.value-stack .section-title h2 { font-size: 2rem; margin-bottom: 0.5rem; }

.value-stack .section-title p { color: var(--text-muted); }

.value-card { background: var(--card); border-radius: 12px; padding: 1.5rem; border: 1px solid var(--border); transition: all 0.3s ease; }

.value-card:hover { border-color: var(--cyan); transform: translateY(-2px); }

.value-card .card-value { color: var(--cyan); font-weight: 600; font-size: 0.9rem; margin-bottom: 0.5rem; }

.value-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }

.value-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1rem; }

.value-card ul { list-style: none; padding: 0; margin: 0; }

.value-card li { padding: 0.35rem 0; padding-left: 1.25rem; position: relative; color: var(--text-muted); font-size: 0.9rem; }

.value-card li::before { content: '✓'; position: absolute; left: 0; color: #22c55e; font-size: 0.8rem; }

.total-value .value-row { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid rgba(0, 229, 255, 0.15); }

.total-value .value-row:last-of-type { border-bottom: none; }

.total-value .value-row.your-price { padding-top: 1rem; margin-top: 0.5rem; }

.total-value .value-row.your-price span:last-child { color: #22c55e; font-weight: 700; font-size: 1.5rem; }

.comparison-section .section-title { text-align: center; margin-bottom: 3rem; }

.comparison-table tr:hover { background: rgba(0, 229, 255, 0.05); }

.who-section { background: var(--dark); padding: 5rem 0; }

.who-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; max-width: 900px; margin: 0 auto; }

.who-card { text-align: center; padding: 1.5rem; }

.who-card .icon { font-size: 2.5rem; margin-bottom: 1rem; }

.who-card h4 { margin-bottom: 0.5rem; }

.who-card p { color: var(--text-muted); font-size: 0.95rem; }

.guarantee-section { padding: 5rem 0; text-align: center; }

.guarantee-box { background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%); border: 1px solid #22c55e; border-radius: 16px; padding: 3rem; max-width: 700px; margin: 0 auto; }

.guarantee-box .shield { font-size: 4rem; margin-bottom: 1rem; }

.guarantee-box h3 { font-size: 1.5rem; margin-bottom: 1rem; }

.guarantee-box p { color: var(--text-muted); line-height: 1.7; }

.final-cta h2 { font-size: 2rem; margin-bottom: 1rem; }

.final-cta p { color: var(--text-muted); margin-bottom: 2rem; }

.product-hero .badge-premium { background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(0, 229, 255, 0.2)); color: #c084fc; border: 1px solid rgba(168, 85, 247, 0.3); }

.product-hero h1 .highlight { color: #a855f7; }

.price-box .most-popular { display: inline-block; background: #a855f7; color: white; font-size: 0.75rem; font-weight: 600; padding: 4px 12px; border-radius: 12px; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.05em; }

.timeline-section { padding: 4rem 0; }

.timeline { max-width: 700px; margin: 0 auto; position: relative; }

.timeline::before { content: ''; position: absolute; left: 30px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, #a855f7, var(--cyan)); }

.timeline-item { position: relative; padding-left: 70px; margin-bottom: 2.5rem; }

.timeline-item .week { position: absolute; left: 0; top: 0; width: 60px; height: 60px; background: var(--card); border: 2px solid #a855f7; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #a855f7; font-size: 0.8rem; text-align: center; line-height: 1.2; z-index: 1; }

.timeline-item h4 { font-size: 1.15rem; margin-bottom: 0.5rem; }

.timeline-item p { color: var(--text-muted); font-size: 0.9rem; margin: 0; line-height: 1.6; }

.timeline-item ul { color: var(--text-muted); font-size: 0.9rem; margin: 0.5rem 0 0; padding-left: 1.25rem; }

.timeline-item ul li { margin-bottom: 0.25rem; }

.curriculum-section { padding: 4rem 0; }

.curriculum-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; max-width: 900px; margin: 0 auto; }

.curriculum-item { background: var(--card); border-radius: 8px; padding: 1.25rem; border: 1px solid var(--border); }

.curriculum-item .month { color: var(--cyan); font-weight: 600; font-size: 0.85rem; margin-bottom: 0.25rem; }

.curriculum-item h4 { font-size: 1rem; margin-bottom: 0.25rem; }

.curriculum-item p { color: var(--text-muted); font-size: 0.8rem; margin: 0; }

/* === Breadcrumb === */
.breadcrumb { padding: 5.5rem 1.5rem .5rem; font-size: .85rem; color: var(--text-dim); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb .sep { margin: 0 .5rem; color: var(--text-dim); }

/* === Product Hero Icon === */
.product-hero-icon { margin-bottom: 1.5rem; }

/* === Products Index Page (Enhanced) === */
.hero-icon { margin-bottom: 1.5rem; }
.fb-icon { flex-shrink: 0; }
.fb-content { flex: 1; min-width: 280px; }
.fb-content .card-badge { display: inline-flex; align-items: center; gap: .4rem; font-size: .75rem; font-weight: 600; color: var(--cyan); background: rgba(0,229,255,.1); padding: .35rem .75rem; border-radius: 4px; margin-bottom: 1rem; }
.fb-content h2 { font-size: 1.6rem; font-weight: 700; color: var(--text); margin-bottom: .75rem; }
.fb-content p { color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }
.fb-cta { color: var(--cyan); font-weight: 600; font-size: .95rem; }
.fb-price { text-align: center; flex-shrink: 0; }
.fb-price .price { font-size: 3rem; font-weight: 700; color: var(--text); }
.fb-price .sub { font-size: .8rem; color: var(--text-dim); margin-top: .25rem; }
.product-card .card-icon { margin-bottom: 1rem; }

