/* ============ VARIABLES ============ */
:root {
  --primary: #C8801F;
  --primary-dark: #A3660F;
  --primary-light: #E7A94D;
  --secondary: #F6D9A6;
  --cream: #FFF9F0;
  --cream-2: #FDF1DD;
  --text: #3A2E1F;
  --text-light: #6B5C48;
  --white: #FFFFFF;
  --green-ok: #4C7A3D;
  --red-warn: #B4432D;
  --shadow: 0 10px 30px rgba(60, 40, 10, 0.1);
  --shadow-sm: 0 4px 14px rgba(60, 40, 10, 0.08);
  --radius: 18px;
  --radius-sm: 10px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 96px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
}
h1, h2, h3, h4 {
  font-family: 'Fredoka', sans-serif;
  color: var(--text);
  line-height: 1.2;
  margin: 0 0 var(--space-3);
  font-weight: 600;
}
h1 { font-size: clamp(2.1rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 var(--space-3); color: var(--text-light); }
a { color: var(--primary-dark); text-decoration: none; }
a:hover { color: var(--primary); }
img { max-width: 100%; display: block; }
ul { padding-left: 1.2em; }
code { background: var(--cream-2); padding: 2px 6px; border-radius: 6px; font-size: 0.9em; word-break: break-word; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--primary-dark); color: var(--white);
  padding: 10px 18px; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 700; transition: top 0.2s ease;
}
.skip-link:focus { top: 0; color: var(--white); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: var(--primary); color: var(--primary-dark); }
.btn-outline:hover { background: var(--secondary); color: var(--text); }
.btn-light { background: var(--white); color: var(--primary-dark); }
.btn-light:hover { background: var(--secondary); }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 249, 240, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200, 128, 31, 0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { font-family: 'Fredoka', sans-serif; font-size: 1.3rem; color: var(--primary-dark); }
.logo-text strong { color: var(--text); }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a { font-weight: 700; color: var(--text); font-size: 0.96rem; white-space: nowrap; }
.main-nav a:hover { color: var(--primary-dark); }
.nav-cta { background: var(--primary); color: var(--white) !important; padding: 9px 18px; border-radius: 999px; }
.nav-cta:hover { background: var(--primary-dark); color: var(--white) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--text); border-radius: 3px; transition: 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  padding: var(--space-7) 0;
  background: linear-gradient(135deg, var(--cream-2), var(--secondary));
}
.hero-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--space-6); align-items: center; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--primary-dark);
  padding: 7px 16px; border-radius: 999px; font-weight: 800; font-size: 0.85rem;
  margin-bottom: var(--space-3); box-shadow: var(--shadow-sm);
}
.hero h1 { margin-bottom: var(--space-3); }
.hero p.lead { font-size: 1.15rem; max-width: 46ch; }
.hero-actions { display: flex; gap: 14px; margin-top: var(--space-4); flex-wrap: wrap; }
.hero-media { position: relative; }
.hero-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 460px; object-fit: cover; object-position: center top; }
.hero-badge {
  position: absolute; bottom: -22px; left: -22px;
  background: var(--white); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); padding: 14px 18px; display: flex; align-items: center; gap: 12px;
  max-width: 220px;
}
.hero-badge .num { font-family: 'Fredoka', sans-serif; font-size: 1.5rem; color: var(--primary); font-weight: 700; }
.hero-badge span.label { font-size: 0.82rem; color: var(--text-light); font-weight: 700; }

.page-hero {
  padding: var(--space-6) 0 var(--space-5);
  background: linear-gradient(135deg, var(--cream-2), var(--secondary) 120%);
  text-align: center;
}
.page-hero .breadcrumb { justify-content: center; }
.page-hero p.lead { max-width: 60ch; margin: 0 auto; }

/* ============ SECTIONS ============ */
section { padding: var(--space-7) 0; }
.section-alt { background: var(--white); }
.section-header { max-width: 680px; margin: 0 auto var(--space-6); text-align: center; }
.eyebrow {
  display: inline-block; color: var(--primary-dark); font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 8px;
}

.reveal-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-on-scroll.revealed { opacity: 1; transform: translateY(0); }

/* ============ CARDS GRID ============ */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card { position: relative; }
.card > img { width: 100%; height: 210px; object-fit: cover; transition: transform 0.45s ease; }
.card:hover > img { transform: scale(1.05); }
.card-body { padding: var(--space-4); display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-body h3 { margin-bottom: 2px; }
.card-body > p {
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden; margin-bottom: 4px;
}
.card-body .card-meta { font-size: 0.82rem; color: var(--primary-dark); font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; }
.card-body .card-link { margin-top: auto; font-weight: 800; display: inline-flex; align-items: center; gap: 6px; }

.icon-card {
  background: var(--white); border-radius: var(--radius); padding: var(--space-5);
  box-shadow: var(--shadow-sm); transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.icon-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.icon-card .icon-wrap {
  width: 56px; height: 56px; border-radius: 16px; background: var(--secondary);
  display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-3); color: var(--primary-dark);
}

/* ============ SWATCH / COLOR CARDS ============ */
.swatch { width: 34px; height: 34px; border-radius: 50%; border: 3px solid var(--white); box-shadow: 0 0 0 2px rgba(0,0,0,0.08); flex-shrink: 0; }
.swatch-row { display: flex; align-items: center; gap: 12px; }
.tag-pill {
  display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: 0.78rem; font-weight: 800;
}
.tag-ok { background: #E4F1DE; color: var(--green-ok); }
.tag-warn { background: #F6DDD5; color: var(--red-warn); }

/* ============ ZIGZAG / ALTERNATING ============ */
.zigzag { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); align-items: center; margin-bottom: var(--space-7); }
.zigzag:last-child { margin-bottom: 0; }
.zigzag.reverse .zigzag-media { order: 2; }
.zigzag.reverse .zigzag-text { order: 1; }
.zigzag-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 360px; object-fit: cover; }
.zigzag-text .eyebrow { margin-bottom: 6px; }

/* ============ VET BOX ============ */
.vet-box {
  display: flex; gap: var(--space-4); background: var(--cream-2);
  border-left: 5px solid var(--primary); border-radius: var(--radius-sm);
  padding: var(--space-4) var(--space-5); margin: var(--space-5) 0;
}
.vet-box .vet-icon {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; background: var(--primary);
  color: var(--white); display: flex; align-items: center; justify-content: center;
}
.vet-box h4 { margin-bottom: 6px; color: var(--primary-dark); }
.vet-box p:last-child { margin-bottom: 0; }

.warn-box {
  display: flex; gap: var(--space-4); background: #FBEDE8;
  border-left: 5px solid var(--red-warn); border-radius: var(--radius-sm);
  padding: var(--space-4) var(--space-5); margin: var(--space-5) 0;
}
.warn-box .vet-icon { background: var(--red-warn); }
.warn-box h4 { color: var(--red-warn); }

/* ============ TABLE ============ */
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
table { width: 100%; border-collapse: collapse; background: var(--white); min-width: 560px; }
th, td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--cream-2); }
th { background: var(--secondary); color: var(--text); font-family: 'Fredoka', sans-serif; font-weight: 600; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--cream-2); }

/* ============ FAQ ============ */
.faq-item { border-bottom: 1px solid var(--cream-2); padding: var(--space-3) 0; }
.faq-question {
  display: flex; align-items: center; justify-content: space-between; cursor: pointer;
  font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 1.05rem; padding: 8px 0;
  width: 100%; text-align: left; background: none; border: 0; color: inherit;
}
.faq-question:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; border-radius: 4px; }
.faq-question .plus { transition: transform 0.25s ease; color: var(--primary); flex-shrink: 0; margin-left: 12px; }
.faq-item.open .faq-question .plus { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer p { padding-top: 8px; }

/* ============ WIDGETS (calculators) ============ */
.widget-box {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: var(--space-5); border: 2px solid var(--secondary);
}
.widget-box h3 { display: flex; align-items: center; gap: 10px; }
.widget-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); margin: var(--space-4) 0; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-weight: 800; font-size: 0.88rem; color: var(--text); }
.field input, .field select {
  padding: 11px 14px; border-radius: 10px; border: 2px solid var(--cream-2); font-family: 'Nunito', sans-serif;
  font-size: 1rem; background: var(--cream);
}
.field input:focus, .field select:focus { outline: none; border-color: var(--primary); }
.widget-result {
  margin-top: var(--space-3); background: var(--cream-2); border-radius: var(--radius-sm);
  padding: var(--space-4); text-align: center;
}
.widget-result .big-number { font-family: 'Fredoka', sans-serif; font-size: 2.4rem; color: var(--primary-dark); font-weight: 700; }
.widget-result .unit { font-size: 1rem; color: var(--text-light); font-weight: 700; }

.checklist { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.checklist li {
  display: flex; align-items: center; gap: 12px; background: var(--white); padding: 12px 16px;
  border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); cursor: pointer; transition: 0.2s;
}
.checklist li.checked { background: #E4F1DE; }
.checklist li:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.checklist li .check-circle {
  width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--primary); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; color: var(--white);
}
.checklist li.checked .check-circle { background: var(--green-ok); border-color: var(--green-ok); }
.checklist li span.txt { flex: 1; }
.checklist li.checked span.txt { text-decoration: line-through; color: var(--text-light); }
.progress-bar { height: 10px; background: var(--cream-2); border-radius: 999px; overflow: hidden; margin: var(--space-3) 0; }
.progress-bar-fill { height: 100%; background: var(--primary); border-radius: 999px; transition: width 0.4s ease; width: 0%; }

/* Quiz */
.quiz-option {
  display: block; width: 100%; text-align: left; background: var(--cream); border: 2px solid var(--cream-2);
  border-radius: var(--radius-sm); padding: 14px 18px; margin-bottom: 10px; cursor: pointer; font-weight: 700;
  font-family: 'Nunito', sans-serif; font-size: 1rem; transition: 0.2s;
}
.quiz-option:hover { border-color: var(--primary-light); }
.quiz-option.selected { border-color: var(--primary); background: var(--secondary); }

/* Simulateur assurance */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); margin-top: var(--space-4); }
.plan-card { background: var(--cream); border-radius: var(--radius-sm); padding: var(--space-4); text-align: center; border: 2px solid var(--cream-2); }
.plan-card.highlight { border-color: var(--primary); background: var(--secondary); }
.plan-card .plan-price { font-family: 'Fredoka', sans-serif; font-size: 1.8rem; color: var(--primary-dark); margin: 6px 0; }

/* ============ CTA BAND ============ */
.cta-band {
  background: linear-gradient(120deg, var(--primary), var(--primary-dark));
  color: var(--white); border-radius: var(--radius); padding: var(--space-6);
  text-align: center; margin: 0 auto;
}
.cta-band h2, .cta-band p { color: var(--white); }
.cta-band .btn-light { margin-top: 10px; }

/* ============ BREADCRUMB ============ */
.breadcrumb { display: flex; gap: 8px; flex-wrap: wrap; font-size: 0.88rem; color: var(--text-light); margin-bottom: var(--space-3); }
.breadcrumb a { color: var(--text-light); font-weight: 700; }
.breadcrumb a:hover { color: var(--primary-dark); }

/* ============ BLOG ============ */
.blog-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: var(--space-5); justify-content: center; }
.filter-pill {
  padding: 8px 18px; border-radius: 999px; background: var(--white); border: 2px solid var(--cream-2);
  font-weight: 800; font-size: 0.86rem; cursor: pointer; color: var(--text);
}
.filter-pill.active, .filter-pill:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

article.post-content h2 { margin-top: var(--space-6); }
article.post-content h2[id] { scroll-margin-top: 90px; }
article.post-content h3 { margin-top: var(--space-5); }
article.post-content h4 { margin-top: var(--space-4); }
article.post-content p { font-size: 1.05rem; }
article.post-content ul, article.post-content ol { margin: 0 0 var(--space-4); padding-left: 1.3em; }
article.post-content li { font-size: 1.05rem; color: var(--text-light); margin-bottom: 8px; }
article.post-content li::marker { color: var(--primary); }
article.post-content a { text-decoration: underline; }
article.post-content .table-wrap, article.post-content table { margin: var(--space-4) 0 var(--space-5); }
article.post-content table { min-width: 0; width: 100%; border-collapse: collapse; background: var(--white); box-shadow: var(--shadow-sm); border-radius: var(--radius); overflow: hidden; }
article.post-content strong { color: var(--text); }
article.post-content figure { margin: var(--space-5) 0; }
article.post-content figure img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
article.post-content figcaption { margin-top: 8px; font-size: 0.88rem; color: var(--text-light); text-align: center; }
article.post-content hr { border: 0; border-top: 1px solid var(--cream-2); margin: var(--space-5) 0; }
article.post-content .callout {
  background: var(--cream-2); border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm); padding: 18px 22px; margin: 0 0 var(--space-5);
  font-size: 1.05rem;
}
.post-meta { display: flex; gap: 16px; flex-wrap: wrap; color: var(--text-light); font-weight: 700; font-size: 0.9rem; margin-bottom: var(--space-4); }
.post-hero-img { border-radius: var(--radius); width: 100%; height: 380px; object-fit: cover; margin-bottom: var(--space-5); box-shadow: var(--shadow); }

/* ============ FOOTER ============ */
.site-footer { background: var(--text); color: #E8DCC8; padding: var(--space-7) 0 var(--space-4); }
.site-footer .logo-text { color: var(--white); }
.site-footer .logo-text strong { color: var(--secondary); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--space-5); margin-bottom: var(--space-6); }
.footer-brand p { color: #C9BBA3; max-width: 32ch; margin-top: var(--space-3); }
.footer-col h3 { color: var(--white); font-size: 1rem; margin-bottom: var(--space-3); }
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: #C9BBA3; font-weight: 600; }
.footer-col a:hover { color: var(--secondary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: var(--space-4); text-align: center; font-size: 0.85rem; color: #A99A82; }

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); }
.contact-form { display: flex; flex-direction: column; gap: var(--space-3); }
.contact-form input, .contact-form textarea {
  padding: 13px 16px; border-radius: 10px; border: 2px solid var(--cream-2); font-family: 'Nunito', sans-serif;
  font-size: 1rem; background: var(--white);
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--primary); }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: var(--space-4); }
.contact-info-item .icon-wrap {
  width: 46px; height: 46px; border-radius: 12px; background: var(--secondary); color: var(--primary-dark);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ============ RETOUR EN HAUT ============ */
.back-to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 48px; height: 48px; border: 0; border-radius: 50%;
  background: var(--primary); color: var(--white); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(14px) scale(0.9);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s, background 0.2s ease;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-2px) scale(1); }
.back-to-top:focus-visible { outline: 2px solid var(--primary-dark); outline-offset: 3px; }

/* ============ CONSENTEMENT COOKIES ============ */
.consent-banner {
  position: fixed; left: 24px; right: 24px; bottom: 24px; z-index: 96;
  background: var(--white); border: 1px solid var(--cream-2);
  border-radius: var(--radius); box-shadow: var(--shadow);
  opacity: 0; transform: translateY(calc(100% + 40px));
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.consent-banner.show { opacity: 1; transform: translateY(0); }
.consent-banner[hidden] { display: none; }
.consent-banner-inner {
  max-width: 1180px; margin: 0 auto; padding: 20px 24px;
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}
.consent-banner p { margin: 0; flex: 1 1 420px; font-size: 0.9rem; line-height: 1.6; color: var(--text-light); }
.consent-banner strong { color: var(--text); }
.consent-banner a { color: var(--primary-dark); font-weight: 700; }
.consent-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.consent-actions .btn { padding: 11px 22px; }
.consent-link, .footer-linkbtn {
  background: none; border: 0; padding: 0; cursor: pointer;
  font: inherit; font-weight: 700; color: var(--primary-dark); text-decoration: underline;
}
.consent-link:hover, .footer-linkbtn:hover { color: var(--primary); }
.footer-linkbtn { color: #C9BBA3; font-weight: 600; text-decoration: none; }
.footer-linkbtn:hover { color: var(--secondary); }

.consent-overlay {
  position: fixed; inset: 0; z-index: 98; background: rgba(30, 22, 12, 0.55);
  opacity: 0; transition: opacity 0.3s ease;
}
.consent-overlay.show { opacity: 1; }
.consent-overlay[hidden] { display: none; }

.consent-panel {
  position: fixed; z-index: 99; left: 50%; top: 50%;
  width: min(560px, calc(100vw - 32px)); max-height: min(88vh, 720px);
  display: flex; flex-direction: column;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  transform: translate(-50%, -46%); opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.consent-panel.show { opacity: 1; transform: translate(-50%, -50%); }
.consent-panel[hidden] { display: none; }
.consent-panel-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--cream-2);
}
.consent-panel-head h2 { margin: 0; font-size: 1.3rem; }
.consent-close { background: none; border: 0; font-size: 1.8rem; line-height: 1; cursor: pointer; color: var(--text-light); padding: 0 4px; }
.consent-close:hover { color: var(--text); }
.consent-panel-body { padding: 8px 24px 16px; overflow-y: auto; }
.consent-cat { padding: 16px 0; border-bottom: 1px solid var(--cream-2); }
.consent-cat:last-child { border-bottom: 0; }
.consent-cat-head {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  margin-bottom: 6px; cursor: pointer;
}
.consent-cat-name { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 1.05rem; color: var(--text); }
.consent-cat-state { font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: var(--green-ok); }
.consent-cat p { margin: 0; font-size: 0.88rem; line-height: 1.55; color: var(--text-light); }
.consent-switch { position: relative; flex-shrink: 0; width: 46px; height: 26px; }
.consent-switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.consent-slider {
  position: absolute; inset: 0; border-radius: 999px; background: var(--cream-2);
  transition: background 0.2s ease;
}
.consent-slider::before {
  content: ""; position: absolute; width: 20px; height: 20px; left: 3px; top: 3px;
  border-radius: 50%; background: var(--white); box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}
.consent-switch input:checked + .consent-slider { background: var(--primary); }
.consent-switch input:checked + .consent-slider::before { transform: translateX(20px); }
.consent-switch input:focus-visible + .consent-slider { outline: 2px solid var(--primary-dark); outline-offset: 2px; }
.consent-panel-foot {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end;
  padding: 16px 24px; border-top: 1px solid var(--cream-2);
}
.consent-panel-foot .btn { padding: 11px 20px; }

@media (max-width: 640px) {
  .back-to-top { right: 16px; bottom: 16px; }
  .consent-banner { left: 12px; right: 12px; bottom: 12px; }
  .consent-banner-inner { padding: 18px 20px; gap: 16px; }
  .consent-actions { width: 100%; }
  .consent-actions .btn { flex: 1 1 auto; justify-content: center; }
  .consent-panel-foot { justify-content: stretch; }
  .consent-panel-foot .btn { flex: 1 1 auto; justify-content: center; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero-inner, .zigzag, .zigzag.reverse .zigzag-media, .contact-grid { grid-template-columns: 1fr; }
  .zigzag.reverse .zigzag-media, .zigzag.reverse .zigzag-text { order: initial; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .plan-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .main-nav {
    position: fixed; top: 68px; left: 0; right: 0; background: var(--white);
    flex-direction: column; align-items: flex-start; padding: var(--space-4) 24px;
    gap: var(--space-3); box-shadow: var(--shadow); transform: translateY(-130%); opacity: 0;
    transition: 0.3s ease; pointer-events: none;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-toggle { display: flex; }
  .hero-media img { height: 320px; }
  .hero-badge { display: none; }
  .card-grid, .card-grid.cols-4 { grid-template-columns: 1fr; }
  .widget-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: var(--space-6) 0; }
}