/* ── Variables & Base ─────────────────────── */
:root {
  --green-900: #0f2d1a; --green-700: #085041; --green-500: #085041;
  --green-400: #5cd97a; --green-200: #b7f5c7; --green-50: #f0fff4;
  --text: #374151; --muted: #6B7280; --white: #FFFFFF; --bg-alt: #F8FAFC;
  --border: #E5E7EB; --radius: 12px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08); --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}
body { color: var(--text); }
.svc-section, .svc-section * { font-family: 'Open Sans', sans-serif; }
.svc-section          { padding: 72px 0; }
.svc-section--light   { background: var(--white); }
/* .svc-section--dark-alt{ background: var(--bg-alt); } */

/* ── Shared Typography ── */
.svc-header { text-align: center; margin-bottom: 40px; }
.svc-badge {
  display: inline-block; background: var(--green-50); color: #085041;
  font-family: 'Jost', sans-serif; font-weight: 600; font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase; padding: 5px 16px;
  border-radius: 100px; border: 1px solid var(--green-200); margin-bottom: 14px;
}
.svc-title {
  font-family: 'Jost', sans-serif; font-size: 2.2rem; font-weight: 700;
  color: var(--green-900); margin-bottom: 16px; line-height: 1.25;
}
.svc-lead {
  font-size: 1.05rem; color: var(--muted); max-width: 700px;
  margin: 0 auto 32px; line-height: 1.75;
}
.sub-heading {
  font-family: 'Jost', sans-serif; font-size: 1.55rem; font-weight: 700;
  color: #28a745; margin-bottom: 28px; text-align: center;
}

/* ── Carbon Stat Cards ── */
.carbon-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 0;
}
.carbon-stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: transform var(--transition), border-color var(--transition);
}
.carbon-stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--green-400);
}
.carbon-stat-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: #fff;
  box-shadow: 0 4px 14px rgba(45,106,79,.25);
}
.carbon-stat-content { display: flex; flex-direction: column; }
.carbon-stat-num {
  font-family: 'Jost', sans-serif;
  font-size: 1.6rem; font-weight: 800;
  color: var(--green-700); line-height: 1;
}
.carbon-stat-lbl {
  font-size: .75rem; font-weight: 600;
  letter-spacing: .04em;
  color: var(--muted);
  margin-top: 5px;
  line-height: 1.4;
}
@media (max-width: 991px) { .carbon-stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .carbon-stats { grid-template-columns: 1fr; } }

/* ── Benefit Cards ── */
.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--green-400);
  box-shadow: var(--shadow);
}
.benefit-card__top {
  position: absolute;
  top: -14px;
  right: -14px;
  margin: 0;
  z-index: 0;
}
.benefit-card__num {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 8px 0 8px 10px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  box-shadow: 0 8px 20px rgba(8,80,65,.3);
  transition: transform var(--transition);
}
.benefit-card:hover .benefit-card__num { transform: scale(1.08) rotate(4deg); }
.benefit-card__icon { display: none; }
.benefit-card__title {
  position: relative;
  z-index: 1;
  font-family: 'Jost', sans-serif;
  font-size: .98rem; font-weight: 700;
  color: #085041; margin: 0 0 8px;
  line-height: 1.35;
  max-width: 78%;
}
.benefit-card__body {
  position: relative;
  z-index: 1;
  font-size: .85rem; line-height: 1.6; color: var(--muted); margin: 0;
}

/* ── Detail Tabs ── */
.detail-tabs {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
} 
.detail-tab-nav { display: flex; border-bottom: 1px solid var(--border); background: var(--bg-alt); }
.dtab {
  flex: 1; padding: 15px 12px;
  font-family: 'Jost', sans-serif; font-weight: 600; font-size: .9rem;
  border: none; background: transparent; color: var(--muted);
  cursor: pointer; border-bottom: 3px solid transparent;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.dtab:hover { color: #085041; }
.dtab.active { color: #085041; background: var(--white); border-bottom-color: var(--green-500); }
.detail-tab-panels { padding: 32px; }
.dtab-panel { display: none; }
.dtab-panel.active { display: block; }

/* ── Checklist Grid with Numbers ── */
.checklist-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  counter-reset: check-counter;
}
.check-item {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: .95rem; line-height: 1.65; color: var(--text);
  padding: 6px 0; counter-increment: check-counter;
}
.check-item i { display: none; }
.check-item::before {
  content: counter(check-counter);
  min-width: 28px; height: 28px;
  background: var(--green-700); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}

/* ── Let's Talk CTA ── */
.carbon-letstalk { padding: 32px 0 !important; background: #fff; border-top: 1px solid #e5ede8; }
.carbon-intro    { padding-bottom: 24px !important; }
.svc-cta-link {
  display: inline-flex; align-items: center; gap: 16px;
  text-decoration: none; cursor: pointer;
  border-bottom: 1.5px solid transparent;
  padding: 8px 0;
  transition: border-color .3s;
}
.svc-cta-link:hover { border-bottom-color: #28a745; }
.svc-cta-sub {
  font-family: 'Jost', sans-serif; font-size: .68rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: #28a745; display: block; margin-bottom: 4px;
}
.svc-cta-main {
  font-family: 'Jost', sans-serif; font-size: 1.15rem; font-weight: 700;
  color: #0f2d1a; display: block; letter-spacing: .01em;
}
.svc-cta-icon {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid #28a745; color: #28a745; font-size: 1.25rem; line-height: 1;
  flex-shrink: 0;
  transition: background .3s ease, color .3s ease, transform .35s cubic-bezier(0.34,1.56,0.64,1), border-color .3s ease;
}
.svc-cta-link:hover .svc-cta-icon {
  background: #28a745; color: #fff; border-color: #28a745;
  transform: translateX(6px);
}
.svc-cta-icon span { display: block; animation: svc-arrow-bounce 1.6s ease-in-out infinite; }
.svc-cta-link:hover .svc-cta-icon span { animation: none; }
@keyframes svc-arrow-bounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(3px); }
}

/* ── Two-column image layout ── */
.svc-left-content { display: flex; flex-direction: column; height: 100%; }
.svc-intro-label {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Jost', sans-serif; font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: #28a745;
  margin-bottom: 12px;
}
.svc-accent-line {
  display: inline-block; width: 28px; height: 2px;
  background: var(--green-400); border-radius: 2px; flex-shrink: 0;
}
.carbon-img-frame {
  border-radius: 0;
  overflow: hidden;
  position: relative;
  align-self: flex-end;
  margin-top: 38px;
}
.carbon-img-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .6s ease;
}
.carbon-img-frame:hover img { transform: scale(1.03); }

/* ── Responsive ── */
@media (max-width: 991px) {
  .svc-section { padding: 56px 0; }
  .svc-title   { font-size: 1.8rem; }
  .sub-heading { font-size: 1.35rem; }
}
@media (max-width: 767px) {
  .svc-section         { padding: 40px 0; }
  .svc-title           { font-size: 1.55rem; }
  .svc-header          { margin-bottom: 28px; }
  .checklist-grid      { grid-template-columns: 1fr; }
  .detail-tab-panels   { padding: 20px; }
  .stat-strip          { flex-wrap: wrap; }
  .stat-item           { flex: 1 1 50%; border-right: 1px solid var(--border); }
  .stat-item:nth-child(even)            { border-right: none; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4)               { border-top: 1px solid var(--border); }
}
