/* ============================================================
   PetHydra Design System — style.css
   Trustworthy editorial review site · Pet Water Fountains
   ============================================================ */

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

:root {
  --teal: #1A6B6D;
  --teal-tint: #E8F4F4;
  --teal-dark: #145456;
  --amber: #D4924B;
  --amber-hover: #C0843F;
  --sage: #5A8A6E;
  --red: #C0392B;
  --ink: #2D2A26;
  --stone: #6B6560;
  --warm-gray: #A69080;
  --border: #E5E0DA;
  --white: #FFFFFF;
  --off-white: #F7F5F2;
  --cream: #FDF8F0;
  --rose: #FEF2F2;
  --footer-bg: #2D2A26;
  --serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --content-width: 680px;
  --page-width: 1080px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 10px;
  --transition: 0.2s ease;
}

html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--off-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-dark); }

/* --- Typography --- */
h1, h2, h3 { font-family: var(--serif); color: var(--ink); }
h1 { font-size: 2rem; font-weight: 700; line-height: 1.2; }
h2 { font-size: 1.25rem; font-weight: 600; line-height: 1.3; margin: 2rem 0 0.75rem; }
h3 { font-size: 1rem; font-weight: 600; line-height: 1.4;  font-family: var(--sans); }
p { margin-bottom: 1.5rem; }
p:last-child { margin-bottom: 0; }
.subheadline { font-size: 1rem; color: var(--stone); line-height: 1.6; max-width: 560px; }
.category-tag {
  font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--teal); display: inline-block; margin-bottom: 0.5rem;
}
.byline { font-size: 0.875rem; color: var(--stone); line-height: 1.5; }
.caption { font-size: 0.8125rem; color: var(--warm-gray); line-height: 1.5; margin-top: 0.5rem; }

/* --- Layout --- */
.page-wrap { max-width: var(--page-width); margin: 0 auto; padding: 0 1.25rem; }
.content-wrap { max-width: var(--content-width); margin: 0 auto; padding: 0 1.25rem; }
.content-wide { max-width: var(--page-width); margin: 0 auto; padding: 0 1.25rem; }
.section-gap { margin-top: 3rem; }
.section-gap-sm { margin-top: 2rem; }

/* --- Navigation --- */
.nav {
  background: var(--white); border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.nav-inner {
  max-width: var(--page-width); margin: 0 auto; padding: 0 1.25rem;
  display: flex; align-items: center; justify-content: space-between; height: 56px;
}
.nav-logo {
  font-family: var(--serif); font-weight: 700; font-size: 1.25rem;
  color: var(--teal); display: flex; align-items: center; gap: 10px; text-decoration: none; width: 35px;
}
.nav-logo-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--amber); flex-shrink: 0;
}
.nav-links { display: flex; gap: 1.5rem; list-style: none; }
.nav-links a {
  font-size: 0.875rem; color: var(--stone); text-decoration: none;
  font-weight: 400; transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); font-weight: 500; }
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px; height: 28px; position: relative; flex-direction: column;
  justify-content: center; align-items: center; gap: 5px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

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

/* --- Advertorial Banner --- */
.adv-banner {
  background: var(--white); border-bottom: 0.5px solid var(--border);
  padding: 0.5rem 1.25rem; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.adv-tag {
  font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--stone); background: var(--off-white);
  padding: 0.1875rem 0.625rem; border-radius: var(--radius-sm);
  border: 0.5px solid var(--border); white-space: nowrap;
}
.adv-note { font-size: 0.75rem; color: var(--warm-gray); }

/* --- Breadcrumb --- */
.breadcrumb {
  font-size: 0.8125rem; color: var(--warm-gray); padding: 1rem 0 0;
}
.breadcrumb a { color: var(--warm-gray); text-decoration: none; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb span { margin: 0 0.375rem; }

/* --- Hero --- */
.hero {
  background: var(--teal-tint); padding: 2.5rem 0 2rem;
  border-bottom: 1px solid var(--border); margin-bottom: 2.5rem;
}
.hero-simple { padding: 2rem 0 1.5rem; margin-bottom: 2rem; background: none; border-bottom: none; }
.hero h1 { margin-bottom: 0.75rem; }

/* --- Author Box --- */
.author-box {
  display: flex; gap: 0.75rem; align-items: center;
  padding: 1rem 0; margin-top: 1rem; flex-wrap: wrap;
}
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--teal-tint);
  display: flex; align-items: center; justify-content: center;
  font-weight: 500; font-size: 0.875rem; color: var(--teal); flex-shrink: 0;
}
.author-info { flex: 1; min-width: 150px; }
.author-name { font-size: 0.875rem; font-weight: 500; color: var(--ink); }
.author-role { font-size: 0.75rem; color: var(--warm-gray); }
.author-date { font-size: 0.75rem; color: var(--warm-gray); white-space: nowrap; }

/* --- Disclosure Box --- */
.disclosure-box {
  background: var(--cream); border: 0.5px solid var(--border);
  border-radius: var(--radius-md); padding: 0.75rem 1rem;
  display: flex; gap: 0.625rem; align-items: flex-start; margin: 1.5rem 0;
}
.disclosure-box svg { flex-shrink: 0; margin-top: 2px; }
.disclosure-box p { font-size: 0.8125rem; color: var(--stone); line-height: 1.5; margin: 0; }
.disclosure-box a { color: var(--teal); text-decoration: underline; }

/* --- Article Body --- */
.article-body { padding-bottom: 2rem; }
.article-body h2 { margin-top: 2.5rem; }
.article-body h2:first-child { margin-top: 0; }
.article-body a {
  color: var(--teal); font-weight: 500;
  border-bottom: 1px solid rgba(26,107,109,0.3); text-decoration: none;
}
.article-body a:hover { border-bottom-color: var(--teal); }
.article-body ul, .article-body ol {
  margin: 0 0 1.5rem 1.25rem; line-height: 1.7;
}
.article-body li { margin-bottom: 0.375rem; }

/* Pull quote */
.pull-quote {
  font-family: var(--serif); font-size: 1.125rem; font-style: italic;
  color: var(--teal); border-left: 3px solid var(--teal); padding-left: 1rem;
  margin: 2rem 0; line-height: 1.6;
}
.pull-quote cite {
  display: block; font-size: 0.8125rem; font-style: normal;
  color: var(--warm-gray); margin-top: 0.5rem;
}

/* --- Inline Comparison Table --- */
.table-wrap { overflow-x: auto; margin: 2rem 0; -webkit-overflow-scrolling: touch; }
.compare-table {
  width: 100%; border-collapse: collapse; background: var(--white);
  border: 0.5px solid var(--border); border-radius: var(--radius-md);
  font-size: 0.8125rem; min-width: 600px;
}
.compare-table th {
  background: var(--white); text-align: left; padding: 0.625rem 0.75rem;
  font-weight: 500; color: var(--ink); border-bottom: 1.5px solid var(--border);
  font-size: 0.75rem; white-space: nowrap;
}
.compare-table td {
  padding: 0.5625rem 0.75rem; border-bottom: 0.5px solid var(--border);
  vertical-align: middle;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .feat-label { color: var(--stone); font-weight: 500; font-size: 0.75rem; }
.compare-table .pick-col { border-left: 2px solid var(--teal); border-right: 2px solid var(--teal); }
.compare-table .pick-col-top { border-top: 2px solid var(--teal); }
.compare-table .pick-col-bottom { border-bottom: 2px solid var(--teal); }
.compare-table .pick-header { background: var(--teal-tint); }
.compare-table .text-center { text-align: center; }
.compare-table .text-sage { color: var(--sage); }
.compare-table .text-amber { color: var(--amber); }
.compare-table .text-bold { font-weight: 600; }
.check-icon { color: var(--sage); }
.x-icon { color: var(--red); }
.table-link {
  color: var(--teal); font-weight: 500; font-size: 0.75rem;
  text-decoration: none; display: inline-flex; align-items: center; gap: 0.1875rem;
}

/* Badges in table */
.badge {
  font-size: 0.625rem; font-weight: 500; letter-spacing: 0.03em;
  text-transform: uppercase; padding: 0.125rem 0.5rem; border-radius: var(--radius-sm);
  display: inline-block; margin-top: 0.25rem;
}
.badge-pick { background: var(--teal-tint); color: var(--teal); }
.badge-budget { background: var(--cream); color: var(--amber); }

/* --- Review Verdict Card --- */
.verdict-card {
  background: var(--white); border: 0.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.25rem; margin: 1.5rem 0;
}
.verdict-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 1rem; gap: 1rem;
}
.verdict-score {
  background: var(--sage); color: var(--white);
  font-size: 1.125rem; font-weight: 600;
  width: 48px; height: 48px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.verdict-title {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 600;
  color: var(--ink); margin-bottom: 0.25rem;
}
.verdict-subtitle { font-size: 0.8125rem; color: var(--warm-gray); }
.verdict-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1rem 0; }
.verdict-pros h4, .verdict-cons h4 {
  font-size: 0.75rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.05em; margin-bottom: 0.5rem;
}
.verdict-pros h4 { color: var(--sage); }
.verdict-cons h4 { color: var(--red); }
.verdict-list { list-style: none; }
.verdict-list li {
  font-size: 0.8125rem; padding: 0.375rem 0;
  display: flex; gap: 0.375rem; align-items: flex-start; line-height: 1.4;
}
.verdict-list .icon { flex-shrink: 0; font-size: 0.875rem; margin-top: 1px; }

/* --- CTA Blocks --- */
/* Inline text CTA */
.cta-text {
  color: var(--teal); font-weight: 500;
  border-bottom: 1px solid rgba(26,107,109,0.3);
  text-decoration: none; transition: border-color var(--transition);
}
.cta-text:hover { border-bottom-color: var(--teal); }

/* Card CTA */
.cta-card {
  background: var(--white); border: 0.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.25rem;
  display: flex; gap: 1rem; align-items: center; margin: 2rem 0;
}
.cta-card-icon {
  width: 48px; height: 48px; background: var(--teal-tint);
  border-radius: var(--radius-lg); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.cta-card-icon svg { color: var(--teal); }
.cta-card-body { flex: 1; }
.cta-card-title {
  font-family: var(--serif); font-weight: 600; font-size: 0.9375rem;
  color: var(--ink); margin-bottom: 0.1875rem;
}
.cta-card-desc { font-size: 0.8125rem; color: var(--stone); line-height: 1.5; }

/* End CTA */
.cta-end {
  background: var(--teal-tint); border-radius: var(--radius-lg);
  padding: 1.75rem; text-align: center; margin: 2.5rem 0;
}
.cta-end-title {
  font-family: var(--serif); font-weight: 600; font-size: 1.125rem;
  color: var(--ink); margin-bottom: 0.375rem;
}
.cta-end-desc {
  font-size: 0.875rem; color: var(--stone); margin-bottom: 1.25rem; line-height: 1.6;
}
.cta-end-note { font-size: 0.75rem; color: var(--warm-gray); margin-top: 0.75rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-family: var(--sans); font-size: 0.875rem; font-weight: 500;
  border-radius: var(--radius-md); cursor: pointer; transition: all var(--transition);
  text-decoration: none; border: none; white-space: nowrap;
}
.btn-primary {
  background: var(--amber); color: var(--white); padding: 0.625rem 1.25rem;
}
.btn-primary:hover { background: var(--amber-hover); color: var(--white); }
.btn-primary:active { transform: scale(0.98); }
.btn-secondary {
  background: transparent; color: var(--teal); border: 1.5px solid var(--teal);
  padding: 0.5625rem 1.25rem;
}
.btn-secondary:hover { background: var(--teal-tint); color: var(--teal); }
.btn-text {
  background: none; color: var(--teal); padding: 0;
  font-weight: 500; border: none;
}
.btn-text:hover { text-decoration: underline; color: var(--teal); }
.btn svg { flex-shrink: 0; }

/* --- Article Cards --- */
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem; margin: 2rem 0;
}
.article-card {
  background: var(--white); border: 0.5px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow var(--transition);
  text-decoration: none; color: inherit; display: block;
}
.article-card:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.06); color: inherit; }
.card-img {
  height: 160px; background: var(--teal-tint);
  display: flex; align-items: center; justify-content: center;
}
.card-img svg { opacity: 0.25; color: var(--teal); }
.card-body { padding: 1rem; }
.card-title {
  font-family: var(--serif); font-size: 1.0625rem; font-weight: 600;
  color: var(--ink); line-height: 1.3; margin-bottom: 0.5rem;
}
.card-excerpt {
  font-size: 0.875rem; color: var(--stone); line-height: 1.6;
  margin-bottom: 0.75rem;
}
.card-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: var(--warm-gray);
}
.card-link {
  color: var(--teal); font-weight: 500; font-size: 0.8125rem;
  display: inline-flex; align-items: center; gap: 0.25rem;
}

/* --- FAQ Accordion --- */
.faq-section { margin: 2.5rem 0; }
.faq-section > h2 { margin-bottom: 1rem; }
.faq-item { border-bottom: 0.5px solid var(--border); }
.faq-item:first-child { border-top: 0.5px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 0; text-align: left; font-family: var(--sans);
  font-size: 1rem; font-weight: 500; color: var(--ink); gap: 1rem;
}
.faq-question svg {
  flex-shrink: 0; transition: transform 0.3s ease; color: var(--stone);
}
.faq-question.open svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 0 1rem; font-size: 0.875rem; color: var(--stone); line-height: 1.7;
}

/* --- Footer --- */
.footer { background: var(--footer-bg); padding: 2rem 0 1.25rem; margin-top: 4rem; }
.footer-inner { max-width: var(--page-width); margin: 0 auto; padding: 0 1.25rem; }
.footer-logo {
  font-family: var(--serif); font-weight: 700; font-size: 1.125rem;
  color: var(--white); display: flex; align-items: center; gap: 0.375rem; margin-bottom: 0.75rem;
}
.footer-desc { font-size: 1rem; color: var(--warm-gray); line-height: 1.6; margin-bottom: 1.25rem; max-width: 480px; }
.footer-links {
  display: flex; flex-wrap: wrap; gap: 1rem; padding: 1rem 0;
  border-top: 0.5px solid rgba(255,255,255,0.1); list-style: none;
}
.footer-links a { font-size: 0.9rem; color: var(--warm-gray); text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-copy {
  font-size: 0.9rem; color: rgba(255,255,255,0.25); margin-top: 1.25rem; line-height: 1.6;
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--white); border-top: 1px solid var(--border);
  box-shadow: 0 -2px 8px rgba(0,0,0,0.06); padding: 1rem 1.25rem;
  display: none; /* JS shows it */
}
.cookie-banner.show { display: block; }
.cookie-inner {
  max-width: var(--page-width); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.cookie-text { font-size: 0.8125rem; color: var(--stone); flex: 1; min-width: 200px; line-height: 1.5; }
.cookie-text a { color: var(--teal); text-decoration: underline; }
.cookie-btns { display: flex; gap: 0.5rem; flex-shrink: 0; }

/* --- Legal Pages --- */
.legal-body { padding-bottom: 2rem; }
.legal-body h2 { font-family: var(--sans); font-size: 1.0625rem; font-weight: 600; margin: 2rem 0 0.75rem; }
.legal-body h3 { margin: 1.5rem 0 0.5rem; }
.legal-body p { font-size: 0.9375rem; line-height: 1.7; color: var(--ink); }
.legal-body ul { margin: 0 0 1.5rem 1.25rem; font-size: 0.9375rem; line-height: 1.7; }
.legal-body li { margin-bottom: 0.25rem; }

/* --- Contact Form --- */
.contact-details { margin: 1.5rem 0 2rem; }
.contact-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 0; font-size: 0.9375rem;
}
.contact-item svg { color: var(--teal); flex-shrink: 0; }
.contact-form { max-width: 480px; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.875rem; font-weight: 500;
  color: var(--ink); margin-bottom: 0.375rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 0.625rem 0.75rem; font-size: 0.9375rem;
  font-family: var(--sans); border: 1px solid var(--border);
  border-radius: 6px; background: var(--white); color: var(--ink);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,107,109,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* --- Offer / Transition Page --- */
.offer-transition {
  background: var(--white); border: 0.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem; text-align: center;
  max-width: 520px; margin: 2rem auto;
}
.offer-transition h2 { margin-top: 0; margin-bottom: 0.75rem; }

/* --- Mini review cards for comparison page --- */
.mini-review {
  background: var(--white); border: 0.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.25rem; margin-bottom: 1rem;
}
.mini-review-header {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem;
}
.mini-review-name { font-family: var(--serif); font-size: 1.0625rem; font-weight: 600; }
.mini-review-score {
  background: var(--sage); color: var(--white); font-size: 0.875rem;
  font-weight: 600; padding: 0.25rem 0.625rem; border-radius: var(--radius-sm);
}
.mini-review-score.mid { background: var(--amber); }

/* --- References --- */
.references { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 0.5px solid var(--border); }
.references h3 { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--stone); margin-bottom: 1rem; }
.references ol { margin-left: 1.25rem; }
.references li { font-size: 0.8125rem; color: var(--stone); margin-bottom: 0.75rem; line-height: 1.5; }
.references a { color: var(--teal); }

/* --- Related reading --- */
.related-section { margin-top: 3rem; padding-top: 2rem; border-top: 0.5px solid var(--border); }
.related-section > h2 { font-size: 1.125rem; margin-top: 0; margin-bottom: 1rem; }

/* --- Utilities --- */
.text-teal { color: var(--teal); }
.text-sage { color: var(--sage); }
.text-amber { color: var(--amber); }
.text-red { color: var(--red); }
.text-stone { color: var(--stone); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  h1 { font-size: 1.625rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 2rem 0 1.5rem; }
  .verdict-grid { grid-template-columns: 1fr; }
  .cta-card { flex-direction: column; text-align: center; }
  .cta-card-icon { margin: 0 auto; }
  .cards-grid { grid-template-columns: 1fr; }
  .compare-table { font-size: 0.75rem; }
  .compare-table th, .compare-table td { padding: 0.5rem; }
  .cookie-inner { flex-direction: column; text-align: center; }
  .cookie-btns { width: 100%; justify-content: center; }
  .author-date { width: 100%; margin-top: -0.25rem; }
  .adv-banner { justify-content: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.375rem; }
  .content-wrap, .content-wide, .page-wrap { padding: 0 1rem; }
  .nav-inner { padding: 0 1rem; }
  .footer-inner { padding: 0 1rem; }
  .footer-links { gap: 0.75rem; }
}

/* ============================================================
   VISUAL ENHANCEMENT LAYER
   Added on top of the base design system — no base rules changed
   ============================================================ */

/* --- Reading Progress Bar --- */
.reading-progress {
  position: fixed; top: 56px; left: 0; width: 0%;
  height: 3px; background: var(--teal); z-index: 99;
  transition: width 0.1s linear; pointer-events: none;
}

/* --- Hero Image (SVG editorial illustrations) --- */
.hero-illustration {
  width: 100%; max-height: 320px; margin: 1.5rem 0 0;
  border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, #d4eded 0%, #b8dede 40%, #a8d5d0 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-illustration svg { width: 100%; height: auto; max-height: 320px; }
.hero-illustration-article { 
  background: linear-gradient(135deg, #e8f4f4 0%, #d4eded 50%, #c4e3e0 100%);
}
.hero-illustration-review {
  background: linear-gradient(135deg, #f0f7f0 0%, #ddeee4 50%, #cfe5d6 100%);
}

/* --- Rich Card Thumbnails --- */
.card-img-scene {
  height: 180px; position: relative; overflow: hidden;
  border-bottom: 0.5px solid var(--border);
}
.card-img-scene svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* --- Star Rating System --- */
.star-rating { display: inline-flex; gap: 2px; align-items: center; }
.star-rating svg { width: 18px; height: 18px; }
.star-full { color: var(--amber); fill: var(--amber); }
.star-half { color: var(--amber); }
.star-empty { color: var(--border); fill: var(--border); }
.star-rating-label {
  font-size: 0.75rem; color: var(--warm-gray);
  margin-left: 0.5rem; font-weight: 400;
}

/* --- Score Ring (animated) --- */
.score-ring-wrap {
  position: relative; width: 64px; height: 64px; flex-shrink: 0;
}
.score-ring-wrap svg { width: 64px; height: 64px; transform: rotate(-90deg); }
.score-ring-bg { fill: none; stroke: var(--border); stroke-width: 4; }
.score-ring-fill {
  fill: none; stroke: var(--sage); stroke-width: 4;
  stroke-linecap: round; stroke-dasharray: 163.36;
  stroke-dashoffset: 163.36;
  transition: stroke-dashoffset 1s ease-out;
}
.score-ring-label {
  position: absolute; inset: 0; display: flex; align-items: center;
  justify-content: center; font-size: 1.125rem; font-weight: 700;
  color: var(--ink); font-family: var(--sans);
}

/* --- Feature Benefit Cards --- */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.875rem; margin: 2rem 0;
}
.feature-card {
  background: var(--white); border: 0.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.25rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.feature-card-icon {
  width: 40px; height: 40px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-card-icon.teal { background: var(--teal-tint); color: var(--teal); }
.feature-card-icon.amber { background: var(--cream); color: var(--amber); }
.feature-card-icon.sage { background: #eaf3ed; color: var(--sage); }
.feature-card-icon.rose { background: var(--rose); color: var(--red); }
.feature-card-title {
  font-size: 0.875rem; font-weight: 600; color: var(--ink);
}
.feature-card-desc {
  font-size: 0.8125rem; color: var(--stone); line-height: 1.5; margin: 0;
}

/* --- Trust Signal Block --- */
.trust-block {
  background: var(--white); border: 0.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem;
  margin: 2rem 0;
}
.trust-block-header {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1rem; padding-bottom: 0.875rem;
  border-bottom: 0.5px solid var(--border);
}
.trust-block-icon {
  width: 36px; height: 36px; border-radius: var(--radius-md);
  background: var(--teal-tint); color: var(--teal);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trust-block-title {
  font-family: var(--sans); font-size: 0.9375rem;
  font-weight: 600; color: var(--ink); margin: 0;
}
.trust-block-subtitle {
  font-size: 0.75rem; color: var(--warm-gray); margin: 0;
}
.trust-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem; list-style: none; counter-reset: trust-step;
}
.trust-step {
  counter-increment: trust-step; position: relative;
  padding-left: 2rem;
}
.trust-step::before {
  content: counter(trust-step);
  position: absolute; left: 0; top: 0;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--teal-tint); color: var(--teal);
  font-size: 0.75rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.trust-step-label {
  font-size: 0.8125rem; font-weight: 500; color: var(--ink);
  margin-bottom: 0.125rem;
}
.trust-step-desc {
  font-size: 0.75rem; color: var(--stone); line-height: 1.4; margin: 0;
}

/* --- Section Divider --- */
.section-divider {
  border: none; height: 0; margin: 3rem 0;
  border-top: 0.5px solid var(--border);
  position: relative;
}
.section-divider::after {
  content: ''; position: absolute;
  left: 50%; top: -4px; transform: translateX(-50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border);
}

/* --- Enhanced Pull Quote --- */
.pull-quote-enhanced {
  position: relative; padding: 1.5rem 1.5rem 1.5rem 2rem;
  margin: 2.5rem 0; background: var(--off-white);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--teal);
}
.pull-quote-enhanced::before {
  content: '\201C'; position: absolute;
  top: 0.5rem; left: 0.75rem;
  font-family: var(--serif); font-size: 3rem;
  color: var(--teal); opacity: 0.2; line-height: 1;
}
.pull-quote-enhanced p {
  font-family: var(--serif); font-size: 1.125rem; font-style: italic;
  color: var(--teal-dark); line-height: 1.6; margin-bottom: 0.75rem;
  position: relative;
}
.pull-quote-enhanced cite {
  display: flex; align-items: center; gap: 0.625rem;
  font-style: normal; font-family: var(--sans);
}
.pull-quote-enhanced .cite-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--teal-tint); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6875rem; font-weight: 600; flex-shrink: 0;
}
.pull-quote-enhanced .cite-info {
  font-size: 0.8125rem; color: var(--stone);
}
.pull-quote-enhanced .cite-name { font-weight: 500; color: var(--ink); }

/* --- Stat Highlight Cards --- */
.stat-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem; margin: 2rem 0;
}
.stat-card {
  background: var(--white); border: 0.5px solid var(--border);
  border-radius: var(--radius-md); padding: 1rem; text-align: center;
}
.stat-value {
  font-family: var(--serif); font-size: 1.75rem; font-weight: 700;
  color: var(--teal); line-height: 1;
}
.stat-label {
  font-size: 0.75rem; color: var(--stone); margin-top: 0.375rem;
  line-height: 1.3;
}

/* --- Enhanced Verdict Card (with score ring) --- */
.verdict-card-enhanced {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; margin: 1.5rem 0;
}
.verdict-card-top {
  background: linear-gradient(135deg, var(--teal-tint), #dff0f0);
  padding: 1.25rem; display: flex; gap: 1rem;
  align-items: center; flex-wrap: wrap;
}
.verdict-card-body { padding: 1.25rem; }

/* --- Enhanced FAQ --- */
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--teal-tint); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.8125rem; font-weight: 600;
  margin-right: 0.5rem;
}
.faq-question-enhanced {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; padding: 1rem 0;
  text-align: left; font-family: var(--sans);
  font-size: 0.9375rem; font-weight: 500; color: var(--ink); gap: 0;
}
.faq-question-enhanced span.faq-text { flex: 1; }
.faq-question-enhanced svg {
  flex-shrink: 0; transition: transform 0.3s ease; color: var(--stone);
  margin-left: 0.75rem;
}
.faq-question-enhanced.open svg { transform: rotate(180deg); }
.faq-question-enhanced.open .faq-icon {
  background: var(--teal); color: var(--white);
}

/* --- Inline Icon (for feature lists) --- */
.icon-inline {
  width: 20px; height: 20px; flex-shrink: 0; display: inline-flex;
  align-items: center; justify-content: center; margin-right: 0.25rem;
  vertical-align: -4px;
}
.icon-benefit { color: var(--sage); }
.icon-warning { color: var(--amber); }
.icon-danger { color: var(--red); }

/* --- Enhanced CTA (soft recommendation) --- */
.cta-recommendation {
  background: linear-gradient(135deg, var(--teal-tint) 0%, #dff0f0 100%);
  border: 1px solid rgba(26,107,109,0.15);
  border-radius: var(--radius-lg); padding: 2rem;
  text-align: center; margin: 2.5rem 0; position: relative;
  overflow: hidden;
}
.cta-recommendation::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(26,107,109,0.05);
}
.cta-recommendation::after {
  content: ''; position: absolute; bottom: -30px; left: -30px;
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(26,107,109,0.04);
}
.cta-recommendation > * { position: relative; z-index: 1; }
.cta-recommendation-badge {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--teal);
  background: rgba(26,107,109,0.08); padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm); margin-bottom: 0.75rem;
}

/* --- Product Image Card (SVG illustration) --- */
.product-visual {
  background: linear-gradient(135deg, #f0f7f0 0%, #ddeee4 50%, #cfe5d6 100%);
  border-radius: var(--radius-lg); padding: 2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 2rem 0; min-height: 200px; position: relative;
  overflow: hidden; border: 0.5px solid rgba(90,138,110,0.15);
}
.product-visual svg { max-width: 100%; max-height: 220px; }

/* --- Timeline / Test Results --- */
.timeline { margin: 1.5rem 0 2rem; }
.timeline-item {
  display: flex; gap: 1rem; padding: 1rem 0;
  border-bottom: 0.5px solid var(--border);
  position: relative;
}
.timeline-item:last-child { border-bottom: none; }
.timeline-marker {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--teal-tint); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 600; flex-shrink: 0;
  font-family: var(--sans);
}
.timeline-marker.complete { background: var(--sage); color: var(--white); }
.timeline-content { flex: 1; }
.timeline-label {
  font-size: 0.875rem; font-weight: 600; color: var(--ink);
  margin-bottom: 0.25rem;
}
.timeline-desc {
  font-size: 0.8125rem; color: var(--stone); line-height: 1.6; margin: 0;
}

/* --- Enhanced Footer --- */
.footer-inner-enhanced {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  max-width: var(--page-width); margin: 0 auto; padding: 0 1.25rem;
}
.footer-right { display: flex; flex-direction: column; align-items: flex-end; }
.footer-right .footer-links { justify-content: flex-end; border-top: none; padding-top: 0; }
.footer-trust {
  display: flex; gap: 0.75rem; align-items: center; margin-bottom: 1rem;
}
.footer-trust-badge {
  display: flex; align-items: center; gap: 0.375rem;
  font-size: 0.6875rem; color: var(--warm-gray);
  padding: 0.25rem 0.5rem; border-radius: var(--radius-sm);
  border: 0.5px solid rgba(255,255,255,0.1);
}
.footer-trust-badge svg { width: 14px; height: 14px; color: var(--sage); }

/* --- Nav Enhancement (underline active) --- */
.nav-links a {
  position: relative; padding-bottom: 2px;
}
.nav-links a.active::after {
  content: ''; position: absolute;
  bottom: -17px; left: 0; right: 0;
  height: 2px; background: var(--teal);
  border-radius: 2px;
}

/* --- Image caption with source --- */
.img-with-caption {
  margin: 2rem 0; border-radius: var(--radius-lg); overflow: hidden;
  border: 0.5px solid var(--border);
}
.img-with-caption .img-wrap {
  display: flex; align-items: center; justify-content: center;
  min-height: 180px;
}
.img-caption {
  background: var(--white); padding: 0.625rem 1rem;
  font-size: 0.75rem; color: var(--warm-gray);
  display: flex; align-items: center; gap: 0.375rem;
  border-top: 0.5px solid var(--border);
}
.img-caption svg { width: 12px; height: 12px; flex-shrink: 0; }

/* --- Enhanced Mini Review Cards --- */
.mini-review-enhanced {
  background: var(--white); border: 0.5px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 1rem;
  transition: box-shadow var(--transition);
}
.mini-review-enhanced:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.mini-review-bar {
  height: 3px; background: var(--sage);
}
.mini-review-bar.mid { background: var(--amber); }
.mini-review-body { padding: 1.25rem; }

/* --- Visual Separator Dots --- */
.dots-separator {
  display: flex; justify-content: center; gap: 6px;
  margin: 2.5rem 0; padding: 0.5rem 0;
}
.dots-separator span {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--border);
}

/* --- Methodology Badge Row --- */
.method-badges {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0;
}
.method-badge {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.75rem; font-weight: 500; color: var(--stone);
  background: var(--off-white); padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm); border: 0.5px solid var(--border);
}
.method-badge svg { width: 14px; height: 14px; color: var(--teal); }

/* --- Responsive additions --- */
@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .trust-steps { grid-template-columns: 1fr 1fr; }
  .footer-inner-enhanced { grid-template-columns: 1fr; }
  .footer-right { align-items: flex-start; }
  .footer-right .footer-links { justify-content: flex-start; }
  .hero-illustration { max-height: 220px; }
  .timeline-item { flex-direction: column; gap: 0.5rem; }
  .score-ring-wrap { width: 52px; height: 52px; }
  .score-ring-wrap svg { width: 52px; height: 52px; }
  .score-ring-label { font-size: 0.9375rem; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .trust-steps { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .method-badges { gap: 0.375rem; }
}

/* ============================================================
   HOMEPAGE-SPECIFIC STYLES
   Refactored editorial advertorial page — BensonFinds style
   ============================================================ */

/* --- HP Layout --- */
.hp-container { max-width: var(--page-width); margin: 0 auto; padding: 0 1.25rem; }
.hp-container-narrow { max-width: var(--content-width); margin: 0 auto; padding: 0 1.25rem; }
.hp-section { padding: 4rem 0; }
.hp-section-alt { background: var(--white); }
.hp-section-title {
  font-family: var(--serif); font-size: 1.625rem; font-weight: 700;
  color: var(--ink); text-align: center; margin-bottom: 2.5rem;
  line-height: 1.25;
}

/* --- HERO --- */
.hp-hero {
  position: relative; min-height: 620px; display: flex;
  align-items: center; justify-content: center; overflow: hidden;
}
.hp-hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hp-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,40,40,0.55) 0%, rgba(20,40,40,0.65) 100%);
}
.hp-hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 700px; padding: 3rem 1.5rem;
}
.hp-hero h1 {
  color: var(--white); font-size: 2.5rem; font-weight: 700;
  line-height: 1.15; margin-bottom: 1.25rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.hp-hero-sub {
  color: rgba(255,255,255,0.88); font-size: 1.125rem;
  line-height: 1.6; max-width: 580px; margin: 0 auto;
}

/* --- HOW IT WORKS --- */
.hp-how-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem;
  align-items: start;
}
.hp-how-image { border-radius: var(--radius-lg); overflow: hidden; }
.hp-how-image img { width: 100%; display: block; }
.hp-how-grid { display: flex; flex-direction: column; gap: 1.25rem; }
.hp-icon-card {
  background: var(--white); border: 0.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.25rem;
  display: flex; align-items: flex-start; gap: 1rem;
}
.hp-icon-card h3 {
  font-family: var(--sans); font-size: 0.9375rem; font-weight: 600;
  color: var(--ink); margin-bottom: 0.25rem;
}
.hp-icon-card p {
  font-size: 14px; color: var(--stone); line-height: 1.5; margin: 0;
}
.hp-icon-circle {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hp-icon-teal { background: var(--teal-tint); color: var(--teal); }
.hp-icon-sage { background: #eaf3ed; color: var(--sage); }
.hp-icon-amber { background: var(--cream); color: var(--amber); }

/* --- PROBLEMS GRID --- */
.hp-problems-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.hp-problem-card {
  background: var(--off-white); border: 0.5px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: box-shadow var(--transition);
}
.hp-problem-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.hp-problem-img { width: 100%; height: 250px; object-fit: cover; }
.hp-problem-body { padding: 1rem; }
.hp-problem-icon { color: var(--amber); margin-bottom: 0.375rem; }
.hp-problem-body h3 {
  font-family: var(--sans); font-size: 0.875rem; font-weight: 600;
  color: var(--ink); margin-bottom: 0.25rem;
}
.hp-problem-body p {
  font-size: 0.8125rem; color: var(--stone); line-height: 1.5; margin: 0;
}

/* --- AUDIENCE GRID --- */
.hp-audience-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.hp-audience-card {
  background: var(--white); border: 0.5px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: box-shadow var(--transition);
}
.hp-audience-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.hp-audience-img { width: 100%; height: 270px; object-fit: cover; }
.hp-audience-body {
  padding: 1rem; display: flex; align-items: flex-start; gap: 0.625rem;
}
.hp-audience-body svg { flex-shrink: 0; margin-top: 2px; }
.hp-audience-body p {
  font-size: 0.875rem; color: var(--ink); line-height: 1.5; margin: 0;
  font-weight: 500;
}

/* --- EDUCATION --- */
.hp-edu-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem;
  align-items: start;
}
.hp-edu-text p {
  font-size: 1rem; color: var(--ink); line-height: 1.7;
  margin-bottom: 1.25rem;
}
.hp-edu-icons {
  display: flex; gap: 1.5rem; margin-top: 1rem; flex-wrap: wrap;
}
.hp-edu-icon-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem; font-weight: 500; color: var(--stone);
}
.hp-edu-images {
  display: flex; flex-direction: column; gap: 1rem;
}
.hp-edu-images img {
  width: 100%; border-radius: var(--radius-lg);
  border: 0.5px solid var(--border);
}

/* --- COMPARISON TABLE --- */
.hp-compare { overflow-x: auto; }
.hp-compare-table {
  width: 100%; border-collapse: collapse; background: var(--white);
  border: 0.5px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; font-size: 0.875rem; min-width: 520px;
}
.hp-compare-table th {
  background: var(--off-white); padding: 0.875rem 1rem;
  font-weight: 500; color: var(--stone); text-align: center;
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.04em;
  border-bottom: 1px solid var(--border); white-space: nowrap;
}
.hp-compare-table th:first-child { text-align: left; }
.hp-compare-table th svg { vertical-align: -3px; margin-right: 4px; color: var(--teal); }
.hp-compare-table td {
  padding: 0.875rem 1rem; text-align: center;
  border-bottom: 0.5px solid var(--border); vertical-align: middle;
}
.hp-compare-table tr:last-child td { border-bottom: none; }
.hp-compare-type {
  text-align: left !important; display: flex; align-items: center; gap: 0.75rem;
  font-weight: 500; color: var(--ink);
}
.hp-compare-img { width: 48px; height: 40px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }
.hp-compare-highlight { background: var(--teal-tint); }
.hp-compare-highlight td { font-weight: 500; }
.hp-tag {
  display: inline-block; padding: 0.1875rem 0.625rem; border-radius: var(--radius-sm);
  font-size: 0.75rem; font-weight: 500;
}
.hp-tag-low { background: var(--rose); color: var(--red); }
.hp-tag-med { background: var(--cream); color: var(--amber); }
.hp-tag-high { background: #eaf3ed; color: var(--sage); }
.hp-tag-high-warn { background: var(--rose); color: var(--red); }

/* --- REVIEWS --- */
.hp-reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.hp-review-card {
  background: var(--off-white); border: 0.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem;
}
.hp-review-stars { display: flex; gap: 2px; margin-bottom: 0.875rem; }
.hp-review-text {
  font-family: var(--serif); font-size: 1rem; font-style: italic;
  color: var(--ink); line-height: 1.6; margin-bottom: 1rem;
}
.hp-review-author {
  display: flex; align-items: center; gap: 0.625rem;
  font-size: 0.8125rem; font-weight: 500; color: var(--stone);
}
.hp-review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
}

/* --- BENEFITS --- */
.hp-benefits-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem;
  align-items: center;
}
.hp-benefits-list { display: flex; flex-direction: column; gap: 1.25rem; }
.hp-benefit-item {
  display: flex; align-items: center; gap: 1rem;
  background: var(--white); border: 0.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 1rem 1.25rem;
}
.hp-benefit-item h3 {
  font-family: var(--sans); font-size: 0.9375rem; font-weight: 500;
  color: var(--ink); margin: 0;
}
.hp-benefits-image { border-radius: var(--radius-lg); overflow: hidden; }
.hp-benefits-image img { width: 100%; display: block; }

/* --- CTA BLOCK --- */
.hp-cta {
  position: relative; padding: 4rem 0; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  min-height: 320px;
}
.hp-cta-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hp-cta-content {
  position: relative; z-index: 1; text-align: center;
  max-width: 600px; padding: 2rem 1.5rem;
}
.hp-cta-content h2 {
  font-size: 1.5rem; margin-bottom: 0.75rem; color: var(--ink);
}
.hp-cta-content p {
  font-size: 1rem; color: var(--stone); line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* --- HP Responsive --- */
@media (max-width: 768px) {
  .hp-hero { min-height: 340px; }
  .hp-hero h1 { font-size: 1.75rem; }
  .hp-hero-sub { font-size: 1rem; }
  .hp-section { padding: 2.5rem 0; }
  .hp-section-title { font-size: 1.375rem; margin-bottom: 1.75rem; }
  .hp-how-layout { grid-template-columns: 1fr; }
  .hp-edu-layout { grid-template-columns: 1fr; }
  .hp-benefits-layout { grid-template-columns: 1fr; }
  .hp-benefits-image { order: -1; }
  .hp-audience-grid { grid-template-columns: 1fr 1fr; }
  .hp-problems-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hp-hero h1 { font-size: 1.5rem; }
  .hp-hero { min-height: 380px; }
  .hp-audience-grid { grid-template-columns: 1fr; }
  .hp-problems-grid { grid-template-columns: 1fr; }
  .hp-reviews-grid { grid-template-columns: 1fr; }
}
