/* ── TOKENS ── */
:root {
  --primary:       #228B22;
  --primary-dark:  #186218;
  --primary-light: #2DA82D;
  --secondary:     #151515;
  --accent:        #289AB3;
  --white:         #FFFFFF;
  --off-white:     #F8F9FA;
  --gray-100:      #F3F4F6;
  --gray-200:      #E5E7EB;
  --gray-400:      #9CA3AF;
  --gray-500:      #6B7280;
  --gray-600:      #4B5563;
  --gray-700:      #374151;
  --dark:          #1a1a2e;
  --gray-300:      #D1D5DB;
  --font:          'Inter', system-ui, sans-serif;
  --font-h:        'Montserrat', system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
.skip-nav {
  position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
  padding: .75rem 1.5rem; background: var(--primary); color: var(--white);
  font-weight: 600; border-radius: 0 0 .5rem .5rem; z-index: 9999;
  transition: top .2s;
}
.skip-nav:focus { top: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--secondary); background: var(--white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: var(--primary); }
ul { list-style: none; }

/* ── ACCESSIBILITY & POLISH ── */
:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; border-radius: 4px; }
a:focus-visible { outline-offset: 3px; }
button:focus-visible { outline-offset: 2px; }
::selection { background: var(--primary); color: var(--white); }
[id] { scroll-margin-top: 5rem; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ── UTILITIES ── */
.mb-3 { margin-bottom: 3rem; }
.fill-primary { fill: var(--primary); }
.fill-primary-shrink { fill: var(--primary); flex-shrink: 0; }
.blog-card-body h3, .section-header h3 { font-family: var(--font-h); font-size: 1.125rem; font-weight: 700; margin-bottom: .5rem; }
.meta-row { display: flex; align-items: center; gap: .75rem; color: var(--gray-700); }
.text-white-70 { color: rgba(255,255,255,.7); line-height: 1.7; }
.text-white-85 { color: rgba(255,255,255,.85); line-height: 1.7; }
.text-white-60 { color: rgba(255,255,255,.6); }
.text-gray-body { color: var(--gray-600); line-height: 1.7; margin-bottom: 1.5rem; }
.bg-off-white { background: var(--off-white); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.why-img img { width: 100%; height: 520px; object-fit: cover; }
.footer-divider { border-top: 1px solid rgba(255,255,255,.08); }
.cta-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.form-disclaimer { font-size: .75rem; color: var(--gray-400); text-align: center; margin-top: .75rem; }
.mb-075 { margin-bottom: .75rem; }
.faq-grid { gap: 3rem; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.text-center { text-align: center; }

/* ── TYPOGRAPHY ── */
.label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .75rem; font-weight: 700; color: var(--primary);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: .75rem;
}
.label::before { content: ''; width: 2rem; height: 2px; background: var(--primary); border-radius: 99px; }
h2.title { font-family: var(--font-h); font-size: 2.5rem; font-weight: 800; line-height: 1.15; margin-bottom: 1rem; }
h2.title span { color: var(--primary); }
.subtitle { font-size: 1.125rem; color: var(--gray-600); max-width: 580px; line-height: 1.7; }
.text-center .subtitle { margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: 1rem 2rem; font-size: 1rem; font-weight: 600; font-family: var(--font);
  border-radius: .75rem; border: 2px solid transparent; cursor: pointer;
  transition: all .25s ease; white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: 0 4px 24px rgba(34,139,34,.35); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--primary); border-color: #fff; }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-secondary { background: var(--secondary); color: #fff; }
.btn-lg { padding: 1.25rem 2.5rem; font-size: 1.125rem; border-radius: 1rem; }

/* ── TOP BAR ── */
.topbar { background: var(--secondary); color: rgba(255,255,255,.65); padding: .5rem 0; font-size: .8125rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; }
.topbar-contact { display: flex; gap: 1.5rem; }
.topbar-item { display: flex; align-items: center; gap: .4rem; color: rgba(255,255,255,.65); }
.topbar-item svg { fill: var(--primary); }
.topbar-badges { display: flex; gap: 1rem; }
.topbar-badge { display: flex; align-items: center; gap: .25rem; color: var(--accent); font-weight: 700; font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; }

/* ── HEADER ── */
.header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; gap: 2rem; }
.logo-text strong { font-family: var(--font-h); font-size: 1.25rem; font-weight: 800; color: var(--secondary); display: block; line-height: 1; }
.logo-text span { font-size: .7rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: .05em; }
.nav-menu { display: flex; gap: .25rem; }
.nav-menu a { padding: .5rem .75rem; font-size: .875rem; font-weight: 600; color: var(--gray-700); border-radius: .5rem; transition: color .15s; }
.nav-menu a:hover { color: var(--primary); }
.nav-cta { display: flex; align-items: center; gap: .75rem; }
.nav-phone { display: flex; align-items: center; gap: .5rem; font-weight: 700; font-size: 1.125rem; color: var(--secondary); }
.nav-phone svg { fill: var(--primary); }

/* ── MOBILE NAV ── */
.mobile-nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .5rem; }
.mobile-nav-toggle span { display: block; width: 24px; height: 2px; background: var(--secondary); margin: 5px 0; transition: .3s; border-radius: 2px; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden;
  background: linear-gradient(105deg, rgba(28,43,58,.95) 0%, rgba(28,43,58,.75) 45%, rgba(28,43,58,.35) 100%),
              url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920&q=80') center/cover no-repeat;
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; padding: 5rem 0 10rem; }
.hero-content { max-width: 680px; }
.hero-map { display: flex; justify-content: center; align-items: center; }
.hero-map img { max-width: 100%; height: auto; max-height: 520px; object-fit: contain; filter: drop-shadow(0 20px 40px rgb(0 0 0 / 0.3)); }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(34,139,34,.15); border: 1px solid rgba(34,139,34,.4);
  color: var(--primary-light); padding: .5rem 1rem; border-radius: 99px;
  font-size: .8125rem; font-weight: 600; margin-bottom: 1.5rem;
}
.hero-badge svg { fill: currentColor; }
.hero h1 {
  font-family: var(--font-h); font-size: clamp(2.5rem,5vw,3.75rem);
  font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 1.5rem;
}
.hero h1 em { font-style: normal; color: var(--primary); }
.hero p { font-size: 1.25rem; color: rgba(255,255,255,.85); line-height: 1.7; max-width: 540px; margin-bottom: 2.5rem; font-weight: 350; letter-spacing: 0.01em; }
.hero-actions { display: flex; gap: 1rem; margin-bottom: 3rem; }
.hero-trust { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.8); font-size: .875rem; font-weight: 500; }
.hero-trust-item svg { fill: var(--primary); }

/* Hero stats bar */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  background: rgba(255,255,255,.06); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.hero-stat { text-align: center; padding: 1.5rem 1rem; border-right: 1px solid rgba(255,255,255,.1); }
.hero-stat:last-child { border-right: none; }
.hero-stat-num { font-family: var(--font-h); font-size: 2rem; font-weight: 900; color: var(--primary); line-height: 1; margin-bottom: .25rem; }
.hero-stat-label { font-size: .8125rem; color: rgba(255,255,255,.7); }

/* ── SERVICES ── */
.services { background: var(--off-white); }
.service-card {
  background: #fff; border-radius: 1.25rem; padding: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.06); border: 1px solid var(--gray-100);
  transition: all .25s ease; display: flex; flex-direction: column; gap: 1rem;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,.1); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover .svc-icon { transform: scale(1.1); }
.svc-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 1rem; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(34,139,34,.3);
  transition: transform .25s ease;
}
.svc-icon svg { width: 32px; height: 32px; fill: #fff; }
.service-card h3 { font-family: var(--font-h); font-size: 1.2rem; font-weight: 700; color: var(--secondary); }
.service-card p { color: var(--gray-600); font-size: .9375rem; line-height: 1.7; flex: 1; }
.svc-link { display: inline-flex; align-items: center; gap: .5rem; color: var(--primary); font-weight: 600; font-size: .875rem; }
.svc-link svg { fill: currentColor; width: 16px; height: 16px; }

/* ── SERVICES VARIED GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
/* Featured card: spans 2 columns, dark background */
.service-card--featured {
  grid-column: span 2;
  background: var(--secondary);
  border-color: transparent;
  color: #fff;
}
.service-card--featured::before {
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
}
.service-card--featured h3 { color: #fff; }
.service-card--featured p { color: rgba(255,255,255,.75); }
.service-card--featured:hover { box-shadow: 0 20px 50px rgba(0,0,0,.25); }
/* Light icon variant (used on dark background) */
.svc-icon--light {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: none;
}
.svc-link--light { color: var(--primary-light); }
.svc-link--light:hover { color: #fff; }

/* Accent card: soft green tint */
.service-card--accent {
  background: rgba(34,139,34,.06);
  border-color: rgba(34,139,34,.2);
}
.service-card--accent::before {
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--featured { grid-column: span 2; }
}
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card--featured { grid-column: span 1; }
}

/* ── STATS ── */
.stats-section { background: #fff; border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); padding: 0; }
.stat-item { text-align: center; padding: 3rem 2rem; border-right: 1px solid var(--gray-100); }
.stat-item:last-child { border-right: none; }
.stat-icon { width: 56px; height: 56px; background: rgba(34,139,34,.08); border-radius: 0.625rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.stat-icon svg { fill: var(--primary); width: 28px; height: 28px; }
.stat-num { font-family: var(--font-h); font-size: 2.5rem; font-weight: 900; color: var(--primary); line-height: 1; margin-bottom: .5rem; }
.stat-lbl { font-size: .875rem; color: var(--gray-500); font-weight: 500; }

/* ── WHY US ── */
.why-us { background: var(--secondary); color: rgba(255,255,255,.75); position: relative; overflow: hidden; }
.why-us::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(34,139,34,.15) 0%, transparent 70%); pointer-events: none;
}
.why-us .title { color: #fff; }
.why-img { position: relative; border-radius: 1.5rem; overflow: hidden; min-height: 480px; background: #2a3f52; }
.why-img img { width: 100%; height: 100%; object-fit: cover; }
.why-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--primary); color: #fff; padding: 1rem 1.5rem; border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
}
.why-badge-num { font-family: var(--font-h); font-size: 2.5rem; font-weight: 900; line-height: 1; }
.why-badge-txt { font-size: .8125rem; opacity: .9; }
.usp-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.usp-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.usp-icon {
  width: 48px; height: 48px; background: rgba(34,139,34,.12); border: 1px solid rgba(34,139,34,.25);
  border-radius: .75rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.usp-icon svg { fill: var(--primary); width: 22px; height: 22px; }
.usp-title { font-family: var(--font-h); font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .25rem; }
.usp-desc { color: rgba(255,255,255,.6); font-size: .875rem; line-height: 1.6; }

/* ── PROCESS ── */
.process { background: #fff; }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 40px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; font-family: var(--font-h); font-size: 1.5rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem;
  box-shadow: 0 4px 24px rgba(34,139,34,.35);
}
.step h3 { font-family: var(--font-h); font-size: 1.1rem; font-weight: 700; color: var(--secondary); margin-bottom: .75rem; }
.step p { font-size: .875rem; color: var(--gray-600); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--off-white); }
.review-card {
  background: #fff; border-radius: 1.75rem; padding: 2rem; box-shadow: 0 2px 8px rgba(0,0,0,.05), 0 1px 0 rgba(0,0,0,.03);
  border: 1px solid var(--gray-100); transition: transform .25s, box-shadow .25s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.1); }
.stars { display: flex; gap: .2rem; margin-bottom: 1rem; }
.stars svg { fill: var(--accent); width: 18px; height: 18px; }
.review-text { font-size: .9375rem; color: var(--gray-700); line-height: 1.7; font-style: italic; margin-bottom: 1.5rem; }
.review-author { display: flex; align-items: center; gap: .75rem; }
.avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 1.125rem; font-weight: 800; color: #fff; flex-shrink: 0;
}
.author-name { font-weight: 700; color: var(--secondary); font-size: .9375rem; }
.author-loc { font-size: .8125rem; color: var(--gray-400); }

/* ── CTA SECTION ── */
.cta-sec {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative; overflow: hidden;
}
.cta-sec::before {
  content: ''; position: absolute; top: -40%; right: -10%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%); pointer-events: none;
}
.cta-sec .title { color: #fff; }
.cta-checklist { display: flex; flex-direction: column; gap: 1rem; margin: 2rem 0; }
.cta-check { display: flex; align-items: center; gap: .75rem; color: rgba(255,255,255,.9); font-size: .9375rem; }
.cta-check svg { fill: rgba(255,255,255,.9); flex-shrink: 0; }
.contact-form {
  background: #fff; border-radius: 1.5rem; padding: 2.5rem; box-shadow: 0 25px 50px rgba(0,0,0,.25);
}
.form-title { font-family: var(--font-h); font-size: 1.5rem; font-weight: 700; color: var(--secondary); margin-bottom: .5rem; }
.form-sub { color: var(--gray-500); font-size: .875rem; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .8125rem; font-weight: 600; color: var(--gray-700); margin-bottom: .5rem; }
.form-input {
  width: 100%; padding: .75rem 1rem; border: 2px solid var(--gray-200);
  border-radius: .75rem; font-family: var(--font); font-size: .9375rem;
  color: var(--secondary); outline: none; transition: border-color .15s;
}
.form-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(34,139,34,.1); }
.form-input::placeholder { color: var(--gray-400); }
select.form-input { cursor: pointer; }
textarea.form-input { min-height: 90px; resize: vertical; }
.form-btn { width: 100%; justify-content: center; }

/* ── FOOTER ── */
.footer { background: var(--secondary); color: rgba(255,255,255,.65); padding-top: 5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 4rem; }
.footer-logo-text strong { font-family: var(--font-h); font-size: 1.25rem; font-weight: 900; color: #fff; }
.footer-tagline { font-size: .875rem; line-height: 1.6; margin: 1rem 0 1.5rem; max-width: 260px; }
.footer-social { display: flex; gap: .75rem; }
.social-link {
  width: 40px; height: 40px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: .75rem; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); transition: all .25s;
}
.social-link:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-2px); }
.social-link svg { fill: currentColor; width: 18px; height: 18px; }
.footer-col-title { font-size: .75rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: .75rem; }
.footer-links a { color: rgba(255,255,255,.6); font-size: .875rem; transition: color .15s; display: flex; align-items: center; gap: .5rem; }
.footer-links a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-item { display: flex; gap: .75rem; align-items: flex-start; font-size: .875rem; }
.footer-contact-item svg { fill: var(--primary); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,.8); }
.footer-contact-item a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8125rem; color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: var(--primary); }

/* ── WHATSAPP ── */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
}
.wa-float a {
  display: flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; background: #25D366; border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37,211,102,.45); animation: pulse 2.5s infinite;
  transition: transform .25s;
}
.wa-float a:hover { transform: scale(1.1); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
@keyframes pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,.6), 0 0 0 8px rgba(37,211,102,.12); }
}

/* ── COMPARE SECTION ── */
.compare-sec {
  background-color: var(--gray-100);
  background-image:
    radial-gradient(circle, rgba(0,0,0,.04) 1px, transparent 1px);
  background-size: 24px 24px;
}
.compare-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  max-width: 900px; margin: 0 auto;
}
.compare-col {
  border-radius: 0.75rem; padding: 2rem; position: relative;
}
.compare-others {
  background: var(--white); border: 1px solid var(--gray-200);
}
.compare-us {
  background: var(--secondary); color: var(--white);
  box-shadow: 0 20px 40px rgba(0,0,0,.15);
}
.compare-header {
  display: flex; align-items: center; gap: .75rem;
  font-family: var(--font-h); font-size: 1.125rem; font-weight: 700;
  margin-bottom: 1.5rem; padding-bottom: 1rem;
  border-bottom: 2px solid var(--gray-200);
}
.compare-us .compare-header { border-bottom-color: rgba(255,255,255,.15); }
.compare-others .compare-header svg { color: var(--gray-400); }
.compare-us .compare-header svg { color: var(--primary-light); }
.compare-list { display: flex; flex-direction: column; gap: 1rem; }
.compare-list li {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .9375rem; line-height: 1.5;
}
.compare-list li svg { flex-shrink: 0; margin-top: 2px; }
.compare-others .compare-list li svg { fill: #d32f2f; }
.compare-others .compare-list li { color: var(--gray-600); }
.compare-us .compare-list li svg { fill: var(--primary-light); }
.compare-us .compare-list li { color: rgba(255,255,255,.85); }

@media (max-width: 768px) {
  .compare-grid { grid-template-columns: 1fr; }
  .compare-col { padding: 1.5rem; }
}

/* ── MAP & REVIEWS SECTION ── */
.map-embed iframe { width: 100%; border: 0; border-radius: 1rem; }
.google-review-badge {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: 1rem;
  padding: 1.5rem; margin-bottom: 1.5rem;
}
.review-badge-header { display: flex; align-items: flex-start; gap: 1rem; }
.review-badge-header > svg { margin-top: .25rem; }
.review-badge-score { font-family: var(--font-h); font-size: 1.5rem; font-weight: 800; color: var(--secondary); }
.review-badge-stars { display: flex; gap: 2px; margin: .25rem 0; }
.review-badge-stars svg { width: 18px; height: 18px; fill: #FBBC05; }
.review-badge-count { font-size: .875rem; color: var(--gray-500); }
.review-badge-source { display: flex; align-items: center; gap: .5rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--gray-100); font-size: .875rem; font-weight: 600; color: var(--gray-600); }
.contact-info-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: 1rem; padding: 1.5rem;
}
.contact-info-card h3 { font-family: var(--font-h); font-size: 1.125rem; font-weight: 700; margin-bottom: 1rem; }
.contact-info-list { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-list li { display: flex; align-items: flex-start; gap: .75rem; font-size: .9375rem; line-height: 1.5; }
.contact-info-list li svg { flex-shrink: 0; margin-top: .125rem; }
.contact-info-list a { color: var(--primary); }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
  background: var(--secondary); color: var(--white); padding: 1rem 0;
  transform: translateY(100%); transition: transform .4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner .container { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.cookie-banner p { flex: 1; font-size: .875rem; line-height: 1.5; min-width: 200px; }
.cookie-banner p a { color: var(--primary-light); text-decoration: underline; }
.cookie-btn-group { display: flex; gap: .75rem; flex-shrink: 0; }
.cookie-btn {
  padding: .5rem 1.25rem; border-radius: .5rem; font-size: .875rem; font-weight: 600;
  border: none; cursor: pointer; transition: background .2s;
}
.cookie-accept { background: var(--primary); color: var(--white); }
.cookie-accept:hover { background: var(--primary-dark); }
.cookie-decline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.3); }
.cookie-decline:hover { border-color: rgba(255,255,255,.6); }

/* ── FILTER BUTTONS ── */
.filter-bar { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2rem; }
.project-filter {
  padding: .5rem 1.25rem;
  font-size: .875rem;
  border-radius: 2rem;
  background: var(--gray-100);
  color: var(--dark);
  border: 1px solid var(--gray-300);
  cursor: pointer;
  font-family: var(--font);
  font-weight: 500;
  transition: background .2s, color .2s, border-color .2s;
}
.project-filter:hover {
  background: var(--gray-200);
}
.project-filter.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.filter-btn {
  padding: .5rem 1.25rem; border-radius: 2rem; font-size: .875rem; font-weight: 600;
  border: 2px solid var(--gray-200); background: var(--white); color: var(--gray-600);
  cursor: pointer; transition: all .2s;
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--primary); border-color: var(--primary); color: var(--white); }

/* Focus styles for keyboard accessibility */
.project-filter:focus-visible,
.filter-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

#project-grid .result-card {
  transition: opacity .3s ease, transform .3s ease;
}
.cookie-btn:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}
.sidebar-links a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.form-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

/* ── WERKGEBIED AREA CARDS ── */
.area-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: 1rem;
  padding: 1.5rem; transition: box-shadow .3s, transform .3s;
}
.area-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,.08); transform: translateY(-2px); }
.area-card h3 { font-family: var(--font-h); font-size: 1.125rem; font-weight: 700; margin-bottom: .5rem; }
.area-badge {
  display: inline-block; padding: .25rem .75rem; border-radius: 2rem;
  font-size: .75rem; font-weight: 600; margin-bottom: .75rem;
}
.area-badge--hq { background: rgba(34,139,34,.1); color: var(--primary); }
.area-badge--dist { background: var(--gray-100); color: var(--gray-600); }
.area-card p { font-size: .9375rem; color: var(--gray-600); line-height: 1.6; margin-bottom: .75rem; }
.area-link { font-size: .875rem; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: .25rem; }

/* ── WERKGEBIED MAP GRID ── */
.werkgebied-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

/* ── FORM STATUS MESSAGES ── */
.form-status {
  padding: 1rem; border-radius: .75rem; font-size: .9375rem; font-weight: 500;
  text-align: center; margin-top: 1rem; display: none;
}
.form-status.success { display: block; background: rgba(34,139,34,.1); color: var(--primary-dark); }
.form-status.error { display: block; background: rgba(211,47,47,.1); color: #c62828; }
.form-error {
  color: #d32f2f;
  font-size: .85rem;
  display: block;
  margin-top: .25rem;
}
.input-error {
  border-color: #d32f2f !important;
  box-shadow: 0 0 0 3px rgba(211, 47, 47, .1);
}

/* ── PARALLAX HERO ── */
.hero { position: relative; overflow: hidden; }
.hero-bg { will-change: transform; }

/* ── PRIVACY PAGE ── */
.privacy-content { max-width: 800px; margin: 0 auto; }
.privacy-content h2 { font-family: var(--font-h); font-size: 1.25rem; font-weight: 700; margin: 2rem 0 .75rem; color: var(--secondary); }
.privacy-content p, .privacy-content li { font-size: .9375rem; line-height: 1.7; color: var(--gray-600); margin-bottom: .75rem; }
.privacy-content ul { padding-left: 1.5rem; list-style: disc; }
.privacy-content a { color: var(--primary); text-decoration: underline; }

/* ── BREADCRUMB ── */
.breadcrumb { padding: .75rem 0; font-size: .875rem; }
.breadcrumb a { color: var(--primary); }
.breadcrumb span { color: var(--gray-500); }

/* ── SHARED SVG SIZES ── */
.icon16 { width: 16px; height: 16px; fill: currentColor; }
.icon18 { width: 18px; height: 18px; fill: currentColor; }
.icon20 { width: 20px; height: 20px; fill: currentColor; }
.icon24 { fill: currentColor; }

/* ── RESPONSIVE: TABLET (1024px) ── */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── RESPONSIVE: MOBILE (768px) ── */
@media (max-width: 768px) {
  /* Topbar: hide entirely on mobile (phone is in header + WhatsApp float) */
  .topbar { display: none; }

  /* Header: hide CTA button, shrink phone number */
  .nav-cta .btn-primary { display: none; }
  .nav-phone { font-size: .9rem; }

  /* Hero: map below text, full-width content */
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-map { order: 1; }
  .hero-map img { max-height: 200px; }
  .hero-content { max-width: 100%; }
  .hero p { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero { min-height: auto; }
  .hero-grid { padding: 3rem 0 8rem; }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; gap: 2rem; }

  .stats-section .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--gray-100); padding: 2rem 1rem; }
  .stat-item:last-child { border-bottom: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .mobile-nav-toggle { display: block; }
  .nav-menu {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
  }
  .nav-menu.active { display: flex; }
  .nav-menu a { padding: .75rem 1rem; }
  .nav { position: relative; }

  .form-row { grid-template-columns: 1fr; }

  .why-img { min-height: 300px; }

  .cookie-banner .container { flex-direction: column; text-align: center; }
  .cookie-btn-group { justify-content: center; }
  .map-embed iframe { height: 300px; }

  h2.title { font-size: 2rem; }
  .subtitle { font-size: 1rem; }
  .section { padding: 3.5rem 0; }

  .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; }

  .faq .grid-2 { gap: 2rem; }
  .faq-question { padding: 1rem 1.25rem; font-size: .95rem; }
  .faq-answer { padding: 0 1.25rem 1rem; }

  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { order: -1; }

  /* Service card featured: single column on mobile */
  .service-card--featured { grid-column: span 1; }

  /* Werkgebied: stack map grid and town lists */
  .werkgebied-map-grid { grid-template-columns: 1fr !important; }
  .werkgebied-map-grid > div:last-child { order: -1; }
  .werkgebied-towns { grid-template-columns: 1fr !important; }

  /* Locatie / Google Reviews section: stack columns */
  .locatie-grid { grid-template-columns: 1fr; }
}

/* ── RESPONSIVE: SMALL MOBILE (480px) ── */
@media (max-width: 480px) {
  h2.title { font-size: 1.625rem; }
  .subtitle { font-size: .9375rem; }
  .hero h1 { font-size: 1.75rem; }
  .hero p { font-size: 1rem; }

  .step-num { width: 60px; height: 60px; font-size: 1.25rem; }
  .step h3 { font-size: 1rem; }

  .btn-lg { padding: 1rem 1.75rem; font-size: 1rem; }
  .btn { padding: .75rem 1.5rem; font-size: .875rem; }

  .section { padding: 2.5rem 0; }
  .container { padding: 0 1rem; }

  .hero-actions { flex-direction: column; align-items: center; }

  .contact-form { padding: 1.5rem; }

  .service-card { padding: 1.5rem; }

  .stat-num { font-size: 2rem; }
  .why-badge-num { font-size: 2rem; }

  /* Hero stats: smaller text on small screens */
  .hero-stat-num { font-size: 1.5rem; }
  .hero-stat-label { font-size: .75rem; }
  .hero-stat { padding: 1rem .5rem; }

  /* Result cards: stack before/after images */
  .result-images { grid-template-columns: 1fr; }
  .result-before, .result-after { width: 100%; }

  /* Filter buttons: tighter on small screens */
  .filter-bar { gap: .375rem; }
  .project-filter { padding: .375rem 1rem; font-size: .8rem; }

  /* CTA buttons: stack vertically */
  .cta-actions { flex-direction: column; align-items: center; }
}

/* ── TIPS / BLOG PAGE ── */
.tip-card {
  max-width: 800px;
}
.tip-badge {
  display: inline-block; padding: .375rem 1rem; border-radius: 2rem;
  background: var(--primary); color: var(--white);
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  margin-bottom: 1.25rem;
}
.tip-intro {
  font-size: 1.125rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1.5rem;
}
.tip-text {
  font-size: 1rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1rem;
}
.tip-subtitle {
  font-family: var(--font-h); font-size: 1.25rem; font-weight: 700;
  margin: 2rem 0 1rem; color: var(--secondary);
}
.tip-steps {
  display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0;
}
.tip-step {
  display: flex; gap: 1.25rem; align-items: flex-start;
}
.tip-step-num {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary); color: var(--white);
  font-family: var(--font-h); font-weight: 700; font-size: 1rem;
  border-radius: 50%;
}
.tip-step p {
  font-size: 1rem; color: var(--gray-600); line-height: 1.7; padding-top: .5rem;
}
.tip-checklist {
  list-style: none; display: flex; flex-direction: column; gap: .75rem; margin: 1.5rem 0;
}
.tip-checklist li {
  display: flex; gap: .75rem; align-items: flex-start;
  font-size: 1rem; color: var(--gray-600); line-height: 1.6;
}
.tip-service-tag {
  display: inline-block; padding: .5rem 1rem; border-radius: .5rem;
  background: var(--gray-100); color: var(--gray-700);
  font-size: .875rem; font-weight: 600; margin: .25rem .25rem 0 0;
}

/* ── BLOG CARDS ── */
.blog-card {
  display: flex; flex-direction: column; background: var(--white);
  border-radius: 1rem; overflow: hidden; text-decoration: none; color: var(--secondary);
  box-shadow: 0 2px 12px rgba(0,0,0,.06); transition: transform .3s, box-shadow .3s, border-left-color .3s;
  border-left: 3px solid transparent;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.1); border-left-color: var(--primary); }
.blog-card-img { position: relative; overflow: hidden; }
.blog-card-img img { width: 100%; height: 200px; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-tag {
  position: absolute; top: .75rem; left: .75rem;
  padding: .25rem .75rem; border-radius: .375rem;
  background: var(--primary); color: var(--white);
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
}
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-body h2 { font-family: var(--font-h); font-size: 1.25rem; font-weight: 700; margin-bottom: .5rem; }
.blog-card-body p { font-size: .9rem; color: var(--gray-600); line-height: 1.6; flex: 1; }
.blog-card-link {
  display: inline-flex; align-items: center; gap: .25rem;
  color: var(--primary); font-weight: 600; font-size: .9rem; margin-top: 1rem;
}

/* ── ARTICLE PAGE ── */
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; }
.article-content h2 {
  font-family: var(--font-h); font-size: 1.5rem; font-weight: 700;
  margin: 2rem 0 1rem; color: var(--secondary);
}
.article-content h3 { font-family: var(--font-h); font-size: 1.15rem; font-weight: 700; margin: 1.5rem 0 .75rem; }
.article-content p { font-size: 1rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1rem; }
.article-lead { font-size: 1.125rem !important; color: var(--gray-500) !important; line-height: 1.7; }
.article-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card {
  background: var(--off-white); border: 1px solid var(--gray-200);
  border-radius: 1rem; padding: 1.5rem;
}
.sidebar-card h3 { font-family: var(--font-h); font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.sidebar-links { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.sidebar-links a {
  display: block; padding: .75rem 1rem; border-radius: .5rem; background: var(--white);
  color: var(--secondary); font-weight: 500; font-size: .9rem;
  transition: background .2s, color .2s; text-decoration: none;
}
.sidebar-links a:hover { background: var(--primary); color: var(--white); }

/* ── RESULTS / BEFORE & AFTER ── */
.results { background: var(--off-white); }

/* Asymmetric section header — intentional left-alignment with accent border */
.results .text-center {
  text-align: left;
  padding-left: 1.5rem;
  border-left: 4px solid var(--primary);
}
.results .text-center .subtitle {
  margin: 0;
}

.result-card {
  background: var(--white); border-radius: 1rem; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06); transition: transform .3s, box-shadow .3s;
}
.result-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.result-images {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.result-before, .result-after {
  position: relative; overflow: hidden;
}
.result-before img, .result-after img {
  width: 100%; height: 180px; object-fit: cover; display: block;
}
.result-label {
  position: absolute; top: .75rem; left: .75rem;
  padding: .25rem .75rem; border-radius: .375rem;
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  color: var(--white);
}
.result-label--before { background: var(--gray-500); }
.result-label--after { background: var(--primary); }
.result-info { padding: 1.25rem; }
.result-info h3 {
  font-family: var(--font-h); font-size: 1.125rem; font-weight: 700; margin-bottom: .5rem;
}
.result-info p { font-size: .9rem; color: var(--gray-600); line-height: 1.6; margin-bottom: .75rem; }
.result-meta {
  display: flex; gap: 1.25rem; font-size: .8rem; color: var(--gray-500);
}
.result-meta span { display: inline-flex; align-items: center; gap: .35rem; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--white); border-radius: .75rem; border: 1px solid var(--gray-200);
  overflow: hidden; transition: box-shadow .3s;
}
.faq-item:hover { box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.faq-item[open] { border-color: var(--primary); box-shadow: 0 2px 12px rgba(34,139,34,.1); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 1.5rem; cursor: pointer; list-style: none;
  font-family: var(--font-h); font-weight: 600; font-size: 1rem; color: var(--secondary);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; content: ''; }
.faq-chevron {
  fill: var(--gray-400); transition: transform .3s; flex-shrink: 0;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); fill: var(--primary); }
.faq-answer {
  padding: 0 1.5rem 1.25rem;
}
.faq-answer p { font-size: .95rem; color: var(--gray-600); line-height: 1.7; }

/* ── PRINT STYLES ── */
@media print {
  *, *::before, *::after { background: transparent !important; color: #000 !important; box-shadow: none !important; text-shadow: none !important; }
  a, a:visited { text-decoration: underline; }
  a[href]::after { content: " (" attr(href) ")"; font-size: .8em; }
  .topbar, .wa-float, .mobile-nav-toggle, .hero-stats { display: none !important; }
  .header { position: static; box-shadow: none; }
  .hero { min-height: auto; background: none !important; }
  .hero h1, .hero p, .hero-badge { color: #000 !important; }
  .section { padding: 2rem 0; }
  .grid-2, .grid-3, .grid-4, .footer-grid { grid-template-columns: 1fr; }
  .service-card, .review-card { break-inside: avoid; border: 1px solid #ccc; }
  .btn { border: 1px solid #000; }
  .footer { padding-top: 2rem; }
  .contact-form { box-shadow: none; border: 1px solid #ccc; }
  img { max-width: 100% !important; }
  @page { margin: 2cm; }
}
