/* SmartGuard HQ - Style System */
:root {
  --white: #fff;
  --text: #1a1a1a;
  --teal: #0d7377;
  --orange: #e85d24;
  --light-bg: #f5f5f0;
  --green: #2d8a4e;
  --red: #c0392b;
  --border: #e0e0e0;
  --font-heading: 'Source Serif 4', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.75rem; margin-top: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: 1.35rem; margin-top: 2rem; margin-bottom: 0.75rem; }

p { margin-bottom: 1.25rem; }

a { color: var(--teal); text-decoration: none; }
a:hover { color: #095456; }

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

.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }

/* ── NAV ── */
.site-nav {
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 100;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
}
.nav-logo span { color: var(--teal); }

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

.hamburger {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
  padding: 0.25rem;
}

.mobile-menu {
  display: none;
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.25rem;
  background: var(--white);
}
.mobile-menu.active { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ── HERO ── */
.hero {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--border);
}
.hero h1 {
  font-size: 2.5rem;
  max-width: 650px;
  margin-bottom: 1.25rem;
}
.hero p {
  font-size: 1.15rem;
  max-width: 550px;
  color: #555;
  margin-bottom: 2rem;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: var(--white);
  padding: 0.85rem 1.75rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-primary:hover { background: #cf5220; color: var(--white); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--teal);
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--teal);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.btn-secondary:hover { background: var(--teal); color: var(--white); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--light-bg);
  padding: 1rem 0;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: #555;
  border-bottom: 1px solid var(--border);
}
.trust-bar i { color: var(--teal); margin-right: 0.5rem; }

/* ── SECTIONS ── */
.section { padding: 4rem 0; }
.section-alt { background: var(--light-bg); }
.section-title { margin-bottom: 2rem; }

/* ── FEATURED CARD ── */
.featured-card {
  border: 2px solid var(--teal);
  padding: 2.5rem 2rem;
  margin-bottom: 3rem;
  position: relative;
}
.featured-card .label {
  position: absolute;
  top: -0.85rem;
  left: 1.5rem;
  background: var(--teal);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.featured-card h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.featured-card p { color: #555; margin-bottom: 1.5rem; }

/* ── ARTICLES GRID ── */
.articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.article-card {
  border: 1px solid var(--border);
  padding: 1.75rem;
}
.article-card .category {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.article-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; margin-top: 0; }
.article-card p { color: #666; font-size: 0.95rem; margin-bottom: 1rem; }
.article-card .read-more { font-weight: 600; color: var(--teal); font-size: 0.95rem; }

/* ── WHY TRUST US ── */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.trust-item { text-align: center; padding: 1.5rem; }
.trust-item i { font-size: 2rem; color: var(--teal); margin-bottom: 1rem; display: block; }
.trust-item h3 { font-size: 1.1rem; margin-bottom: 0.5rem; margin-top: 0; }
.trust-item p { font-size: 0.95rem; color: #666; margin-bottom: 0; }

/* ── NEWSLETTER ── */
.newsletter {
  border: 1px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.newsletter h2 { margin-top: 0; margin-bottom: 0.5rem; }
.newsletter p { color: #666; margin-bottom: 1.5rem; }
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.newsletter-form input[type="email"] {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  font-size: 1rem;
  font-family: var(--font-body);
  width: 100%;
}
.newsletter-form input[type="email"]:focus { outline: 2px solid var(--teal); border-color: transparent; }

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  font-size: 0.9rem;
  color: #666;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-links { list-style: none; display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer-links a { color: #666; }
.footer-links a:hover { color: var(--teal); }
.footer-disclosure { font-size: 0.85rem; color: #888; max-width: 600px; line-height: 1.6; }
.footer-copy { font-size: 0.85rem; color: #999; }

/* ── BREADCRUMBS ── */
.breadcrumbs {
  padding: 1rem 0;
  font-size: 0.85rem;
  color: #888;
}
.breadcrumbs a { color: #888; }
.breadcrumbs a:hover { color: var(--teal); }
.breadcrumbs span { margin: 0 0.35rem; }

/* ── ARTICLE LAYOUT ── */
.article-header {
  padding: 2.5rem 0 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}
.article-header h1 { font-size: 2.25rem; max-width: 700px; margin-bottom: 1rem; }
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}
.article-meta i { margin-right: 0.35rem; }

.affiliate-notice {
  background: var(--light-bg);
  border-left: 3px solid var(--teal);
  padding: 0.85rem 1.25rem;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 2rem;
}

.article-body-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* ── TABLE OF CONTENTS ── */
.toc {
  border: 1px solid var(--border);
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.toc h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.toc-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text);
  padding: 0;
}
.toc-toggle i { font-size: 0.85rem; transition: transform 0.2s; }
.toc-toggle.active i { transform: rotate(180deg); }
.toc ol {
  list-style: none;
  counter-reset: toc;
  padding: 0;
}
.toc ol li { counter-increment: toc; }
.toc ol li a {
  display: block;
  padding: 0.4rem 0;
  color: #555;
  font-size: 0.92rem;
  border-bottom: 1px solid #f0f0f0;
}
.toc ol li a::before {
  content: counter(toc) ". ";
  font-weight: 600;
  color: var(--teal);
}
.toc ol li a:hover { color: var(--teal); }
.toc ol li a.active { color: var(--teal); font-weight: 600; }

/* ── PRODUCT CARDS ── */
.product-card {
  border: 1px solid var(--border);
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
}
.product-card .product-image {
  background: var(--light-bg);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #999;
}
.product-header { margin-bottom: 0.75rem; }
.product-header h3 { font-size: 1.35rem; margin-top: 0; margin-bottom: 0.25rem; }
.rating { color: var(--orange); font-size: 0.95rem; margin-bottom: 0.5rem; }
.badge-top-pick {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}
.badge-budget {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}
.badge-deal {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.pros-cons { margin: 1rem 0 1.5rem; }
.pro, .con {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.95rem;
}
.pro i { color: var(--green); margin-right: 0.5rem; }
.con i { color: var(--red); margin-right: 0.5rem; }

.price-checked {
  display: inline-block;
  background: var(--light-bg);
  border: 1px solid var(--border);
  padding: 0.3rem 0.75rem;
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 1rem;
}
.price-checked i { color: var(--green); margin-right: 0.35rem; }

/* ── DEAL ALERT ── */
.deal-alert {
  border: 2px solid var(--orange);
  background: #fff8f5;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.deal-alert h4 {
  color: var(--orange);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.deal-alert p { margin-bottom: 0; font-size: 0.95rem; }

/* ── COMPARISON TABLE ── */
.comparison-table-wrapper { overflow-x: auto; margin: 2rem 0; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 600px;
}
.comparison-table th {
  background: var(--text);
  color: var(--white);
  padding: 0.85rem 1rem;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}
.comparison-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.comparison-table tr:nth-child(even) td { background: var(--light-bg); }
.comparison-table .fa-check { color: var(--green); }
.comparison-table .fa-xmark { color: var(--red); }
.comparison-table .winner {
  background: #e8f5e9;
  font-weight: 600;
}

/* ── FAQ ── */
.faq-section { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.25rem 0; }
.faq-item h3 {
  font-size: 1.1rem;
  font-family: var(--font-body);
  margin: 0 0 0.75rem;
  cursor: default;
}
.faq-item p { margin-bottom: 0; color: #555; }

/* ── RELATED ARTICLES ── */
.related-articles { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.related-grid a {
  display: block;
  padding: 1.25rem;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
}
.related-grid a:hover { border-color: var(--teal); }
.related-grid .cat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 0.25rem;
}

/* ── STATIC PAGES ── */
.page-header {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}
.page-header h1 { margin-bottom: 0.5rem; }
.page-body { max-width: 700px; padding-bottom: 3rem; }
.page-body h2 { font-size: 1.4rem; }
.page-body ul, .page-body ol { margin-bottom: 1.25rem; padding-left: 1.5rem; }
.page-body li { margin-bottom: 0.5rem; }

/* ── INFO BOX ── */
.info-box {
  background: var(--light-bg);
  border: 1px solid var(--border);
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.info-box h4 {
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

/* ── COST BOX ── */
.cost-highlight {
  background: #fef3f0;
  border-left: 3px solid var(--red);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.cost-highlight h4 { color: var(--red); margin-bottom: 0.5rem; }

/* ── RESPONSIVE ── */
@media (min-width: 768px) {
  h1 { font-size: 2.75rem; }
  .hero h1 { font-size: 3rem; }
  .nav-links { display: flex; }
  .hamburger { display: none; }
  .articles-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-form { flex-direction: row; }
  .newsletter-form input[type="email"] { flex: 1; }
  .article-body-wrapper {
    flex-direction: row;
  }
  .toc {
    position: sticky;
    top: 5rem;
    width: 250px;
    min-width: 250px;
    align-self: flex-start;
    order: 2;
    margin-bottom: 0;
  }
  .article-body { flex: 1; order: 1; min-width: 0; }
  .toc-toggle { cursor: default; }
  .toc-toggle i { display: none; }
}

@media (min-width: 1024px) {
  .hero { padding: 5rem 0 4rem; }
  .hero h1 { font-size: 3.25rem; }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .related-grid { grid-template-columns: 1fr 1fr 1fr; }
  .toc { width: 280px; min-width: 280px; }
  .footer-inner { flex-direction: row; justify-content: space-between; align-items: flex-start; }
}

/* Navigation Dropdown Styles */
.dropdown { position: relative; }

.dropdown .nav-links a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  min-width: 240px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.15s ease;
}

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

/* Mobile dropdown adjustments */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0;
  }
  
  .dropdown-menu a {
    padding-left: 2rem;
    font-size: 0.85rem;
  }
}

/* ── PROGRESS BAR ── */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--teal);
  z-index: 200;
  transition: width 0.15s ease;
}

/* ── HEADER (New Template) ── */
.header {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 100;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo i { color: var(--teal); }
.logo:hover { color: var(--text); }
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}
.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s;
}
.header .nav {
  display: none;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
.header .nav .nav-link {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
}
.header .nav .nav-link:hover { color: var(--teal); }
.nav-dropdown { position: relative; }
.nav-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  min-width: 240px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown .dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.15s ease;
}
.nav-dropdown .dropdown-menu a:hover {
  background-color: var(--light-bg);
  color: var(--teal);
}
@media (max-width: 767px) {
  .header .nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.25rem;
    gap: 0;
  }
  .header .nav.active .nav-link {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }
  .header .nav.active .nav-dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
  }
  .header .nav.active .nav-dropdown .dropdown-menu a {
    padding-left: 1.5rem;
    font-size: 0.85rem;
  }
}
@media (min-width: 768px) {
  .header .nav { display: flex; }
  .mobile-menu-toggle { display: none; }
}

/* ── FOOTER (New Template) ── */
.footer {
  background: var(--text);
  color: #ccc;
  padding: 3rem 0 0;
  font-size: 0.9rem;
  margin-top: 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.footer-brand .logo { color: var(--white); font-size: 1.25rem; margin-bottom: 0.75rem; }
.footer-brand p { color: #aaa; font-size: 0.9rem; line-height: 1.6; margin-bottom: 0; }
.footer-column h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}
.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 0.4rem; }
.footer-column ul a { color: #aaa; text-decoration: none; font-size: 0.9rem; }
.footer-column ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 2rem;
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #888;
}
.footer-bottom a { color: #aaa; }
.footer-bottom a:hover { color: var(--white); }
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ── ARTICLE LAYOUT (New Template) ── */
.article-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 2rem;
}
.article-main { flex: 1; min-width: 0; }
.article-content { line-height: 1.7; }
.article-sidebar {
  width: 100%;
}
@media (min-width: 768px) {
  .article-layout {
    flex-direction: row;
  }
  .article-sidebar {
    width: 280px;
    min-width: 280px;
    align-self: flex-start;
    position: sticky;
    top: 5rem;
  }
}

/* ── COMPARISON / VERDICT CARDS ── */
.comparison-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.verdict-card {
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
}
.verdict-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  margin-top: 0;
}
.verdict-card h3 i { margin-right: 0.5rem; }
.verdict-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.verdict-card ul li {
  padding: 0.35rem 0;
  font-size: 0.95rem;
}
.verdict-card ul li::before {
  content: "✓ ";
  color: var(--green);
  font-weight: 700;
}
.ring-card { border-color: #1c6dd0; }
.simplisafe-card { border-color: #4a4a8a; }
@media (min-width: 768px) {
  .comparison-cards { grid-template-columns: 1fr 1fr; }
}

/* ── CTA BUTTONS ── */
.cta-button-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: var(--white);
  padding: 0.85rem 1.75rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.15s;
}
.cta-button-primary:hover { background: #cf5220; color: var(--white); }

/* ── RELATED CARDS ── */
.related-card {
  border: 1px solid var(--border);
  padding: 1.25rem;
  margin-bottom: 1rem;
}
.related-card h3 { font-size: 1.1rem; margin: 0 0 0.5rem; }
.related-card h3 a { color: var(--text); }
.related-card h3 a:hover { color: var(--teal); }
.related-card p { font-size: 0.9rem; color: #666; margin-bottom: 0; }

/* ── CTA SECTION ── */
.cta-section {
  background: var(--light-bg);
  border: 1px solid var(--border);
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
}

/* ── STICKY HEADER ── */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
}

/* ── PRICING CARDS ── */
.pricing-card {
  border: 1px solid var(--border);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.pricing-comparison {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}
@media (min-width: 768px) {
  .pricing-comparison { grid-template-columns: 1fr 1fr; }
}

/* ── PRODUCT CARD VARIANTS ── */
.product-card-image {
  background: var(--light-bg);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #999;
}
.product-card-details { margin-top: 1rem; }
.product-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  color: var(--white);
  background: var(--teal);
}
.product-content { margin: 1rem 0; }
.product-details { margin: 1rem 0; }
.product-info { margin: 0.5rem 0; }
.product-price { font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; }
.product-rating { color: var(--orange); margin-bottom: 0.5rem; }
.product-summary { margin: 1rem 0; }
.card-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  color: var(--white);
  background: var(--orange);
}

/* ── MISC ARTICLE ELEMENTS ── */
.lead { font-size: 1.1rem; color: #555; line-height: 1.8; }
.pros-list, .cons-list { list-style: none; padding: 0; }
.pros-list li::before { content: "✓ "; color: var(--green); font-weight: 700; }
.cons-list li::before { content: "✗ "; color: var(--red); font-weight: 700; }
.installation-tip {
  background: #e8f5e9;
  border-left: 3px solid var(--green);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.budget-breakdown {
  background: var(--light-bg);
  border: 1px solid var(--border);
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.priority-list { list-style: none; padding: 0; }
.priority-item { padding: 0.5rem 0; border-bottom: 1px solid var(--border); }
.included-items { margin: 1rem 0; }
.feature-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.feature-table th, .feature-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); text-align: left; }
.feature-table th { background: var(--light-bg); font-weight: 600; }
.score { font-weight: 700; color: var(--teal); }
.rating-score { font-size: 1.25rem; font-weight: 700; color: var(--orange); }
.rating-text { font-size: 0.9rem; color: #666; }
.stars { color: var(--orange); }
.original-price { text-decoration: line-through; color: #999; }
.sale-price { color: var(--red); font-weight: 700; }
.deal-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: var(--white);
  padding: 0.65rem 1.25rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}
.deal-button:hover { background: #cf5220; color: var(--white); }
.social-links { display: flex; gap: 1rem; margin-top: 1rem; }
.social-links a { color: #aaa; font-size: 1.25rem; }
.social-links a:hover { color: var(--white); }
.toc-list { list-style: none; padding: 0; }
.toc-title { font-weight: 700; margin-bottom: 0.75rem; }
