/* VoordeelBatterijen.nl - Stylesheet v20260626 */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:   #1a6b3a;
  --green:        #2e8b57;
  --green-light:  #3aaa6c;
  --green-pale:   #e8f5ee;
  --anthracite:   #1e2328;
  --anthracite-2: #2d3540;
  --grey-dark:    #374151;
  --grey-mid:     #6b7280;
  --grey-light:   #f3f4f6;
  --white:        #ffffff;
  --orange:       #f59e0b;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.10);
  --shadow-md:    0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:    0 8px 32px rgba(0,0,0,.16);
  --radius:       8px;
  --radius-lg:    14px;
  --transition:   .22s ease;
  --max-w:        1200px;
  --font-head:    'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 17px; line-height: 1.7; color: var(--grey-dark); background: var(--white); }

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.22; color: var(--anthracite); letter-spacing: -.02em; }
h1 { font-size: clamp(2rem,5vw,3.4rem); }
h2 { font-size: clamp(1.45rem,3vw,2.15rem); }
h3 { font-size: clamp(1.1rem,2vw,1.35rem); }
h4 { font-size: 1rem; font-weight: 600; }
p { max-width: 70ch; }
a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-dark); }
img { max-width: 100%; height: auto; display: block; }

/* ---- UTILITY ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5rem 0; }
.section--grey { background: var(--grey-light); }
.section--dark { background: var(--anthracite); color: var(--white); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--green { background: var(--green-pale); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header p { margin: .75rem auto 0; color: var(--grey-mid); font-size: 1.05rem; }
.badge { display: inline-block; background: var(--green); color: #fff; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: .2em .7em; border-radius: 50px; }
.badge--orange { background: var(--orange); color: var(--anthracite); }
.tag { display: inline-block; background: var(--green-pale); color: var(--green-dark); font-size: .75rem; font-weight: 600; padding: .2em .65em; border-radius: 4px; }
.stars { color: var(--orange); letter-spacing: .05em; }
.disclosure { font-size: .78rem; color: var(--grey-mid); }
.disclosure a { color: var(--grey-mid); text-decoration: underline; }

/* ---- BUTTONS ---- */
.btn { display: inline-flex; align-items: center; gap: .45rem; font-family: var(--font-body); font-weight: 600; font-size: .95rem; padding: .72rem 1.55rem; border-radius: var(--radius); border: 2px solid transparent; cursor: pointer; transition: all var(--transition); text-decoration: none; white-space: nowrap; }
.btn-primary { background: var(--green); color: #fff; border-color: var(--green); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--green-dark); border-color: #fff; }
.btn-white:hover { background: var(--green-pale); border-color: var(--green-pale); color: var(--green-dark); }
.btn-lg { padding: .9rem 2rem; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---- SKIP LINK ---- */
.skip-link { position: absolute; top: -999px; left: 0; background: var(--green); color: #fff; padding: .5rem 1rem; z-index: 9999; }
.skip-link:focus { top: 0; }

/* ---- NAVBAR ---- */
.navbar { position: sticky; top: 0; z-index: 900; background: var(--white); border-bottom: 1px solid #e5e7eb; transition: box-shadow var(--transition); }
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 1.5rem; }
.navbar__logo { display: flex; align-items: center; gap: .6rem; font-weight: 800; font-size: 1.15rem; color: var(--anthracite); text-decoration: none; flex-shrink: 0; }
.navbar__logo-icon { width: 36px; height: 36px; background: var(--green); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.navbar__logo-icon svg { width: 22px; height: 22px; fill: #fff; }
.navbar__logo span { color: var(--green); }
.navbar__menu { display: flex; align-items: center; gap: .25rem; list-style: none; }
.navbar__menu a { font-size: .9rem; font-weight: 500; color: var(--grey-dark); padding: .4rem .75rem; border-radius: 6px; transition: background var(--transition), color var(--transition); white-space: nowrap; }
.navbar__menu a:hover, .navbar__menu a.active { background: var(--green-pale); color: var(--green-dark); }
.navbar__cta { flex-shrink: 0; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: .5rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--anthracite); margin: 5px 0; transition: all .25s; border-radius: 2px; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO ---- */
.hero { background: linear-gradient(135deg, var(--anthracite) 0%, var(--anthracite-2) 50%, #1a3a2a 100%); color: #fff; padding: 5.5rem 0 4.5rem; overflow: hidden; position: relative; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(46,139,87,.25) 0%, transparent 60%); pointer-events: none; }
.hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; position: relative; }
.hero__content { }
.hero__eyebrow { display: flex; align-items: center; gap: .6rem; margin-bottom: 1.2rem; font-size: .85rem; font-weight: 600; color: var(--green-light); text-transform: uppercase; letter-spacing: .1em; }
.hero__eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--green-light); display: block; }
.hero h1 { color: #fff; margin-bottom: 1.2rem; }
.hero h1 em { color: var(--green-light); font-style: normal; }
.hero__sub { font-size: 1.1rem; color: #c8d9d0; margin-bottom: 2rem; max-width: 50ch; }
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.2rem; }
.hero__trust { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.hero__trust-item { display: flex; align-items: center; gap: .4rem; font-size: .82rem; color: #c8d9d0; }
.hero__trust-item svg { width: 15px; height: 15px; fill: var(--green-light); flex-shrink: 0; }
.hero__visual { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.hero__card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); padding: 1.1rem; backdrop-filter: blur(8px); }
.hero__card-img { width: 100%; aspect-ratio: 1; object-fit: contain; border-radius: 6px; background: rgba(255,255,255,.06); padding: .5rem; }
.hero__card-name { font-size: .78rem; font-weight: 600; color: #e0ede8; margin-top: .6rem; line-height: 1.3; }
.hero__card-price { font-size: 1rem; font-weight: 700; color: var(--green-light); margin-top: .2rem; }
.hero__card-btn { display: block; text-align: center; margin-top: .7rem; background: var(--green); color: #fff; font-size: .75rem; font-weight: 600; padding: .4rem .7rem; border-radius: 6px; transition: background var(--transition); }
.hero__card-btn:hover { background: var(--green-dark); color: #fff; }

/* ---- TRUST BAR ---- */
.trustbar { background: var(--green); color: #fff; padding: 1rem 0; }
.trustbar__inner { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.trustbar__item { display: flex; align-items: center; gap: .5rem; font-size: .85rem; font-weight: 600; }
.trustbar__item svg { width: 16px; height: 16px; fill: rgba(255,255,255,.85); flex-shrink: 0; }

/* ---- CATEGORY CARDS ---- */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; }
.cat-card { background: var(--white); border: 1.5px solid #e5e7eb; border-radius: var(--radius-lg); padding: 1.5rem 1rem; text-align: center; text-decoration: none; transition: all var(--transition); }
.cat-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); transform: translateY(-3px); color: var(--grey-dark); }
.cat-card__icon { width: 52px; height: 52px; background: var(--green-pale); border-radius: 12px; margin: 0 auto .75rem; display: flex; align-items: center; justify-content: center; }
.cat-card__icon svg { width: 28px; height: 28px; fill: var(--green); }
.cat-card__name { font-weight: 600; font-size: .9rem; color: var(--anthracite); }
.cat-card__count { font-size: .75rem; color: var(--grey-mid); margin-top: .2rem; }

/* ---- PRODUCT CARDS ---- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem; }
.product-card { background: var(--white); border: 1.5px solid #e5e7eb; border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: all var(--transition); }
.product-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.product-card__img-wrap { aspect-ratio: 1; background: var(--grey-light); overflow: hidden; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.product-card__img-wrap img { width: 100%; height: 100%; object-fit: contain; }
.product-card__body { padding: 1rem 1rem 1.2rem; flex: 1; display: flex; flex-direction: column; }
.product-card__brand { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--grey-mid); margin-bottom: .25rem; }
.product-card__name { font-weight: 600; font-size: .9rem; color: var(--anthracite); line-height: 1.35; flex: 1; margin-bottom: .5rem; }
.product-card__stars { margin-bottom: .4rem; font-size: .82rem; }
.product-card__price { font-size: 1.25rem; font-weight: 800; color: var(--green-dark); margin-bottom: .85rem; }
.product-card__price small { font-size: .8rem; font-weight: 500; color: var(--grey-mid); }
.product-card__disclosure { font-size: .68rem; color: var(--grey-mid); margin-top: .5rem; text-align: center; }

/* ---- USE-CASE CARDS ---- */
.usecase-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.usecase-card { background: var(--white); border-radius: var(--radius-lg); border: 1.5px solid #e5e7eb; overflow: hidden; transition: all var(--transition); display: flex; flex-direction: column; }
.usecase-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--green); }
.usecase-card__header { background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); padding: 1.5rem; display: flex; align-items: center; gap: .75rem; }
.usecase-card__icon { width: 44px; height: 44px; background: rgba(255,255,255,.18); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.usecase-card__icon svg { width: 24px; height: 24px; fill: #fff; }
.usecase-card__title { font-size: 1rem; font-weight: 700; color: #fff; }
.usecase-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.usecase-card__desc { font-size: .88rem; color: var(--grey-dark); margin-bottom: 1rem; flex: 1; }
.usecase-card__product { display: flex; align-items: center; gap: .75rem; background: var(--green-pale); border-radius: var(--radius); padding: .7rem .85rem; text-decoration: none; transition: background var(--transition); }
.usecase-card__product:hover { background: #c5e8d5; }
.usecase-card__product img { width: 42px; height: 42px; object-fit: contain; background: #fff; border-radius: 6px; padding: 3px; flex-shrink: 0; }
.usecase-card__product-info { flex: 1; min-width: 0; }
.usecase-card__product-name { font-size: .8rem; font-weight: 600; color: var(--anthracite); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.usecase-card__product-price { font-size: .85rem; font-weight: 700; color: var(--green-dark); }
.usecase-card__product-arrow { color: var(--green); flex-shrink: 0; }

/* ---- STATS ---- */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; text-align: center; }
.stat__number { font-size: clamp(2rem,4vw,3rem); font-weight: 800; color: var(--green-light); display: block; }
.stat__label { font-size: .88rem; color: #c8d9d0; margin-top: .25rem; }

/* ---- BLOG CARDS ---- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.blog-card { background: var(--white); border: 1.5px solid #e5e7eb; border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: all var(--transition); }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--green); }
.blog-card__img { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--green-pale) 0%, #c5e8d5 100%); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.blog-card__img svg { width: 56px; height: 56px; fill: var(--green); opacity: .35; }
.blog-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.blog-card__cat { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--green); margin-bottom: .5rem; }
.blog-card__title { font-size: 1rem; font-weight: 700; color: var(--anthracite); line-height: 1.35; margin-bottom: .6rem; flex: 1; }
.blog-card__meta { font-size: .78rem; color: var(--grey-mid); margin-top: .75rem; }
.blog-card__link { text-decoration: none; color: inherit; }
.blog-card__link:hover .blog-card__title { color: var(--green-dark); }

/* ---- FAQ ---- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e5e7eb; }
.faq-item:first-child { border-top: 1px solid #e5e7eb; }
.faq-btn { width: 100%; background: none; border: none; text-align: left; padding: 1.2rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer; font-size: 1rem; font-weight: 600; color: var(--anthracite); }
.faq-btn svg { width: 20px; height: 20px; flex-shrink: 0; transition: transform var(--transition); fill: var(--green); }
.faq-btn[aria-expanded="true"] svg { transform: rotate(45deg); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height .3s ease; }
.faq-answer__inner { padding-bottom: 1.1rem; font-size: .95rem; color: var(--grey-dark); }

/* ---- FOOTER ---- */
.footer { background: var(--anthracite); color: #c8d9d0; padding: 3.5rem 0 1.5rem; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer__brand { }
.footer__logo { display: flex; align-items: center; gap: .6rem; font-weight: 800; font-size: 1.1rem; color: #fff; margin-bottom: .9rem; text-decoration: none; }
.footer__logo-icon { width: 32px; height: 32px; background: var(--green); border-radius: 7px; display: flex; align-items: center; justify-content: center; }
.footer__logo-icon svg { width: 20px; height: 20px; fill: #fff; }
.footer__desc { font-size: .85rem; line-height: 1.7; max-width: 36ch; }
.footer__disclosure { font-size: .75rem; margin-top: .9rem; color: #7a9080; }
.footer__disclosure a { color: #7a9080; text-decoration: underline; }
.footer__col h4 { color: #fff; font-size: .88rem; margin-bottom: .9rem; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: .45rem; }
.footer__links a { font-size: .83rem; color: #c8d9d0; transition: color var(--transition); }
.footer__links a:hover { color: var(--green-light); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.25rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem; font-size: .78rem; color: #7a9080; }
.footer__social { display: flex; gap: .75rem; }
.footer__social a { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; background: rgba(255,255,255,.08); border-radius: 6px; transition: background var(--transition); }
.footer__social a:hover { background: var(--green); }
.footer__social svg { width: 16px; height: 16px; fill: #c8d9d0; }

/* ---- BREADCRUMB ---- */
.breadcrumb { padding: 1rem 0; font-size: .82rem; color: var(--grey-mid); }
.breadcrumb a { color: var(--grey-mid); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { margin: 0 .4rem; }

/* ---- PRODUCT PAGE ---- */
.product-page { padding: 3rem 0 5rem; }
.product-page__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; }
.product-page__img-wrap { background: var(--grey-light); border-radius: var(--radius-lg); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; padding: 2rem; border: 1.5px solid #e5e7eb; }
.product-page__img-wrap img { width: 100%; height: 100%; object-fit: contain; }
.product-page__info { }
.product-page__brand { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--grey-mid); margin-bottom: .5rem; }
.product-page__title { margin-bottom: .75rem; }
.product-page__stars { display: flex; align-items: center; gap: .5rem; margin-bottom: 1.25rem; font-size: .9rem; color: var(--grey-mid); }
.product-page__price { font-size: 2rem; font-weight: 800; color: var(--green-dark); margin-bottom: .35rem; }
.product-page__delivery { font-size: .82rem; color: var(--grey-mid); display: flex; align-items: center; gap: .3rem; margin-bottom: 1.5rem; }
.product-page__delivery svg { width: 14px; height: 14px; fill: var(--green); }
.product-page__cta-group { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.75rem; }
.product-page__cta-note { font-size: .78rem; color: var(--grey-mid); display: flex; align-items: center; gap: .35rem; }
.product-page__cta-note svg { width: 13px; height: 13px; fill: var(--green); flex-shrink: 0; }
.product-page__desc { font-size: .95rem; color: var(--grey-dark); line-height: 1.75; margin-bottom: 1.5rem; }
.product-page__specs { border: 1.5px solid #e5e7eb; border-radius: var(--radius); overflow: hidden; }
.product-page__specs table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.product-page__specs tr:not(:last-child) { border-bottom: 1px solid #e5e7eb; }
.product-page__specs tr:nth-child(even) { background: var(--grey-light); }
.product-page__specs td { padding: .6rem .85rem; }
.product-page__specs td:first-child { font-weight: 600; color: var(--anthracite); width: 40%; }
.product-page__review { padding: 3rem 0 4rem; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 1.5rem 0; }
.pros, .cons { border-radius: var(--radius); padding: 1.25rem; }
.pros { background: #e8f5ee; }
.cons { background: #fff5f5; }
.pros h4 { color: #1a6b3a; margin-bottom: .75rem; }
.cons h4 { color: #c0392b; margin-bottom: .75rem; }
.pros ul, .cons ul { list-style: none; display: flex; flex-direction: column; gap: .45rem; }
.pros li, .cons li { font-size: .88rem; display: flex; align-items: flex-start; gap: .5rem; }
.pros li::before { content: ''; width: 16px; height: 16px; background: var(--green); border-radius: 50%; flex-shrink: 0; margin-top: .15em; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E"); background-size: cover; }
.cons li::before { content: ''; width: 16px; height: 16px; background: #e74c3c; border-radius: 50%; flex-shrink: 0; margin-top: .15em; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z'/%3E%3C/svg%3E"); background-size: cover; }

/* ---- AANBIEDINGEN PAGE ---- */
.filter-bar { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-btn { background: var(--white); border: 1.5px solid #e5e7eb; color: var(--grey-dark); font-size: .82rem; font-weight: 600; padding: .45rem 1rem; border-radius: 50px; cursor: pointer; transition: all var(--transition); }
.filter-btn:hover, .filter-btn.active { background: var(--green); border-color: var(--green); color: #fff; }

/* ---- BLOG PAGE ---- */
.article-header { background: linear-gradient(135deg, var(--anthracite) 0%, var(--anthracite-2) 100%); color: #fff; padding: 3.5rem 0 2.5rem; }
.article-header h1 { color: #fff; font-size: clamp(1.5rem,4vw,2.5rem); }
.article-header .meta { font-size: .85rem; color: #c8d9d0; margin-top: .75rem; }
.article-body { max-width: 760px; margin: 0 auto; padding: 2.5rem 1.25rem 4rem; }
.article-body h2 { margin: 2rem 0 .85rem; }
.article-body h3 { margin: 1.5rem 0 .6rem; }
.article-body p { margin-bottom: 1rem; }
.article-body ul { margin: 1rem 0 1rem 1.5rem; }
.article-body li { margin-bottom: .4rem; }
.article-cta-box { background: var(--green-pale); border: 1.5px solid #b8dfc8; border-radius: var(--radius-lg); padding: 1.5rem; margin: 2rem 0; }
.article-cta-box h3 { color: var(--green-dark); margin-bottom: .5rem; }
.author-block { display: flex; align-items: flex-start; gap: 1rem; background: var(--grey-light); border-radius: var(--radius); padding: 1.25rem; margin: 2rem 0; }
.author-avatar { width: 56px; height: 56px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.author-name { font-weight: 700; color: var(--anthracite); }
.author-bio { font-size: .85rem; color: var(--grey-mid); margin-top: .25rem; }
.readmore { }
.readmore-full[hidden] { display: none; }
.readmore-btn { background: none; border: none; color: var(--green); font-weight: 600; cursor: pointer; font-size: .88rem; padding: .35rem 0; }
.readmore-btn:hover { color: var(--green-dark); }

/* ---- COOKIE BANNER ---- */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--anthracite); color: #c8d9d0; padding: 1rem 1.25rem; z-index: 9800; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: .85rem; border-top: 2px solid var(--green); }
.cookie-banner[hidden] { display: none; }
.cookie-banner__text { flex: 1; min-width: 200px; }
.cookie-banner__text a { color: var(--green-light); text-decoration: underline; }
.cookie-banner__btns { display: flex; gap: .6rem; flex-wrap: wrap; }

/* ---- BACK TO TOP ---- */
.back-top { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 800; width: 42px; height: 42px; background: var(--green); color: #fff; border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); opacity: 0; pointer-events: none; transition: all var(--transition); }
.back-top.visible { opacity: 1; pointer-events: auto; }
.back-top:hover { background: var(--green-dark); transform: translateY(-2px); }
.back-top svg { width: 20px; height: 20px; fill: #fff; }

/* ---- CONTACT PAGE ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info { }
.contact-info__item { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1.25rem; }
.contact-info__icon { width: 38px; height: 38px; background: var(--green-pale); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info__icon svg { width: 20px; height: 20px; fill: var(--green); }
.contact-form { background: var(--grey-light); border-radius: var(--radius-lg); padding: 2rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: .35rem; color: var(--anthracite); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: .7rem .9rem; border: 1.5px solid #d1d5db; border-radius: var(--radius); font-size: .95rem; font-family: var(--font-body); background: #fff; transition: border-color var(--transition); color: var(--grey-dark); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success { display: none; background: var(--green-pale); border: 1px solid var(--green); border-radius: var(--radius); padding: 1rem; color: var(--green-dark); font-weight: 600; }

/* ---- 404 ---- */
.notfound { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 4rem 1rem; }
.notfound__code { font-size: 6rem; font-weight: 800; color: var(--green); line-height: 1; }
.notfound__title { font-size: 1.5rem; margin: 1rem 0 .75rem; }

/* ---- MOBILE MENU (hidden by default, only shown inside media query) ---- */
.mobile-menu { display: none; }

/* ---- FADE-IN ---- */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 860px) {
  .navbar__menu, .navbar__cta { display: none; }
  .hamburger { display: block; }
  .mobile-menu { display: none; position: fixed; inset: 0; top: 68px; background: var(--white); z-index: 850; padding: 1.5rem 1.25rem; overflow-y: auto; flex-direction: column; gap: .25rem; }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { font-size: 1rem; font-weight: 600; padding: .9rem 1rem; border-radius: 8px; color: var(--grey-dark); }
  .mobile-menu a:hover { background: var(--green-pale); color: var(--green-dark); }
  .mobile-menu .btn { margin-top: .5rem; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .pros-cons { grid-template-columns: 1fr; }
  .product-page__grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 3.5rem 0; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 3.5rem 0 3rem; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
}
