:root {
  --green: #0e5c46;
  --green-dark: #0a3f30;
  --lime: #c8f04b;
  --ink: #172420;
  --muted: #5d6d66;
  --bg: #f6f8f5;
  --card: #ffffff;
  --amazon: #ff9900;
  --amazon-dark: #e68a00;
  --radius: 14px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink); background: var(--bg); line-height: 1.65;
}
img { max-width: 100%; }
a { color: var(--green); }
.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* header */
.site-header { background: var(--green-dark); position: sticky; top: 0; z-index: 10; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 62px; }
.logo { color: #fff; text-decoration: none; font-size: 1.2rem; letter-spacing: .2px; white-space: nowrap; }
.logo strong { color: var(--lime); }
.logo-ball { color: var(--lime); font-size: .8em; }
.main-nav a { color: #dfe9e2; text-decoration: none; margin-left: 20px; font-weight: 500; font-size: .95rem; }
.main-nav a:hover, .main-nav a.active { color: var(--lime); }
.nav-toggle { display: none; }
.nav-burger { display: none; cursor: pointer; padding: 10px; flex-direction: column; gap: 5px; }
.nav-burger span { display: block; width: 24px; height: 2.5px; background: #fff; border-radius: 2px; transition: transform .2s, opacity .2s; }

@media (max-width: 860px) {
  .nav-burger { display: flex; }
  .main-nav {
    display: none; position: absolute; top: 62px; left: 0; right: 0;
    background: var(--green-dark); flex-direction: column; padding: 8px 0 14px;
    box-shadow: 0 12px 24px rgba(0,0,0,.25);
  }
  .main-nav a { margin: 0; padding: 13px 24px; border-left: 3px solid transparent; }
  .main-nav a.active { border-left-color: var(--lime); }
  .nav-toggle:checked ~ .site-header .main-nav { display: flex; }
  .nav-toggle:checked ~ .site-header .nav-burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle:checked ~ .site-header .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .site-header .nav-burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

/* hero */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 70%);
  color: #fff; padding: 72px 0;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(200,240,75,.18) 0, transparent 40%),
    linear-gradient(135deg, var(--green-dark) 0%, var(--green) 70%);
}
.hero h1 { font-size: clamp(1.8rem, 4.5vw, 2.9rem); line-height: 1.15; margin-bottom: 16px; }
.hero p { max-width: 560px; font-size: 1.1rem; color: #e4eee7; margin-bottom: 26px; }

/* sections — alleen verticale padding (longhand!), anders overschrijft dit de
   horizontale padding van .container op elementen met class="container section" */
.section { padding-top: 44px; padding-bottom: 8px; }
.section h2 { font-size: 1.5rem; margin-bottom: 16px; color: var(--green-dark); }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.more { font-weight: 600; text-decoration: none; }
.cols { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.center { text-align: center; padding-bottom: 60px; }
.crumbs { font-size: .85rem; color: var(--muted); margin-bottom: 14px; }
.crumbs a { color: var(--muted); }
.lead { font-size: 1.08rem; color: #33443d; max-width: 760px; margin-bottom: 18px; }
.cat-head { margin: 30px 0 14px; color: var(--green-dark); }

/* band */
.band { background: #e8f0e6; margin-top: 40px; padding: 40px 0; }
.band h2 { color: var(--green-dark); margin-bottom: 14px; }

/* rules & tips */
.rules-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.rule { background: var(--card); border-radius: var(--radius); padding: 18px; box-shadow: 0 1px 4px rgba(0,0,0,.06); }
.rule span {
  display: inline-flex; width: 32px; height: 32px; border-radius: 50%;
  background: var(--lime); color: var(--green-dark); font-weight: 700;
  align-items: center; justify-content: center; margin-bottom: 10px;
}
.tips { padding-left: 22px; max-width: 800px; }
.tips li { margin-bottom: 10px; }

/* buttons */
.btn {
  display: inline-block; padding: 11px 20px; border-radius: 999px; border: 0;
  text-decoration: none; font-weight: 600; font-size: .95rem; cursor: pointer;
  transition: transform .08s, box-shadow .08s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--lime); color: var(--green-dark); }
.btn-amazon { background: var(--amazon); color: #1a1300; }
.btn-amazon:hover { background: var(--amazon-dark); }
.btn-ghost { background: transparent; color: var(--green); border: 1.5px solid var(--green); }
.btn-lg { padding: 14px 28px; font-size: 1.05rem; }

/* product cards */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.card {
  background: var(--card); border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 1px 5px rgba(0,0,0,.07); display: flex; flex-direction: column;
}
.card-img { display: flex; align-items: center; justify-content: center; height: 210px; background: #fff; padding: 14px; }
.card-img img { max-height: 100%; object-fit: contain; }
.img-placeholder { font-size: 3.4rem; opacity: .45; }
.img-placeholder.big { font-size: 6rem; }
.card-body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-body h3 { font-size: 1.02rem; line-height: 1.35; }
.price { color: var(--green-dark); font-weight: 700; }
.price.big { font-size: 1.5rem; margin: 8px 0; }
.price.big small { font-size: .8rem; color: var(--muted); font-weight: 400; }
.card-actions { margin-top: auto; display: flex; gap: 8px; flex-wrap: wrap; }
.card-actions .btn { padding: 9px 14px; font-size: .87rem; }
.badge {
  display: inline-block; font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px; padding: 3px 10px; border-radius: 999px; width: fit-content;
}
.badge-cat { background: #e4efe0; color: var(--green-dark); }
.badge-winner { background: var(--lime); color: var(--green-dark); }

/* compare links on home */
.compare-links { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 14px; }
.compare-link {
  background: var(--card); border-radius: var(--radius); padding: 18px 20px; text-decoration: none;
  box-shadow: 0 1px 5px rgba(0,0,0,.07); color: var(--ink); display: flex; flex-direction: column; gap: 4px;
}
.compare-link span { color: var(--green); font-size: .9rem; font-weight: 600; }
.compare-link:hover { box-shadow: 0 3px 10px rgba(0,0,0,.12); }

/* product page */
.product-hero { display: grid; grid-template-columns: 380px 1fr; gap: 34px; margin-bottom: 34px; }
.product-gallery { display: flex; flex-direction: column; gap: 10px; }
.gallery-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.thumb {
  width: 64px; height: 64px; border: 2px solid #dfe7dd; border-radius: 9px;
  background: #fff; cursor: pointer; padding: 4px; transition: border-color .1s;
}
.thumb img { max-width: 100%; max-height: 100%; object-fit: contain; }
.thumb.current, .thumb:hover { border-color: var(--green); }
.mini-note-inline { font-size: .82rem; color: var(--muted); }
.product-hero-img {
  position: relative;
  background: #fff; border-radius: var(--radius); padding: 20px; display: flex;
  align-items: center; justify-content: center; min-height: 320px; box-shadow: 0 1px 5px rgba(0,0,0,.07);
}
.gallery-main { max-width: 100%; max-height: 340px; object-fit: contain; }
.gallery-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border: none; border-radius: 50%;
  background: rgba(255,255,255,.9); color: var(--green-dark);
  box-shadow: 0 1px 6px rgba(0,0,0,.18); cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background .12s, transform .12s;
}
.gallery-nav:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.gallery-nav.prev { left: 10px; }
.gallery-nav.next { right: 10px; }
.gallery-zoom {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px; border: none; border-radius: 8px;
  background: rgba(255,255,255,.9); color: var(--green-dark);
  box-shadow: 0 1px 5px rgba(0,0,0,.16); cursor: zoom-in;
  display: flex; align-items: center; justify-content: center; transition: background .12s;
}
.gallery-zoom:hover { background: #fff; }

/* lightbox (schermvullend vergroten) */
body.lb-lock { overflow: hidden; }
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(10, 20, 16, .92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .18s ease;
}
.lightbox[hidden] { display: none; } /* het hidden-attribuut moet de laag écht verbergen */
.lightbox.open { opacity: 1; }
.lb-stage { margin: 0; max-width: 92vw; max-height: 92vh; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.lb-img {
  max-width: 92vw; max-height: 84vh; object-fit: contain;
  background: #fff; border-radius: 8px; box-shadow: 0 8px 40px rgba(0,0,0,.5);
}
.lb-counter { color: #eaf3ee; font-size: .9rem; letter-spacing: .02em; }
.lb-close {
  position: absolute; top: 18px; right: 20px;
  width: 44px; height: 44px; border: none; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background .12s;
}
.lb-close:hover { background: rgba(255,255,255,.25); }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border: none; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background .12s;
}
.lb-nav:hover { background: rgba(255,255,255,.25); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
@media (max-width: 640px) {
  .lb-nav { width: 44px; height: 44px; }
  .lb-prev { left: 6px; } .lb-next { right: 6px; }
  .lb-close { top: 10px; right: 10px; }
}
.product-hero-info h1 { font-size: 1.7rem; line-height: 1.25; margin: 8px 0 10px; }
.brand { color: var(--muted); margin-bottom: 6px; }
.stars { color: #eab308; font-size: 1.1rem; letter-spacing: 2px; }
.rating-num { color: var(--muted); font-size: .85rem; margin-left: 6px; letter-spacing: 0; }
.mini-note { font-size: .78rem; color: var(--muted); margin-top: 10px; }
.mini-link { font-size: .85rem; }
.product-copy { max-width: 780px; }
.product-copy h2 { margin: 26px 0 10px; color: var(--green-dark); }
.product-copy p { margin-bottom: 14px; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 24px 0; }
.pros, .cons { border-radius: var(--radius); padding: 18px 20px; }
.pros { background: #e9f5e4; }
.cons { background: #fdf0e9; }
.pros h3, .cons h3 { margin-bottom: 10px; font-size: 1rem; }
.pros ul, .cons ul { padding-left: 20px; }
.pros li { list-style: "✓  "; }
.cons li { list-style: "—  "; }

/* vergelijkingspagina */
.cmp-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.cmp-card {
  background: var(--card); border-radius: var(--radius); padding: 22px;
  box-shadow: 0 1px 5px rgba(0,0,0,.07); display: flex; flex-direction: column; gap: 7px;
  position: relative;
}
.cmp-card.winner { outline: 2.5px solid var(--lime); box-shadow: 0 6px 22px rgba(14,92,70,.16); }
.badge-rank { background: #e6ebe4; color: #4b5a52; }
.cmp-card-img { display: flex; align-items: center; justify-content: center; height: 185px; margin: 6px 0 4px; }
.cmp-card-img img { max-height: 100%; max-width: 100%; object-fit: contain; }
.cmp-name { font-size: 1.03rem; line-height: 1.35; }
.cmp-brand { color: var(--muted); font-size: .87rem; }
.cmp-card .price { font-size: 1.15rem; }
.cmp-usps { list-style: none; margin: 2px 0 4px; padding: 0; }
.cmp-usps li { position: relative; padding-left: 22px; margin-bottom: 6px; font-size: .88rem; color: #33443d; }
.cmp-usps li::before { content: "✓"; position: absolute; left: 0; color: #2e7d32; font-weight: 800; }
.cmp-card-actions { margin-top: auto; display: flex; flex-direction: column; gap: 8px; padding-top: 8px; }
.advice-list { display: flex; flex-direction: column; gap: 12px; margin: 18px 0 14px; max-width: 820px; }
.advice-item {
  background: var(--card); border-radius: var(--radius); padding: 18px 22px;
  box-shadow: 0 1px 5px rgba(0,0,0,.07); border-left: 4px solid #d7e0d5;
}
.advice-item.winner { border-left-color: var(--lime); }
.advice-head { display: flex; justify-content: space-between; gap: 14px; align-items: baseline; flex-wrap: wrap; margin-bottom: 6px; }
.advice-item p { margin-bottom: 10px; }
.cmp-card-actions .btn { text-align: center; }
.cmp-card-actions .mini-link { text-align: center; font-size: .87rem; }

.table-wrap { overflow-x: auto; background: var(--card); border-radius: var(--radius); box-shadow: 0 1px 5px rgba(0,0,0,.07); }
.compare-table { border-collapse: collapse; width: 100%; min-width: 640px; }
.compare-table col.win-col { background: #f8fcec; }
.compare-table th, .compare-table td { padding: 14px 18px; border-bottom: 1px solid #edf1ec; vertical-align: top; text-align: left; }
.compare-table thead th { border-bottom: 2px solid #dfe7dd; vertical-align: bottom; }
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table td:first-child {
  font-weight: 700; color: var(--muted); width: 140px; font-size: .78rem;
  text-transform: uppercase; letter-spacing: .5px; padding-top: 17px;
}
.cmp-th-img { display: flex; height: 64px; align-items: center; justify-content: flex-start; margin-bottom: 6px; }
.cmp-th-img img { max-height: 100%; max-width: 90px; object-fit: contain; }
.cmp-th-name { font-size: .92rem; line-height: 1.3; font-weight: 700; }
.cmp-pros, .cmp-cons { list-style: none; margin: 0; padding: 0; font-size: .88rem; }
.cmp-pros li, .cmp-cons li { position: relative; padding-left: 22px; margin-bottom: 7px; }
.cmp-pros li::before { content: "✓"; position: absolute; left: 0; color: #2e7d32; font-weight: 800; }
.cmp-cons li::before { content: "✕"; position: absolute; left: 0; color: #c0392b; font-weight: 800; }
.cta-row td { padding: 18px; }

/* info cards (home) */
.info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; margin-top: 26px; }
.info-card {
  background: var(--card); border-radius: var(--radius); padding: 20px; text-decoration: none;
  color: var(--ink); box-shadow: 0 1px 5px rgba(0,0,0,.07); display: flex; flex-direction: column; gap: 12px;
  border-top: 3px solid var(--lime); transition: box-shadow .1s, transform .1s;
}
.info-card:hover { box-shadow: 0 4px 14px rgba(0,0,0,.13); transform: translateY(-2px); }
.info-card-head { display: flex; align-items: center; gap: 12px; }
.info-card-head strong { font-size: 1.02rem; line-height: 1.3; }
.info-icon {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 11px; background: #e9f2e4;
  display: flex; align-items: center; justify-content: center;
}
.info-icon svg { display: block; }
.info-desc { color: var(--muted); font-size: .9rem; }
.info-btn { margin-top: auto; width: fit-content; padding: 8px 16px; font-size: .87rem; }
.info-card:hover .info-btn { background: var(--green); color: #fff; border-color: var(--green); }
.section-more { margin-top: 18px; font-weight: 600; }

/* artikel / landingspagina's */
.article { max-width: 800px; }
.article h2 { margin-top: 34px; scroll-margin-top: 80px; }
.article p { margin-bottom: 14px; }
.article ul, .article ol { margin: 0 0 16px 22px; }
.article li { margin-bottom: 8px; }

/* landingspagina-componenten */
.page-hero {
  background:
    radial-gradient(circle at 88% 15%, rgba(200,240,75,.16) 0, transparent 45%),
    linear-gradient(135deg, var(--green-dark) 0%, var(--green) 75%);
  color: #fff; padding: 46px 0 50px;
}
.page-hero .crumbs, .page-hero .crumbs a { color: #a9c6b6; }
.page-hero h1 { font-size: clamp(1.7rem, 4vw, 2.5rem); line-height: 1.18; max-width: 780px; margin: 6px 0 14px; }
.page-hero .lead { color: #dcebe1; max-width: 720px; font-size: 1.08rem; margin: 0; }
.landing h2 { color: var(--green-dark); font-size: 1.45rem; margin: 0 0 18px; scroll-margin-top: 80px; }
.landing .section { padding-top: 40px; padding-bottom: 4px; }
.landing p { max-width: 760px; }
.landing .section > p { margin-bottom: 14px; }

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; margin: 20px 0; }
.feature-card {
  background: var(--card); border-radius: var(--radius); padding: 20px;
  box-shadow: 0 1px 5px rgba(0,0,0,.07); border-top: 3px solid var(--lime);
}
.feature-card h3 { font-size: 1.02rem; margin-bottom: 6px; }
.feature-card p { font-size: .92rem; color: #44534c; margin: 0; }

.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: center; }
.diagram-card { background: var(--card); border-radius: var(--radius); padding: 18px; box-shadow: 0 1px 5px rgba(0,0,0,.07); }
.diagram-card figcaption { font-size: .82rem; color: var(--muted); text-align: center; margin-top: 8px; }
.diagram-card svg { width: 100%; height: auto; display: block; }

.step-flow { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; margin: 20px 0; counter-reset: step; }
.step {
  background: var(--card); border-radius: var(--radius); padding: 18px;
  box-shadow: 0 1px 5px rgba(0,0,0,.07); counter-increment: step;
}
.step strong { display: flex; align-items: center; gap: 11px; margin-bottom: 8px; line-height: 1.3; }
.step strong::before {
  content: counter(step);
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%;
  background: var(--lime); color: var(--green-dark); font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.step p { font-size: .92rem; color: #44534c; margin: 0; }

.do-dont { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0; }
.do-card, .dont-card { border-radius: var(--radius); padding: 20px 22px; }
.do-card { background: #e9f5e4; border: 1px solid #d3e8ca; }
.dont-card { background: #fdf0e9; border: 1px solid #f2ddd0; }
.do-card h3, .dont-card h3 { font-size: 1rem; margin-bottom: 10px; }
.do-card ul, .dont-card ul { list-style: none; margin: 0; padding: 0; }
.do-card li, .dont-card li { padding-left: 26px; position: relative; margin-bottom: 9px; font-size: .95rem; }
.do-card li::before { content: "✓"; position: absolute; left: 0; color: #2e7d32; font-weight: 800; }
.dont-card li::before { content: "✕"; position: absolute; left: 0; color: #c0392b; font-weight: 800; }

.callout {
  display: flex; gap: 14px; align-items: flex-start; background: #f6fbe8;
  border-left: 4px solid var(--lime); border-radius: 10px; padding: 16px 18px;
  margin: 22px 0; max-width: 760px;
}
.co-badge {
  flex: 0 0 auto; background: var(--green-dark); color: var(--lime); border-radius: 999px;
  padding: 3px 13px; font-size: .72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .6px; margin-top: 2px; white-space: nowrap;
}
.callout p { margin: 0; font-size: .95rem; }

/* tijdlijn (geschiedenis) */
.timeline { position: relative; margin: 26px 0 10px; padding-left: 30px; }
.timeline::before { content: ""; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 3px; background: #cfe0d3; border-radius: 2px; }
.tl-item { position: relative; padding: 0 0 30px 18px; }
.tl-item::before {
  content: ""; position: absolute; left: -29px; top: 4px; width: 17px; height: 17px;
  border-radius: 50%; background: var(--lime); border: 3.5px solid var(--green-dark);
}
.tl-year { display: inline-block; background: var(--green-dark); color: var(--lime); font-weight: 800;
  border-radius: 999px; padding: 3px 14px; font-size: .85rem; margin-bottom: 8px; letter-spacing: .5px; }
.tl-item h2 { font-size: 1.2rem; margin-bottom: 8px; }
.tl-item p { margin: 0; color: #33443d; }

/* racketvormen & niveaus */
.shape-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; margin: 20px 0; }
.shape-card { background: var(--card); border-radius: var(--radius); padding: 22px; text-align: center; box-shadow: 0 1px 5px rgba(0,0,0,.07); }
.shape-card svg { height: 92px; width: auto; margin: 0 auto 10px; display: block; }
.shape-card h3 { margin-bottom: 4px; }
.shape-tag { display: inline-block; background: #e4efe0; color: var(--green-dark); font-size: .74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px; padding: 3px 11px; border-radius: 999px; margin-bottom: 10px; }
.shape-card p { font-size: .9rem; color: #44534c; margin: 0; }
.level-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin: 20px 0; }
.level-card { background: var(--card); border-radius: var(--radius); padding: 22px; box-shadow: 0 1px 5px rgba(0,0,0,.07); display: flex; flex-direction: column; gap: 8px; }
.level-card.lv-1 { border-top: 4px solid var(--lime); }
.level-card.lv-2 { border-top: 4px solid var(--green); }
.level-card.lv-3 { border-top: 4px solid var(--green-dark); }
.level-card h3 { font-size: 1.05rem; }
.level-card ul { list-style: none; margin: 0; padding: 0; }
.level-card li { padding-left: 22px; position: relative; margin-bottom: 7px; font-size: .92rem; color: #33443d; }
.level-card li::before { content: "›"; position: absolute; left: 4px; color: var(--green); font-weight: 800; }
.price-chip { align-self: flex-start; background: var(--green-dark); color: var(--lime); border-radius: 999px; padding: 4px 14px; font-weight: 700; font-size: .85rem; }
.vs-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0; }
.vs-card { background: var(--card); border-radius: var(--radius); padding: 20px 22px; box-shadow: 0 1px 5px rgba(0,0,0,.07); border-top: 3px solid #b9cfc2; }
.vs-card.accent { border-top-color: var(--lime); }
.vs-card h3 { margin-bottom: 8px; font-size: 1rem; }
.vs-card p { font-size: .92rem; color: #44534c; margin: 0; }
.promo-block {
  background: #eef5e9; border-radius: var(--radius); padding: 24px; margin: 34px 0;
  border: 1px solid #dbe8d4;
}
.promo-title { margin-top: 0 !important; }
.promo-block > p { margin-bottom: 16px; }
.promo-block .grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.promo-more { margin-top: 18px; text-align: center; }
.faq details {
  background: var(--card); border-radius: 10px; margin-bottom: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06); overflow: hidden;
}
.faq summary { cursor: pointer; font-weight: 600; padding: 15px 18px; list-style: none; position: relative; }
.faq summary::after { content: "+"; position: absolute; right: 18px; color: var(--green); font-size: 1.2rem; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 18px 15px; color: #33443d; }
.cta-band {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: var(--radius); color: #fff; padding: 30px 28px; margin-top: 40px; text-align: center;
}
.cta-band h2 { color: #fff !important; margin: 0 0 8px !important; }
.cta-band p { color: #dfece3; }
.cta-band .btn { margin: 6px 6px 0; }
.cta-band .btn-ghost { color: #fff; border-color: rgba(255,255,255,.6); }

/* footer */
.site-footer { background: var(--green-dark); color: #cfe0d5; margin-top: 60px; padding: 38px 0 20px; font-size: .9rem; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 1.2fr; gap: 30px; }
.footer-title { color: #fff; font-weight: 700; margin-bottom: 8px; }
.footer-grid nav { display: flex; flex-direction: column; }
.footer-grid nav a { color: #cfe0d5; text-decoration: none; padding: 3px 0; }
.footer-grid nav a:hover { color: var(--lime); }
.site-footer .disclosure { color: #9fbcac; font-size: .82rem; }
.copyright { margin-top: 26px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.12); color: #9fbcac; font-size: .82rem; }

@media (max-width: 760px) {
  .cols, .pros-cons, .product-hero, .footer-grid,
  .split, .do-dont, .vs-cards { grid-template-columns: 1fr; }
  .product-hero-img { min-height: 240px; }
  .hero { padding: 52px 0; }
  .section { padding-top: 34px; padding-bottom: 8px; }
  .card-img { height: 180px; }
  .btn-lg { display: block; text-align: center; }
}
