@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

/* Reset & base styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Roboto', Arial, sans-serif;
  background: #f0f8f0;
  color: #1a1a1a;
  line-height: 1.7;
}

/* Root variables */
:root {
  --green: #228B22;
  --green-dark: #0d3b0d;
  --lightgreen: #90EE90;
  --cream: #f7fff7;
  --bg: #f0f8f0;
  --white: #ffffff;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 18px 40px -12px rgba(34, 139, 34, 0.2);
  --radius-md: 12px;
  --radius-lg: 18px;
  --max-width: 1180px;
  --transition: all 0.3s ease;
  --border-light: 1px solid rgba(34, 139, 34, 0.12);
  --gradient: linear-gradient(135deg, rgba(34, 139, 34, 0.65), rgba(144, 238, 144, 0.6));
  --gray-700: #3d3d3d;
  --gray-500: #6a6a6a;
  --gray-300: #d8e1d8;
  --gray-100: #eef6ee;
  --spacing-unit: 1rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--green-dark);
  font-weight: 700;
  margin-top: 0;
  line-height: 1.3;
}

p {
  margin-top: 0;
  margin-bottom: 1.1rem;
}

a {
  color: var(--green);
  text-decoration: none;
  transition: var(--transition);
}

a:hover,
a:focus {
  color: var(--green-dark);
}

strong {
  color: var(--green-dark);
}

/* Layout */
.wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: var(--border-light);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.logo::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(34, 139, 34, 0.15);
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
}

.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.4rem;
  align-items: center;
}

.menu > li {
  position: relative;
}

.menu > li > a {
  font-weight: 500;
  padding: 0.4rem 0.2rem;
  display: inline-flex;
  align-items: center;
  color: var(--gray-700);
}

.menu > li > a:hover,
.menu > li > a:focus {
  color: var(--green);
}

.menu > li > a[aria-current="page"] {
  color: var(--green-dark);
  font-weight: 700;
}

/* Dropdown */
.has-dropdown > a::after {
  content: '▾';
  font-size: 0.72rem;
  margin-left: 0.35rem;
  transition: transform 0.2s ease;
}

.has-dropdown:hover > a::after,
.has-dropdown:focus-within > a::after {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 0.5rem);
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  list-style: none;
  padding: 1rem;
  margin: 0;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  border: var(--border-light);
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  display: flex;
}

.dropdown li a {
  color: var(--gray-700);
  font-weight: 500;
  padding: 0.4rem 0.2rem;
  display: block;
}

.dropdown li a:hover,
.dropdown li a:focus {
  background: rgba(144, 238, 144, 0.18);
  color: var(--green-dark);
  border-radius: 8px;
  padding-left: 0.6rem;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: var(--border-light);
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: var(--green);
  height: 2px;
  width: 20px;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: '';
  position: absolute;
  left: 0;
}

.nav-toggle-label span::before {
  top: -6px;
}

.nav-toggle-label span::after {
  top: 6px;
}

.nav-toggle:checked + .nav-toggle-label span {
  transform: rotate(45deg);
}

.nav-toggle:checked + .nav-toggle-label span::before {
  transform: rotate(90deg);
  top: 0;
}

.nav-toggle:checked + .nav-toggle-label span::after {
  opacity: 0;
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  margin-top: 0;
}

.hero-image {
  width: 100%;
  height: clamp(280px, 55vw, 520px);
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  color: var(--white);
  text-align: center;
  padding: 3rem 1.5rem;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.hero-content p {
  max-width: 620px;
  margin: 0 auto 1.8rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.6rem;
}

.hero-note {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 0.8rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--white);
  color: var(--green-dark);
  box-shadow: 0 12px 24px -14px rgba(0, 0, 0, 0.45);
}

.btn-primary:hover,
.btn-primary:focus {
  transform: translateY(-2px) scale(1.02);
  background: var(--lightgreen);
  color: var(--green-dark);
}

/* Featured section */
.featured-section {
  padding: 3.4rem 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 2.6rem;
}

.section-heading h2 {
  font-size: 2rem;
}

.card-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.feature-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 28px 60px -20px rgba(34, 139, 34, 0.28);
}

.community-section {
  padding: 3.4rem 0;
}

.testimonial-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  border: var(--border-light);
}

.testimonial-card blockquote {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  color: var(--gray-700);
  font-weight: 500;
}

.testimonial-card figcaption {
  font-weight: 600;
  color: var(--green);
}

.newsletter-section {
  background: rgba(34, 139, 34, 0.12);
  padding: 3.6rem 0;
}

.newsletter-inner {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.newsletter-copy h2 {
  margin-bottom: 1rem;
}

.newsletter-form {
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.newsletter-form input {
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(34, 139, 34, 0.3);
  font: inherit;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(144, 238, 144, 0.4);
}

.newsletter-note {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.link-arrow {
  color: var(--green);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
}

.link-arrow::after {
  content: '→';
  transition: var(--transition);
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

/* Article layout */
.layout-article {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 1.2fr);
  gap: 2.4rem;
  padding-top: 120px;
  padding-bottom: 3.6rem;
}

.article-body {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 2vw, 2.6rem);
  box-shadow: var(--shadow-md);
  border: var(--border-light);
}

.article-header {
  margin-bottom: 2rem;
}

.article-meta {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.article-body h2 {
  margin-top: 2.4rem;
  font-size: 1.8rem;
}

.article-body h2:first-of-type {
  margin-top: 1.6rem;
}

.article-body h2 + p {
  margin-top: 1rem;
}

.article-body section {
  margin-bottom: 1.6rem;
}

.article-body ul {
  padding-left: 1.3rem;
  margin-bottom: 1.4rem;
}

.article-body ul li {
  margin-bottom: 0.6rem;
  color: var(--gray-700);
}

.pros-cons li strong {
  color: var(--green);
}

.affiliate-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(34, 139, 34, 0.12);
  color: var(--green);
  margin: 0.8rem 0;
}

.affiliate-link:hover,
.affiliate-link:focus {
  background: rgba(144, 238, 144, 0.28);
  transform: translateY(-2px);
}

.icon-leaf {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lightgreen);
  color: var(--green-dark);
  position: relative;
}

.icon-leaf::before {
  content: '❧';
  font-size: 0.9rem;
  transform: translateY(-1px);
}

#routine-saison,
#checklist-action {
  scroll-margin-top: 130px;
}

.article-footer {
  margin-top: 2.6rem;
  border-top: var(--border-light);
  padding-top: 1.8rem;
}

.disclosure {
  background: rgba(34, 139, 34, 0.08);
  border-left: 4px solid var(--green);
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--gray-700);
}

.return-link {
  margin-top: 1.4rem;
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  border: var(--border-light);
}

.sidebar h2 {
  font-size: 1.4rem;
}

.newsletter-card iframe {
  border-radius: var(--radius-md);
  border: none;
  background: #f9fff9;
}

/* Pages */
.page {
  padding: 120px 0 3.4rem;
}

.page-hero-block {
  background: var(--white);
  padding: 2.8rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: var(--border-light);
  margin-bottom: 2.2rem;
}

.page-section {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: var(--border-light);
  margin-bottom: 1.8rem;
}

.list-marked {
  list-style: disc;
  padding-left: 1.6rem;
}

.list-marked li + li {
  margin-top: 0.5rem;
}

/* Forms */
.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-weight: 600;
  color: var(--green-dark);
}

.form-group input,
.form-group textarea {
  border-radius: 10px;
  border: 1px solid rgba(34, 139, 34, 0.25);
  padding: 0.75rem 1rem;
  font: inherit;
  background: #fcfffc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(144, 238, 144, 0.4);
}

textarea {
  resize: vertical;
}

/* Footer */
.site-footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.88);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  align-items: start;
}

.footer-logo {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--lightgreen);
}

.footer-mail {
  color: var(--lightgreen);
  font-weight: 600;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: rgba(144, 238, 144, 0.2);
  color: var(--white);
  border: 1px solid rgba(144, 238, 144, 0.5);
  transition: var(--transition);
}

.social-icon:hover,
.social-icon:focus {
  background: rgba(144, 238, 144, 0.4);
  transform: translateY(-3px);
}

.footer-note {
  text-align: center;
  margin-top: 2.6rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

/* Utilities */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 0.75rem !important; }
.mt-4 { margin-top: 1rem !important; }
.mt-5 { margin-top: 1.25rem !important; }
.mt-6 { margin-top: 1.5rem !important; }
.mt-7 { margin-top: 1.75rem !important; }
.mt-8 { margin-top: 2rem !important; }
.mt-9 { margin-top: 2.25rem !important; }
.mt-10 { margin-top: 2.5rem !important; }
.mt-11 { margin-top: 2.75rem !important; }
.mt-12 { margin-top: 3rem !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 0.75rem !important; }
.mb-4 { margin-bottom: 1rem !important; }
.mb-5 { margin-bottom: 1.25rem !important; }
.mb-6 { margin-bottom: 1.5rem !important; }
.mb-7 { margin-bottom: 1.75rem !important; }
.mb-8 { margin-bottom: 2rem !important; }
.mb-9 { margin-bottom: 2.25rem !important; }
.mb-10 { margin-bottom: 2.5rem !important; }
.mb-11 { margin-bottom: 2.75rem !important; }
.mb-12 { margin-bottom: 3rem !important; }
.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: 0.25rem !important; }
.pt-2 { padding-top: 0.5rem !important; }
.pt-3 { padding-top: 0.75rem !important; }
.pt-4 { padding-top: 1rem !important; }
.pt-5 { padding-top: 1.25rem !important; }
.pt-6 { padding-top: 1.5rem !important; }
.pt-7 { padding-top: 1.75rem !important; }
.pt-8 { padding-top: 2rem !important; }
.pt-9 { padding-top: 2.25rem !important; }
.pt-10 { padding-top: 2.5rem !important; }
.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: 0.25rem !important; }
.pb-2 { padding-bottom: 0.5rem !important; }
.pb-3 { padding-bottom: 0.75rem !important; }
.pb-4 { padding-bottom: 1rem !important; }
.pb-5 { padding-bottom: 1.25rem !important; }
.pb-6 { padding-bottom: 1.5rem !important; }
.pb-7 { padding-bottom: 1.75rem !important; }
.pb-8 { padding-bottom: 2rem !important; }
.pb-9 { padding-bottom: 2.25rem !important; }
.pb-10 { padding-bottom: 2.5rem !important; }
.pl-0 { padding-left: 0 !important; }
.pl-1 { padding-left: 0.25rem !important; }
.pl-2 { padding-left: 0.5rem !important; }
.pl-3 { padding-left: 0.75rem !important; }
.pl-4 { padding-left: 1rem !important; }
.pl-5 { padding-left: 1.25rem !important; }
.pl-6 { padding-left: 1.5rem !important; }
.pl-7 { padding-left: 1.75rem !important; }
.pl-8 { padding-left: 2rem !important; }
.pr-0 { padding-right: 0 !important; }
.pr-1 { padding-right: 0.25rem !important; }
.pr-2 { padding-right: 0.5rem !important; }
.pr-3 { padding-right: 0.75rem !important; }
.pr-4 { padding-right: 1rem !important; }
.pr-5 { padding-right: 1.25rem !important; }
.pr-6 { padding-right: 1.5rem !important; }
.pr-7 { padding-right: 1.75rem !important; }
.pr-8 { padding-right: 2rem !important; }
.gap-0 { gap: 0 !important; }
.gap-1 { gap: 0.5rem !important; }
.gap-2 { gap: 0.75rem !important; }
.gap-3 { gap: 1rem !important; }
.gap-4 { gap: 1.25rem !important; }
.gap-5 { gap: 1.5rem !important; }
.gap-6 { gap: 1.75rem !important; }
.gap-7 { gap: 2rem !important; }
.text-left { text-align: left !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-justify { text-align: justify !important; }
.text-muted { color: var(--gray-500) !important; }
.bg-white { background: var(--white) !important; }
.bg-lightgreen { background: rgba(144, 238, 144, 0.2) !important; }
.bg-cream { background: var(--cream) !important; }
.rounded { border-radius: var(--radius-md) !important; }
.rounded-lg { border-radius: var(--radius-lg) !important; }
.shadow-sm { box-shadow: var(--shadow-sm) !important; }
.shadow-md { box-shadow: var(--shadow-md) !important; }

.border {
  border: 1px solid rgba(34, 139, 34, 0.2) !important;
}

.border-dashed {
  border: 1px dashed rgba(34, 139, 34, 0.4) !important;
}

.flex {
  display: flex !important;
}

.inline-flex {
  display: inline-flex !important;
}

.grid {
  display: grid !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row {
  flex-direction: row !important;
}

.justify-center {
  justify-content: center !important;
}

.justify-between {
  justify-content: space-between !important;
}

.align-center {
  align-items: center !important;
}

.align-start {
  align-items: flex-start !important;
}

.align-end {
  align-items: flex-end !important;
}

.w-100 {
  width: 100% !important;
}

.max-w-480 {
  max-width: 480px !important;
}

.max-w-640 {
  max-width: 640px !important;
}

.max-w-960 {
  max-width: 960px !important;
}

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

/* Animations */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fade-up 0.6s ease forwards;
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

/* Cookie consent overrides */
.cc-window {
  font-family: 'Roboto', Arial, sans-serif !important;
  border-radius: 16px !important;
  box-shadow: 0 14px 45px -20px rgba(0, 0, 0, 0.6) !important;
}

.cc-btn {
  border-radius: 999px !important;
  padding: 0.6rem 1.6rem !important;
  font-weight: 600 !important;
}

/* Tables */
table {
  border-collapse: collapse;
  width: 100%;
  margin: 1.4rem 0;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: var(--border-light);
}

th,
td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(34, 139, 34, 0.1);
}

th {
  background: rgba(34, 139, 34, 0.08);
  color: var(--green-dark);
  font-weight: 600;
}

/* Code snippets */
code {
  font-family: 'Roboto Mono', monospace;
  background: rgba(34, 139, 34, 0.12);
  padding: 0.15rem 0.4rem;
  border-radius: 6px;
}

/* Blockquote */
blockquote {
  border-left: 4px solid var(--lightgreen);
  padding: 1rem 1.4rem;
  background: rgba(144, 238, 144, 0.18);
  border-radius: var(--radius-md);
  margin: 1.6rem 0;
  color: var(--gray-700);
}

/* Lists */
ul {
  list-style-position: outside;
}

li::marker {
  color: var(--green);
}

/* Accessibility focus */
:focus-visible {
  outline: 3px solid rgba(144, 238, 144, 0.7);
  outline-offset: 3px;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #e8f2e8;
}

::-webkit-scrollbar-thumb {
  background: rgba(34, 139, 34, 0.4);
  border-radius: 12px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(34, 139, 34, 0.6);
}

/* Media queries */
@media (max-width: 992px) {
  .layout-article {
    grid-template-columns: 1fr;
  }

  .sidebar {
    order: -1;
  }

  .hero-content {
    padding: 2.6rem 1rem;
  }

  .feature-card {
    padding: 1.6rem;
  }

  .main-nav {
    position: fixed;
    inset: 72px 0 0 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    display: none;
    align-items: flex-start;
    padding: 2rem;
  }

  .main-nav .menu {
    flex-direction: column;
    gap: 1.2rem;
  }

  .main-nav .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0.6rem 0;
    display: none;
  }

  .has-dropdown[aria-expanded="true"] .dropdown,
  .has-dropdown:hover .dropdown {
    display: flex;
  }

  .has-dropdown > a {
    width: 100%;
  }

  .nav-toggle-label {
    display: inline-flex;
  }

  .nav-toggle:checked ~ .main-nav {
    display: flex;
  }
}

@media (max-width: 768px) {
  .header-inner {
    min-height: 66px;
  }

  .hero-image {
    height: clamp(240px, 60vw, 360px);
  }

  .featured-section {
    padding: 2.4rem 0;
  }

  .page {
    padding-top: 100px;
  }

  .page-hero-block,
  .page-section,
  .article-body,
  .sidebar-card {
    padding: 1.6rem;
  }

  table {
    font-size: 0.95rem;
  }

  th,
  td {
    padding: 0.75rem 0.8rem;
  }

  .newsletter-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .wrapper {
    padding: 0 1.1rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .social-icon {
    width: 36px;
    height: 36px;
  }

  .feature-card {
    text-align: left;
  }
}

/* Print styles */
@media print {
  body {
    background: #ffffff;
    color: #000000;
  }

  .site-header,
  .site-footer,
  .nav-toggle-label,
  .btn,
  iframe,
  .social-icon {
    display: none !important;
  }

  .wrapper {
    max-width: none;
    padding: 0;
  }

  .article-body,
  .page-hero-block,
  .page-section {
    box-shadow: none;
    border: 1px solid #cccccc;
  }

  a {
    color: #000000;
    text-decoration: underline;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Additional utility gradients */
.bg-gradient {
  background: var(--gradient) !important;
  color: var(--white);
}

.text-shadow {
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Timeline styles (future content) */
.timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid rgba(34, 139, 34, 0.3);
  display: grid;
  gap: 1.4rem;
}

.timeline-item {
  position: relative;
  padding-left: 1rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.1rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(34, 139, 34, 0.18);
}

.timeline-date {
  font-weight: 600;
  color: var(--green-dark);
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge-success {
  background: rgba(34, 139, 34, 0.12);
  color: var(--green-dark);
}

/* Progress bar */
.progress {
  width: 100%;
  background: rgba(34, 139, 34, 0.1);
  border-radius: 999px;
  overflow: hidden;
  height: 10px;
}

.progress-bar {
  height: 100%;
  background: var(--green);
  transition: width 0.4s ease;
}

/* Cards variants */
.card-compact {
  padding: 1.4rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: var(--border-light);
}

.card-outline {
  background: transparent;
  border: 1px solid rgba(34, 139, 34, 0.3);
  border-radius: var(--radius-md);
  padding: 1.6rem;
}

/* Alerte */
.alert {
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.alert-success {
  background: rgba(144, 238, 144, 0.18);
  border: 1px solid rgba(34, 139, 34, 0.25);
  color: var(--green-dark);
}

.alert-info {
  background: rgba(105, 159, 237, 0.12);
  border: 1px solid rgba(105, 159, 237, 0.2);
}

/* Icon list */
.icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.icon-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 0.8rem;
  align-items: center;
}

.icon-list .icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(34, 139, 34, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--green-dark);
}

/* Stat blocks */
.stat-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  border: var(--border-light);
  text-align: center;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-dark);
}

.stat-label {
  color: var(--gray-500);
  font-size: 0.95rem;
}

/* Checklist styles */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.checklist li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  background: rgba(144, 238, 144, 0.14);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(34, 139, 34, 0.2);
}

.checklist li::before {
  content: '✓';
  color: var(--green-dark);
  font-weight: 700;
  margin-top: 2px;
}

/* Media embed */
.media-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.media-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Hero overlay adjustments */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(34, 139, 34, 0.25) 0%, rgba(34, 139, 34, 0.55) 80%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* Additional spacing utilities */
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.ml-auto { margin-left: auto !important; }
.mr-auto { margin-right: auto !important; }
.no-shadow { box-shadow: none !important; }
.no-border { border: none !important; }
.uppercase { text-transform: uppercase !important; }
.lowercase { text-transform: lowercase !important; }
.capitalize { text-transform: capitalize !important; }

.opacity-0 { opacity: 0 !important; }
.opacity-25 { opacity: 0.25 !important; }
.opacity-50 { opacity: 0.5 !important; }
.opacity-75 { opacity: 0.75 !important; }
.opacity-100 { opacity: 1 !important; }

/* Grid helpers */
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
.col-span-2 { grid-column: span 2 / span 2 !important; }
.col-span-3 { grid-column: span 3 / span 3 !important; }

/* Width helpers */
.w-50 { width: 50% !important; }
.w-33 { width: 33.333% !important; }
.w-25 { width: 25% !important; }
.min-h-100 { min-height: 100px !important; }
.min-h-200 { min-height: 200px !important; }
.min-h-300 { min-height: 300px !important; }

/* Buttons variants */
.btn-outline {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--green);
  color: var(--white);
}

/* Hero animation */
.hero-content .btn {
  animation: fade-up 0.8s ease forwards;
}

/* Print hide hero */
@media print {
  .hero {
    display: none !important;
  }
}
