/* =====================================================
   2M Jardin & Entretien — style.css
   Dark forest #0a2e14 | Green #22c55e | Cream #f0fdf4
   ===================================================== */

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

:root {
  --forest:  #0a2e14;
  --forest2: #0f3d1c;
  --forest3: #164d24;
  --green:   #22c55e;
  --green2:  #16a34a;
  --green3:  #4ade80;
  --cream:   #f0fdf4;
  --cream2:  #dcfce7;
  --white:   #ffffff;
  --gray:    #6b7280;
  --dark:    #111827;
  --radius:  8px;
  --radius-lg: 16px;
  --shadow:  0 4px 24px rgba(10,46,20,.18);
  --shadow-lg: 0 8px 40px rgba(10,46,20,.28);
  --transition: .28s cubic-bezier(.4,0,.2,1);
  --font-body: 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  --font-head: Georgia, 'Times New Roman', serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green2); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--forest); }
ul { list-style: none; }

/* --- Typography ------------------------------------ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--forest);
  line-height: 1.25;
  letter-spacing: -.015em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.15rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Layout helpers -------------------------------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section--sm { padding: 3.5rem 0; }
.section--lg { padding: 7rem 0; }
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-green  { color: var(--green) !important; }
.text-forest { color: var(--forest) !important; }

/* --- Buttons --------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.2;
}
.btn--primary {
  background: var(--green);
  color: var(--forest);
  border-color: var(--green);
}
.btn--primary:hover {
  background: var(--green2);
  border-color: var(--green2);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34,197,94,.35);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--forest);
  transform: translateY(-2px);
}
.btn--outline-green {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn--outline-green:hover {
  background: var(--green);
  color: var(--forest);
  transform: translateY(-2px);
}
.btn--lg { padding: 1.1rem 2.5rem; font-size: 1.1rem; }

/* --- Section headings ------------------------------ */
.section-tag {
  display: inline-block;
  background: var(--cream2);
  color: var(--green2);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-tag--light {
  background: rgba(34,197,94,.15);
  color: var(--green3);
}
.section-title { margin-bottom: 1rem; }
.section-sub   { color: var(--gray); font-size: 1.1rem; max-width: 640px; }
.section-sub--center { margin: 0 auto; }

/* =====================================================
   HEADER / NAV
   ===================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,46,20,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(34,197,94,.15);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(10,46,20,.99);
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo img { height: 52px; width: auto; }

.nav-list {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-list a {
  color: rgba(255,255,255,.82);
  font-weight: 500;
  font-size: .95rem;
  position: relative;
  padding-bottom: 3px;
}
.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--green);
  transition: width var(--transition);
}
.nav-list a:hover,
.nav-list a.active {
  color: var(--white);
}
.nav-list a:hover::after,
.nav-list a.active::after { width: 100%; }

.nav-cta {
  background: var(--green) !important;
  color: var(--forest) !important;
  padding: .45rem 1.2rem !important;
  border-radius: var(--radius) !important;
  font-weight: 700 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--green2) !important;
  color: var(--white) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================
   VIDEO HERO
   ===================================================== */
.hero-video {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-video__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-video__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,46,20,.92) 0%,
    rgba(10,46,20,.88) 50%,
    rgba(10,46,20,.82) 100%
  );
  z-index: 1;
}
.hero-video__content {
  position: relative;
  z-index: 2;
  padding: 10rem 0 6rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(34,197,94,.2);
  border: 1px solid rgba(34,197,94,.4);
  color: var(--green3);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(1.4); }
}
.hero-video__content h1 {
  color: var(--white);
  max-width: 800px;
  margin-bottom: 1.25rem;
}
.hero-video__content h1 span { color: var(--green); }
.hero-lead {
  color: rgba(255,255,255,.80);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 600px;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
  flex-wrap: wrap;
}
.hero-stat__num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  font-family: var(--font-head);
  line-height: 1;
}
.hero-stat__label {
  color: rgba(255,255,255,.65);
  font-size: .85rem;
  margin-top: .2rem;
}

/* =====================================================
   IMAGE HERO (inner pages)
   ===================================================== */
.hero-inner {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 72px;
}
.hero-inner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-inner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,46,20,.92) 0%, rgba(10,46,20,.55) 100%);
  z-index: 1;
}
.hero-inner__content {
  position: relative;
  z-index: 2;
  padding: 4rem 0 3rem;
  color: var(--white);
}
.hero-inner__content h1 { color: var(--white); margin-bottom: .75rem; }
.breadcrumb {
  display: flex;
  gap: .5rem;
  align-items: center;
  color: rgba(255,255,255,.65);
  font-size: .9rem;
}
.breadcrumb a { color: var(--green3); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* =====================================================
   SERVICES GRID (homepage)
   ===================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(34,197,94,.1);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--green);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleY(1); }
.service-icon {
  width: 56px; height: 56px;
  background: var(--cream2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.6rem;
}
.service-card h3 { margin-bottom: .6rem; font-size: 1.15rem; }
.service-card p  { color: var(--gray); font-size: .95rem; margin-bottom: 1rem; }
.service-link {
  color: var(--green2);
  font-weight: 600;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.service-link::after { content: '→'; transition: transform var(--transition); }
.service-card:hover .service-link::after { transform: translateX(4px); }

/* =====================================================
   2-COL SECTIONS
   ===================================================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }

.two-col__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.two-col__img img {
  width: 100%; height: 420px;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.two-col__img:hover img { transform: scale(1.04); }

.checklist { margin: 1.5rem 0; }
.checklist li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  padding: .5rem 0;
  border-bottom: 1px solid var(--cream2);
  color: var(--dark);
  font-size: .97rem;
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .15rem;
}

/* =====================================================
   BANNER (CSS background)
   ===================================================== */
.banner-section {
  background-image: url('/images/vue-landes.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 7rem 0;
}
.banner-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,46,20,.78);
}
.banner-section__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}
.banner-section__content h2 { color: var(--white); margin-bottom: 1rem; }
.banner-section__content p  { color: rgba(255,255,255,.80); max-width: 600px; margin: 0 auto 2rem; }

/* =====================================================
   FEATURES / ICONS BAND
   ===================================================== */
.features-band {
  background: var(--forest);
  padding: 4rem 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.feature-item { text-align: center; padding: 1.5rem; }
.feature-item__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.feature-item h4 { color: var(--white); margin-bottom: .5rem; }
.feature-item p  { color: rgba(255,255,255,.65); font-size: .9rem; margin: 0; }

/* =====================================================
   ABOUT STRIP
   ===================================================== */
.about-strip {
  background: var(--forest2);
  padding: 2rem 0;
  border-top: 1px solid rgba(34,197,94,.2);
  border-bottom: 1px solid rgba(34,197,94,.2);
}
.about-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.about-strip p { color: rgba(255,255,255,.80); margin: 0; }
.about-strip strong { color: var(--green); }

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
  background: var(--forest);
  padding: 6rem 0;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.cta-section h2 { color: var(--white); }
.cta-section p  { color: rgba(255,255,255,.75); margin: 1rem 0 2rem; }
.cta-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-image img { width: 100%; height: 380px; object-fit: cover; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials-section { background: var(--cream2); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.testimonial-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: .75rem; }
.testimonial-text  { color: var(--dark); font-style: italic; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 44px; height: 44px;
  background: var(--cream2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.testimonial-name { font-weight: 700; font-size: .9rem; color: var(--forest); }
.testimonial-loc  { color: var(--gray); font-size: .8rem; }

/* =====================================================
   BLOG / VERT
   ===================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.blog-card__img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.blog-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.blog-card:hover .blog-card__img img { transform: scale(1.06); }
.blog-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--green);
  color: var(--forest);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 50px;
  letter-spacing: .06em;
}
.blog-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-date { color: var(--gray); font-size: .82rem; margin-bottom: .5rem; }
.blog-card__body h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.blog-card__body h3 a { color: var(--forest); }
.blog-card__body h3 a:hover { color: var(--green2); }
.blog-card__body p  { color: var(--gray); font-size: .93rem; flex: 1; }
.blog-more { margin-top: 1rem; color: var(--green2); font-weight: 600; font-size: .9rem; }
.blog-more:hover { color: var(--forest); }

/* Article page */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}
.article-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.article-hero-img img { width: 100%; height: 420px; object-fit: cover; }
.article-body h2 { margin: 2rem 0 .75rem; }
.article-body h3 { margin: 1.5rem 0 .5rem; }
.article-body p  { color: #374151; line-height: 1.8; margin-bottom: 1.2rem; }
.article-body ul { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.article-body ul li { list-style: disc; color: #374151; margin-bottom: .4rem; }
.article-mid-img {
  border-radius: var(--radius);
  overflow: hidden;
  margin: 2rem 0;
}
.article-mid-img img { width: 100%; height: 340px; object-fit: cover; }
.article-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: var(--gray);
  font-size: .88rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--cream2);
}
.article-meta span { display: flex; align-items: center; gap: .35rem; }

/* Sidebar */
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}
.sidebar-widget h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--cream2);
}
.sidebar-links li { padding: .4rem 0; border-bottom: 1px solid var(--cream2); }
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a { color: var(--forest); font-size: .9rem; }
.sidebar-links a:hover { color: var(--green2); }
.sidebar-cta {
  background: var(--forest);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.sidebar-cta h4 { color: var(--white); margin-bottom: .75rem; }
.sidebar-cta p  { color: rgba(255,255,255,.70); font-size: .88rem; margin-bottom: 1rem; }

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-info-card {
  background: var(--forest);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 1.5rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(34,197,94,.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item-text strong { color: var(--green3); display: block; font-size: .82rem; margin-bottom: .2rem; }
.contact-item-text span  { color: rgba(255,255,255,.80); font-size: .95rem; }
.zones-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
}
.zone-tag {
  background: rgba(34,197,94,.15);
  border: 1px solid rgba(34,197,94,.3);
  color: var(--green3);
  font-size: .8rem;
  padding: .25rem .7rem;
  border-radius: 50px;
}

/* Contact form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.contact-form-card h3 { margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: .4rem;
  color: var(--forest);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid #d1fae5;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .97rem;
  color: var(--dark);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(34,197,94,.15);
  background: var(--white);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: var(--forest);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo { margin-bottom: 1rem; }
.footer-logo img { height: 48px; }
.footer-desc { color: rgba(255,255,255,.6); font-size: .9rem; line-height: 1.7; }
.footer-col h5 {
  color: var(--white);
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.25rem;
}
.footer-links li { margin-bottom: .6rem; }
.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--green3); }
.footer-zones {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .5rem;
}
.footer-zone {
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.6);
  font-size: .78rem;
  padding: .2rem .6rem;
  border-radius: 4px;
}
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: .85rem; color: rgba(255,255,255,.45); margin: 0; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .85rem; color: rgba(255,255,255,.45); }
.footer-bottom-links a:hover { color: var(--green3); }
.footer-green { color: var(--green); }

/* =====================================================
   PAGE-SPECIFIC: Services inner pages
   ===================================================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  counter-reset: steps;
}
.process-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
  counter-increment: steps;
}
.process-step::before {
  content: counter(steps);
  position: absolute;
  top: -16px; left: 1.5rem;
  background: var(--green);
  color: var(--forest);
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .9rem;
}
.process-step h4 { margin-bottom: .5rem; margin-top: .25rem; }
.process-step p  { color: var(--gray); font-size: .93rem; margin: 0; }

/* Pricing table */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: all var(--transition);
}
.pricing-card:hover,
.pricing-card.featured { border-color: var(--green); }
.pricing-card.featured { background: var(--forest); }
.pricing-card.featured h3 { color: var(--white); }
.pricing-card.featured p  { color: rgba(255,255,255,.70); }
.pricing-card.featured .checklist li { color: rgba(255,255,255,.80); border-color: rgba(255,255,255,.1); }
.pricing-card.featured .checklist li::before { color: var(--green3); }
.pricing-label {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--green2);
  margin-bottom: .5rem;
}
.pricing-card.featured .pricing-label { color: var(--green3); }
.pricing-card h3 { margin-bottom: .5rem; }
.pricing-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green2);
  margin: .75rem 0 1.25rem;
}
.pricing-card.featured .pricing-price { color: var(--green3); }

/* FAQ */
.faq-list { margin-top: 2rem; }
.faq-item {
  border-bottom: 1px solid var(--cream2);
  padding: 1.25rem 0;
}
.faq-item:first-child { border-top: 1px solid var(--cream2); }
.faq-q {
  font-weight: 700;
  color: var(--forest);
  margin-bottom: .5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-q::after { content: '+'; color: var(--green); font-size: 1.3rem; }
.faq-a { color: var(--gray); font-size: .95rem; line-height: 1.7; }

/* =====================================================
   404 PAGE
   ===================================================== */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--forest);
  padding: 3rem 1rem;
}
.error-page__code {
  font-size: clamp(6rem, 18vw, 12rem);
  font-family: var(--font-head);
  color: rgba(34,197,94,.15);
  line-height: 1;
  display: block;
  margin-bottom: -.5em;
}
.error-page h1 { color: var(--white); margin-bottom: 1rem; font-size: clamp(1.5rem, 3vw, 2.5rem); }
.error-page p  { color: rgba(255,255,255,.65); max-width: 480px; margin: 0 auto 2rem; }

/* =====================================================
   SITEMAP
   ===================================================== */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.sitemap-section h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--green);
  color: var(--forest);
}
.sitemap-links li { padding: .3rem 0; }
.sitemap-links a {
  color: var(--gray);
  font-size: .93rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.sitemap-links a::before { content: '→'; color: var(--green); }
.sitemap-links a:hover { color: var(--forest); }

/* =====================================================
   PARTNER LINK (contextual)
   ===================================================== */
.partner-section { background: var(--cream2); }
.partner-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--green);
  line-height: 1.8;
  color: #374151;
  font-size: 1rem;
}
.partner-block a {
  color: var(--green2);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.partner-block a:hover { color: var(--forest); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-layout .sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
}

@media (max-width: 768px) {
  .site-header nav { display: none; }
  .hamburger { display: flex; }
  .site-header nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--forest);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(34,197,94,.2);
    gap: 0;
  }
  .site-header nav.open .nav-list { flex-direction: column; gap: 0; width: 100%; }
  .site-header nav.open .nav-list a {
    display: block;
    padding: .85rem 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: 1.05rem;
  }
  .site-header nav.open .nav-cta { margin-top: 1rem; text-align: center; border-radius: var(--radius) !important; }

  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col--reverse { direction: ltr; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-image { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .banner-section { background-attachment: scroll; }
}

@media (max-width: 480px) {
  .section { padding: 3.5rem 0; }
  .hero-video__content { padding: 8rem 0 4rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .blog-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   UTILITY
   ===================================================== */
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.bg-forest  { background: var(--forest); }
.bg-cream   { background: var(--cream); }
.bg-cream2  { background: var(--cream2); }
.bg-white   { background: var(--white); }
.rounded    { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }
.shadow     { box-shadow: var(--shadow); }
.w-full     { width: 100%; }
