/* ============================================================
   SHIELD UP CONSULTING — Design System
   Fonts : Sora (headings) + Inter (body) via Google Fonts
   ============================================================ */

/* ── 1. TOKENS ─────────────────────────────────────────────── */
:root {
  --green:        #7DC17A;
  --green-dark:   #5A9E57;
  --green-deeper: #4A8A47;
  --green-tint:   #EEF7EE;
  --grey-900:     #4A4F54;
  --grey-500:     #8E9399;
  --grey-200:     #E8EAED;
  --grey-100:     #F0F2F4;
  --grey-50:      #F7F8F9;
  --white:        #FFFFFF;
  --red:          #E05252;

  --shadow-sm:    0 2px 12px rgba(0,0,0,.06);
  --shadow-md:    0 6px 24px rgba(0,0,0,.10);
  --shadow-green: 0 4px 16px rgba(125,193,122,.35);

  --radius:       12px;
  --radius-sm:    8px;

  --container:    1180px;
  --nav-h:        72px;

  --font-head:    'Sora', sans-serif;
  --font-body:    'Inter', sans-serif;

  --ease:         cubic-bezier(.4,0,.2,1);
}

/* ── 2. RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--grey-900);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── 3. TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--grey-900);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; letter-spacing: -.02em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { font-size: 1rem; line-height: 1.75; color: var(--grey-900); }
.lead { font-size: 1.125rem; color: var(--grey-500); max-width: 680px; }

.accent { color: var(--green); }

/* ── 4. LAYOUT ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 768px)  { .container { padding-inline: 48px; } }
@media (min-width: 1280px) { .container { padding-inline: 24px; } }

section { padding-block: 80px; }
.section-alt { background: var(--grey-50); }
.section-dark {
  background: var(--grey-900);
  color: var(--white);
}
.section-dark h2, .section-dark h3, .section-dark p { color: var(--white); }
.section-dark .lead { color: rgba(255,255,255,.75); }

.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .lead { margin-inline: auto; }
.section-header h2 { margin-bottom: 12px; }

/* ── 5. NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.scrolled {
  border-bottom-color: var(--grey-200);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo img { height: 44px; width: auto; }
.nav__logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--grey-900);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav .nav__logo-text img {
  height: 44px;
  width: auto;
  max-width: none;
  object-fit: contain;
}
.nav__logo-text span { color: var(--green); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--grey-900);
  transition: color .2s var(--ease);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav__links a:hover { color: var(--green); }
.nav__links a:hover::after,
.nav__links a.active::after { transform: scaleX(1); }
.nav__links a.active { color: var(--green); }

/* Dropdown */
.nav__item { position: relative; }
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 8px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility 0s .2s;
}
.nav__item.dropdown-open .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility 0s 0s;
}
.nav__dropdown a {
  display: block;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 500;
  transition: background .15s, color .15s;
}
.nav__dropdown a:hover { background: var(--grey-100); color: var(--green); }
.nav__dropdown a::after { display: none; }

.nav__cta { margin-left: 8px; }

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--grey-900);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  inset-inline: 0;
  bottom: 0;
  background: var(--white);
  padding: 24px;
  overflow-y: auto;
  z-index: 999;
}
.nav__mobile.open { display: flex; flex-direction: column; gap: 8px; }
.nav__mobile a {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 1.0625rem;
  transition: background .15s;
}
.nav__mobile a:hover { background: var(--grey-100); }
.nav__mobile .mobile-cta {
  margin-top: 16px;
  text-align: center;
}

/* ── 6. BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9375rem;
  border-radius: var(--radius-sm);
  padding: 14px 28px;
  transition: background .2s var(--ease), color .2s var(--ease),
              box-shadow .2s var(--ease), transform .15s var(--ease);
  white-space: nowrap;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  background: var(--green-dark);
  box-shadow: 0 6px 20px rgba(125,193,122,.45);
}

.btn-secondary {
  background: transparent;
  color: var(--grey-900);
  border: 1.5px solid var(--grey-900);
}
.btn-secondary:hover {
  background: var(--grey-100);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

.btn-danger {
  background: var(--red);
  color: var(--white);
}
.btn-danger:hover { background: #C43C3C; }

.btn-sm { padding: 10px 20px; font-size: .875rem; }
.btn-lg { padding: 17px 36px; font-size: 1.0625rem; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ── 7. CARDS ───────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.card__icon {
  width: 52px; height: 52px;
  background: var(--green-tint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card__icon svg { width: 24px; height: 24px; stroke: var(--green-dark); fill: none; stroke-width: 2; }

.card h3 { margin-bottom: 10px; }
.card p  { color: var(--grey-500); font-size: .9375rem; }

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-dark);
  font-weight: 600;
  font-size: .875rem;
  margin-top: 16px;
  transition: gap .2s var(--ease);
}
.card__link:hover { gap: 10px; }

/* Grid layouts */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

/* ── 8. HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  background: var(--white);
  overflow: hidden;
  position: relative;
}

.hero__bg-shield {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 360px;
  opacity: .07;
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content { max-width: 600px; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-tint);
  color: var(--green-dark);
  font-size: .8125rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero__content h1 { margin-bottom: 20px; }
.hero__content .lead { margin-bottom: 36px; }

.hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--grey-200);
}
.hero__stat-value {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-label {
  font-size: .8125rem;
  color: var(--grey-500);
  line-height: 1.4;
}

.hero__visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero__logo-large {
  width: min(320px, 80%);
  max-width: 320px;
  filter: drop-shadow(0 20px 60px rgba(125,193,122,.15));
  animation: float 6s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
.hero__brand-text {
  margin-top: 16px;
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--grey-400);
  letter-spacing: .12em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.hero__brand-text span {
  color: var(--green);
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}

/* ── 9. TRUST BAR ───────────────────────────────────────────── */
.trust-bar {
  background: var(--grey-50);
  border-block: 1px solid var(--grey-200);
  padding-block: 24px;
}
.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 48px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--grey-500);
}
.trust-item svg { width: 18px; height: 18px; stroke: var(--green); fill: none; stroke-width: 2; flex-shrink: 0; }

/* ── 10. PROBLEMS ───────────────────────────────────────────── */
.problems { background: var(--white); }
.problem-card {
  border-left: 4px solid var(--green);
  background: var(--grey-50);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px 24px;
  transition: box-shadow .25s var(--ease);
}
.problem-card:hover { box-shadow: var(--shadow-md); }
.problem-card__icon {
  width: 44px; height: 44px;
  background: var(--green-tint);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.problem-card__icon svg { width: 22px; height: 22px; stroke: var(--green-dark); fill: none; stroke-width: 2; }
.problem-card h3 { margin-bottom: 8px; font-size: 1.125rem; }
.problem-card p { font-size: .9375rem; color: var(--grey-500); }

/* ── 11. SERVICES PREVIEW ───────────────────────────────────── */
.service-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease), border-color .25s;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--green);
}
.service-card__icon {
  width: 52px; height: 52px;
  background: var(--green-tint);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-card__icon svg { width: 26px; height: 26px; stroke: var(--green-dark); fill: none; stroke-width: 2; }
.service-card h3 { margin-bottom: 8px; }
.service-card p { color: var(--grey-500); font-size: .9375rem; flex: 1; }
.service-card__footer { margin-top: 20px; }

/* ── 12. WHY US ─────────────────────────────────────────────── */
.why-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius);
  transition: background .2s;
}
.why-item:hover { background: var(--grey-50); }
.why-item__icon {
  width: 48px; height: 48px;
  background: var(--green-tint);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-item__icon svg { width: 22px; height: 22px; stroke: var(--green-dark); fill: none; stroke-width: 2; }
.why-item h3 { margin-bottom: 8px; font-size: 1.0625rem; }
.why-item p { font-size: .9375rem; color: var(--grey-500); }

/* ── 13. CERTIFICATIONS ─────────────────────────────────────── */
.cert-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.cert-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.cert-badge {
  width: 56px; height: 56px;
  background: var(--green-tint);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cert-badge svg { width: 28px; height: 28px; stroke: var(--green-dark); fill: none; stroke-width: 1.5; }
.cert-card__body strong {
  display: block;
  font-family: var(--font-head);
  font-size: .9375rem;
  font-weight: 600;
  color: var(--grey-900);
  margin-bottom: 4px;
}
.cert-card__body span {
  font-size: .8125rem;
  color: var(--grey-500);
}

/* ── 14. TESTIMONIALS ───────────────────────────────────────── */
.testimonial {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}
.testimonial__quote {
  font-size: 1rem;
  line-height: 1.75;
  font-style: italic;
  color: var(--grey-900);
  margin-bottom: 24px;
  position: relative;
}
.testimonial__quote::before {
  content: '"';
  font-family: var(--font-head);
  font-size: 4rem;
  line-height: 0;
  color: var(--green);
  opacity: .3;
  position: absolute;
  top: 16px; left: -8px;
}
.testimonial__author { display: flex; align-items: center; gap: 14px; }
.testimonial__avatar {
  width: 44px; height: 44px;
  background: var(--green-tint);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--green-dark);
  font-size: .9375rem;
  flex-shrink: 0;
}
.testimonial__name { font-weight: 600; font-size: .9375rem; }
.testimonial__role { font-size: .8125rem; color: var(--grey-500); }

/* ── 15. BLOG CARDS ─────────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card__thumb {
  height: 200px;
  background: linear-gradient(135deg, var(--green-tint) 0%, #d4edda 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.blog-card__thumb svg {
  width: 56px; height: 56px;
  stroke: var(--green-dark);
  fill: none;
  stroke-width: 1.5;
  opacity: .4;
}
.blog-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card__category {
  display: inline-block;
  background: var(--green-tint);
  color: var(--green-dark);
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.blog-card h3 { font-size: 1.0625rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card p  { font-size: .875rem; color: var(--grey-500); flex: 1; }
.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--grey-200);
  font-size: .8125rem;
  color: var(--grey-500);
}

/* ── 16. OFFERS / PACKAGES ──────────────────────────────────── */
.offer-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease), border-color .25s;
  position: relative;
  overflow: hidden;
}
.offer-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.offer-card.featured { border-color: var(--green); border-width: 2px; }
.offer-card.featured::before {
  content: 'Populaire';
  position: absolute;
  top: 20px; right: -28px;
  background: var(--green);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: 5px 40px;
  transform: rotate(45deg);
  letter-spacing: .06em;
}

.offer-card__icon {
  width: 60px; height: 60px;
  background: var(--green-tint);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.offer-card__icon svg { width: 30px; height: 30px; stroke: var(--green-dark); fill: none; stroke-width: 2; }
.offer-card__title { font-size: 1.375rem; font-weight: 700; margin-bottom: 6px; }
.offer-card__tagline { color: var(--green-dark); font-size: .9375rem; font-weight: 600; margin-bottom: 20px; font-style: italic; }
.offer-card__desc { font-size: .9375rem; color: var(--grey-500); margin-bottom: 24px; line-height: 1.65; }

.offer-section-title {
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--grey-500);
  margin-bottom: 10px;
  margin-top: 20px;
}
.offer-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.offer-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--grey-900);
  line-height: 1.5;
}
.offer-list li::before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237DC17A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
  margin-top: 2px;
}

.offer-footer {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid var(--grey-200);
  margin-top: 28px;
}
.offer-price {
  font-family: var(--font-head);
  font-size: .8125rem;
  color: var(--grey-500);
  margin-bottom: 14px;
  font-weight: 500;
}
.offer-price strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--grey-900);
}
.offer-format {
  font-size: .8125rem;
  color: var(--grey-500);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.offer-format svg { width: 14px; height: 14px; stroke: var(--grey-500); fill: none; stroke-width: 2; }

/* ── 17. PROCESS / STEPS ─────────────────────────────────────── */
.steps { counter-reset: step; }
.step {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--grey-200);
}
.step:last-child { border-bottom: none; }
.step__num {
  width: 52px; height: 52px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.step__body h3 { margin-bottom: 8px; }
.step__body p { color: var(--grey-500); font-size: .9375rem; }

/* ── 18. FAQ ────────────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--grey-200);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  gap: 16px;
}
.faq-question h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--grey-900);
}
.faq-question svg {
  width: 20px; height: 20px;
  stroke: var(--green-dark);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  transition: transform .3s var(--ease);
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease), padding .4s var(--ease);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p {
  padding-bottom: 22px;
  color: var(--grey-500);
  font-size: .9375rem;
  line-height: 1.75;
}

/* ── 19. CONTACT FORM ───────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--grey-900);
}
input, select, textarea {
  font-family: var(--font-body);
  font-size: .9375rem;
  color: var(--grey-900);
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  width: 100%;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  outline: none;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(125,193,122,.2);
}
textarea { min-height: 140px; resize: vertical; }
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238E9399' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--green);
  border-radius: 4px;
}
.form-check label { font-weight: 400; font-size: .875rem; color: var(--grey-500); }

.form-success {
  display: none;
  background: var(--green-tint);
  border: 1px solid var(--green);
  border-radius: var(--radius);
  padding: 20px 24px;
  color: var(--green-dark);
  font-weight: 600;
  text-align: center;
}

/* ── 20. BLOG FILTERS ───────────────────────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: .875rem;
  font-weight: 600;
  border: 1.5px solid var(--grey-200);
  color: var(--grey-500);
  background: var(--white);
  cursor: pointer;
  transition: all .2s var(--ease);
}
.filter-btn:hover { border-color: var(--green); color: var(--green-dark); }
.filter-btn.active { background: var(--green); border-color: var(--green); color: var(--white); }

/* ── 21. PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--grey-900) 0%, #2d3236 100%);
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  right: -10%;
  top: -20%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(125,193,122,.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero .lead { color: rgba(255,255,255,.75); }
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8125rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,.6); transition: color .2s; }
.page-hero .breadcrumb a:hover { color: var(--green); }
.page-hero .breadcrumb svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Breadcrumb global (hors page-hero) */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8125rem;
  color: var(--grey-500);
}
.breadcrumb a { color: var(--grey-500); transition: color .2s; }
.breadcrumb a:hover { color: var(--green-dark); }
.breadcrumb svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }

/* ── 22. CTA BAND ───────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--grey-900) 0%, #2d3236 100%);
  padding-block: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(125,193,122,.15) 0%, transparent 65%);
}
.cta-band > .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p  { color: rgba(255,255,255,.7); margin-bottom: 36px; font-size: 1.0625rem; max-width: 560px; margin-inline: auto; }
.cta-band .btn-group { justify-content: center; }

/* ── 23. FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--grey-900);
  color: var(--white);
  padding-top: 64px;
  padding-bottom: 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__brand p { color: rgba(255,255,255,.6); font-size: .9rem; margin-top: 16px; line-height: 1.7; }
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.footer__logo .logo-icon {
  width: 36px; height: 36px;
  background: var(--green);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.footer__logo .logo-icon svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 2; }
.footer__logo span { color: var(--green); }

.footer__col h4,
.footer__col-title {
  font-size: .8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
  color: var(--green);
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer__col ul a:hover { color: var(--white); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 12px;
}
.footer__contact-item svg { width: 16px; height: 16px; stroke: var(--green); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p { font-size: .8125rem; color: rgba(255,255,255,.35); }
.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a { font-size: .8125rem; color: rgba(255,255,255,.35); transition: color .2s; }
.footer__bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ── 24. BADGES / TAGS ───────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.badge-green { background: var(--green-tint); color: var(--green-dark); }
.badge-grey  { background: var(--grey-100); color: var(--grey-500); }
.badge-red   { background: #fef2f2; color: var(--red); }

/* ── 25. DIVIDER ────────────────────────────────────────────── */
.divider-wave {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.divider-wave svg { display: block; width: 100%; }

/* ── 26. UTILITIES ──────────────────────────────────────────── */
.text-center { text-align: center; }
.text-green  { color: var(--green-dark); }
.mt-0   { margin-top: 0; }
.mt-8   { margin-top: 8px; }
.mt-16  { margin-top: 16px; }
.mt-24  { margin-top: 24px; }
.mt-32  { margin-top: 32px; }
.mt-40  { margin-top: 40px; }
.mb-0   { margin-bottom: 0; }
.mb-8   { margin-bottom: 8px; }
.mb-16  { margin-bottom: 16px; }
.mb-24  { margin-bottom: 24px; }
.mb-32  { margin-bottom: 32px; }
.mb-40  { margin-bottom: 40px; }
.mb-56  { margin-bottom: 56px; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.page-top-spacer { padding-top: var(--nav-h); }

/* ── 26b. ARTICLE PAGE ─────────────────────────────────────── */
.article-header {
  padding-top: calc(var(--nav-h) + 48px);
  padding-bottom: 48px;
  background: linear-gradient(135deg, var(--grey-900) 0%, #2d3236 100%);
  position: relative;
  overflow: hidden;
}
.article-header::before {
  content: '';
  position: absolute;
  right: -10%; top: -20%;
  width: 60%; height: 140%;
  background: radial-gradient(ellipse, rgba(125,193,122,.12) 0%, transparent 70%);
  pointer-events: none;
}
.article-header .container { position: relative; z-index: 1; max-width: 760px; }
.article-header .breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .8125rem; color: rgba(255,255,255,.5); margin-bottom: 20px;
}
.article-header .breadcrumb a { color: rgba(255,255,255,.6); transition: color .2s; }
.article-header .breadcrumb a:hover { color: var(--green); }
.article-header .breadcrumb svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }
.article-header .badge { margin-bottom: 16px; }
.article-header h1 { color: var(--white); font-size: 2rem; line-height: 1.3; margin-bottom: 16px; }
.article-header .article-excerpt { color: rgba(255,255,255,.7); font-size: 1.0625rem; line-height: 1.7; margin-bottom: 24px; }
.article-meta {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  font-size: .8125rem; color: rgba(255,255,255,.5);
}
.article-meta svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }
.article-meta span { display: inline-flex; align-items: center; gap: 6px; }

.article-image {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 20px 0;
}
.article-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 20px 80px;
}
.article-body h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--grey-900);
  margin-top: 48px;
  margin-bottom: 16px;
  line-height: 1.3;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--grey-900);
  margin-top: 32px;
  margin-bottom: 12px;
}
.article-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--grey-900);
  margin-bottom: 16px;
}
.article-body ul, .article-body ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.article-body li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--grey-900);
  margin-bottom: 8px;
}
.article-body blockquote {
  border-left: 4px solid var(--green);
  background: var(--green-tint);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  font-size: 1rem;
  line-height: 1.7;
}
.article-body blockquote strong { color: var(--green-dark); }
.article-body .callout {
  background: var(--green-tint);
  border-left: 4px solid var(--green);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
}
.article-body .callout strong { color: var(--green-dark); }
.article-body .callout-warning {
  background: #fef9ee;
  border-left-color: #f39c12;
}
.article-body .callout-warning strong { color: #b87d08; }

.article-body .data-box {
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 24px;
  margin: 24px 0;
}
.article-body .data-box h4 {
  font-size: .8125rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--grey-500);
  margin-bottom: 12px;
}

.related-articles {
  border-top: 1px solid var(--grey-200);
  padding-top: 48px;
  margin-top: 48px;
}
.related-articles h2 { margin-top: 0; }
.related-articles .grid-3 { margin-top: 24px; }

.article-share {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 32px;
  border-top: 1px solid var(--grey-200);
  margin-top: 48px;
}
.article-share span { font-size: .875rem; font-weight: 600; color: var(--grey-500); }
.article-share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--grey-100);
  color: var(--grey-500);
  transition: background .2s, color .2s;
}
.article-share a:hover { background: var(--green-tint); color: var(--green-dark); }
.article-share a svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ── 27. ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-fade-up {
  opacity: 0;
  animation: fadeInUp .6s var(--ease) forwards;
}
.anim-delay-1 { animation-delay: .1s; }
.anim-delay-2 { animation-delay: .2s; }
.anim-delay-3 { animation-delay: .3s; }
.anim-delay-4 { animation-delay: .4s; }
.anim-delay-5 { animation-delay: .5s; }

/* Intersection Observer driven */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── 28. RESPONSIVE ─────────────────────────────────────────── */

/* Utility classes for responsive grids (override inline styles) */
.resp-grid-2 { display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.resp-grid-2.gap-80 { gap: 80px; }
.resp-grid-2.gap-64 { gap: 64px; }
.resp-grid-2.gap-48 { gap: 48px; }
.resp-grid-2.items-start { align-items: start; }

@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .resp-grid-2.gap-80 { gap: 48px; }
  .resp-grid-2.gap-64 { gap: 32px; }
}

@media (max-width: 768px) {
  section { padding-block: 56px; }

  /* Hero */
  .hero { min-height: auto; padding-top: calc(var(--nav-h) + 48px); padding-bottom: 56px; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { display: none; }
  .hero__stats { gap: 24px; flex-wrap: wrap; }

  /* Grids */
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Responsive grid-2 → single column */
  .resp-grid-2 {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  /* Nav */
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  /* Misc */
  .cta-band { padding-block: 56px; }
  .cta-band h2 { font-size: clamp(1.4rem, 4vw, 2rem); }
  .section-header { margin-bottom: 36px; }
  .offer-card { padding: 24px 20px; }
  .page-hero { padding-top: calc(var(--nav-h) + 48px); padding-bottom: 48px; }
  .page-hero h1 { font-size: clamp(1.5rem, 5vw, 2.5rem); }

  /* Offer sections with inline grids — force single column */
  .offer-section > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* Featured blog article — stack */
  .blog-featured {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .blog-featured > div:first-child {
    min-height: 200px;
  }
  .blog-featured__body {
    padding: 24px !important;
  }

  /* Contact grid */
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  /* Iframes responsive */
  iframe {
    max-width: 100% !important;
    height: auto;
    min-height: 240px;
  }

  /* Article header */
  .article-header h1 { font-size: clamp(1.4rem, 4.5vw, 2rem); }
  .article-header .article-meta { flex-wrap: wrap; gap: 12px; }

  /* Article body */
  .article-body { padding: 32px 16px 56px; }
  .article-content { padding: 32px 16px 56px; }
  .article-image { padding: 24px 16px 0; }

  /* Related articles — single column */
  .related-articles .grid-3,
  .related-grid {
    grid-template-columns: 1fr !important;
  }

  /* Blog cards grid */
  .blog-grid .grid-3 {
    grid-template-columns: 1fr !important;
  }

  /* Newsletter blocks */
  .reveal iframe {
    width: 100% !important;
    min-height: 260px;
  }
}

@media (max-width: 480px) {
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { text-align: center; justify-content: center; }
  .hero__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .trust-bar__inner { gap: 16px 24px; }

  /* Typography tighter */
  h1 { font-size: clamp(1.5rem, 6vw, 2rem); }
  h2 { font-size: clamp(1.25rem, 5vw, 1.75rem); }
  .lead { font-size: 1rem; }

  /* Sections less padding */
  section { padding-block: 40px; }
  .cta-band { padding-block: 40px; }
  .page-hero { padding-bottom: 32px; }

  /* Stat boxes — full width on very small */
  .stat-grid-2x2 {
    grid-template-columns: 1fr !important;
  }

  /* Cards less padding */
  .offer-card { padding: 20px 16px; }
  .blog-card { border-radius: 8px; }

  /* Footer */
  .footer { padding-block: 40px; }
  .footer__bottom-links { flex-direction: column; gap: 8px; }

  /* Table scroll hint */
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: .85rem;
  }
}
