﻿:root {
  --bg: #f8f9fa;
  --surface: #ffffff;
  --surface-2: #ffffff;
  --brand-primary: #2D6A4F;
  --brand-accent: #1B4332;
  --brand-soft: rgba(45, 106, 79, 0.14);
  --brand-wordmark: #111827;
  --brand-dark: #1B4332;
  --text: #111827;
  --muted: #4b5563;
  --teal: #0ca39a;
  --border: #e5e7eb;
  --ring: rgba(45, 106, 79, 0.22);
  --ok: #0e8a68;
  --warn: #b45309;
  --shadow-sm: 0 10px 26px rgba(17, 24, 39, 0.08);
  --shadow-lg: 0 22px 54px rgba(17, 24, 39, 0.12);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: min(1160px, 92%);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Manrope", "Segoe UI", "Trebuchet MS", sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--bg);
}

img { max-width: 100%; display: block; }
a { color: var(--brand-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: var(--container); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(229, 231, 235, 0.95);
  backdrop-filter: blur(12px);
}

.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand__mark { height: 48px; width: auto; }
.brand__name {
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  color: var(--brand-wordmark);
  letter-spacing: -0.4px;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 10px;
  font-size: 0;
  padding: 0;
  width: 42px;
  height: 40px;
  cursor: pointer;
}
.nav-toggle::before {
  content: "\2261";
  display: block;
  font-size: 1.5rem;
  line-height: 1;
  color: #1f2937;
}

.nav-links {
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.62rem;
  font-weight: 600;
  font-size: 0.84rem;
  border-radius: 999px;
  color: #2d3a33;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--brand-soft);
  color: var(--brand-primary);
  text-decoration: none;
}

.nav-links a.active {
  background: var(--brand-primary);
  color: #fff;
}

.header-cta { margin-left: 0.5rem; }

main { min-height: calc(100vh - 180px); }

.hero { padding: 5rem 0 3.2rem; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 1.4rem;
  align-items: center;
}
.hero-panel {
  border: 1px solid var(--border);
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.75rem;
}

.kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.26rem 0.62rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  font-size: 0.74rem;
  color: var(--brand-primary);
  background: var(--brand-soft);
}

h1, h2, h3 {
  color: #111827;
  line-height: 1.2;
  margin: 0 0 0.85rem;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2rem, 4.2vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.04rem, 2vw, 1.24rem); }
p { color: var(--muted); margin: 0 0 1rem; }

.button,
button,
input,
textarea,
select { font: inherit; }

.button-row { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 12px;
  border: 1px solid transparent;
  background: var(--brand-primary);
  color: #fff;
  font-weight: 800;
  padding: 0.72rem 1.06rem;
  box-shadow: 0 10px 24px rgba(45, 106, 79, 0.26);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.button::after { content: ">"; font-size: 0.85rem; }
.button:hover {
  text-decoration: none;
  transform: translateY(-1px);
  background: var(--brand-accent);
  box-shadow: 0 14px 28px rgba(27, 67, 50, 0.28);
}
.button--ghost {
  background: #fff;
  color: var(--brand-dark);
  border-color: var(--border);
  box-shadow: none;
}
.button--ghost:hover { background: var(--surface-2); }
.button--small { padding: 0.58rem 0.86rem; font-size: 0.86rem; }

.section { padding: 2.6rem 0; }
.section-title { margin-bottom: 1rem; }
.grid { display: grid; gap: 1rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
  border: 1px solid var(--border);
  background: linear-gradient(160deg, #fff 0%, var(--surface-2) 100%);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem;
}
.card ul { margin: 0.4rem 0 0.8rem 1rem; color: var(--muted); padding: 0; }
.card li { margin-bottom: 0.3rem; }

.icon-dot {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--brand-primary));
  margin-bottom: 0.76rem;
}

.stat-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.stat-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.2rem;
}
.stat-number {
  font-size: clamp(1.95rem, 5vw, 2.7rem);
  line-height: 1.1;
  margin-bottom: 0.3rem;
  color: var(--brand-dark);
  font-weight: 800;
}
.stat-label { color: #374151; font-weight: 700; }

.notice-banner {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  padding: 0.95rem 1rem;
  color: #374151;
}

.step-list {
  display: grid;
  gap: 0.8rem;
  counter-reset: steps;
}
.step-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  padding: 0.88rem 0.95rem;
}
.step-item::before {
  counter-increment: steps;
  content: counter(steps);
  display: inline-grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.5rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-primary);
  font-weight: 800;
}

.loop-shell {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.15rem;
}
.loop-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: center;
  gap: 0.5rem;
}
.loop-step {
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
  padding: 0.75rem 0.45rem;
  font-weight: 700;
  color: #111827;
}
.loop-arrow {
  text-align: center;
  color: var(--brand-accent);
  font-size: 1.2rem;
  font-weight: 800;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.product-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #fff;
}
.product-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid #e5e7eb;
  background:
    radial-gradient(circle at 76% 20%, rgba(255, 255, 255, 0.42), transparent 38%),
    linear-gradient(135deg, #d8eadf, #bfdacb);
}
.product-content { padding: 1rem; }
.price { color: var(--brand-dark); font-weight: 800; }

.form-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  padding: 1.2rem;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.form-field { display: flex; flex-direction: column; gap: 0.35rem; }
.form-field.full { grid-column: 1 / -1; }

label { color: #1f2937; font-weight: 700; }
input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  padding: 0.62rem 0.76rem;
}
textarea { min-height: 120px; resize: vertical; }

input:focus,
select:focus,
textarea:focus,
.faq-question:focus-visible,
.nav-toggle:focus-visible,
.button:focus-visible {
  outline: none;
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 4px var(--ring);
}

.checkbox-row {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
}
.checkbox-row input { width: auto; }

.form-feedback {
  margin-top: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  font-size: 0.92rem;
}
.form-feedback.error { background: #fff4f4; color: #9a2828; border: 1px solid #f0cccc; }
.form-feedback.success { background: #effcf7; color: #10653f; border: 1px solid #b8ebd3; }
.hidden { display: none !important; }

.blog-post {
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  background: #fff;
  padding: 1.9rem;
}
.blog-post h2 { margin-top: 1.45rem; }
.blog-post ul { margin: 0.5rem 0 1rem 1.05rem; color: var(--muted); }
 .meta { font-size: 0.9rem; color: #6b7280; margin-bottom: 0.6rem; }

.accordion { display: grid; gap: 0.8rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
}
.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  font-weight: 800;
  color: var(--text);
  padding: 0.92rem 1rem;
  cursor: pointer;
}
.faq-answer { display: none; padding: 0 1rem 0.95rem; color: var(--muted); }
.faq-item.open .faq-answer { display: block; }

.site-footer {
  margin-top: 2.3rem;
  background: radial-gradient(circle at 16% 14%, rgba(45, 106, 79, 0.25), transparent 34%), #13261c;
  color: #ffffff;
  padding: 2rem 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 1rem; }
.site-footer strong { color: #ffffff; }
.site-footer a { color: #ffffff; }
.site-footer .footer-secondary,
.site-footer .small.footer-secondary,
.site-footer .seo-location {
  color: #d1d5db;
}
.site-footer .footer-contact { color: #ffffff; }
.social-links {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.social-links a {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #ffffff;
  border-radius: 999px;
  padding: 0.32rem 0.55rem;
}
.social-links a:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
}
.small { font-size: 0.9rem; }
.seo-location { margin-top: 0.5rem; color: #d1d5db; }

.insights-view-all {
  margin-top: 1rem;
}

.insights-view-all a {
  font-weight: 700;
}

@media (max-width: 1100px) {
  .nav-links a { font-size: 0.8rem; padding: 0.35rem 0.52rem; }
  .header-cta { margin-left: 0.3rem; }
}

@media (max-width: 930px) {
  .hero-grid,
  .grid-3,
  .grid-2,
  .footer-grid,
  .form-grid,
  .stat-grid,
  .loop-grid { grid-template-columns: 1fr; }
  .loop-arrow { display: none; }
  .hero { padding-top: 4.2rem; }
}

@media (max-width: 760px) {
  .navbar { min-height: 72px; position: relative; }
  .brand__mark { height: 40px; }
  .brand__name { font-size: 21px; }
  .brand { gap: 8px; }
  .nav-toggle { display: inline-block; }

  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.99);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    padding: 0.45rem;
    margin-left: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.72rem 0.86rem;
    border-radius: 10px;
  }
  .header-cta {
    display: none;
  }
  .blog-post { padding: 1.2rem; }
}

@media (max-width: 420px) {
  .brand__mark { height: 36px; }
  .brand__name { font-size: 19px; }
  .navbar { gap: 0.55rem; }
}


/* Homepage Redesign */
html {
  scroll-behavior: smooth;
}

.home-page {
  --home-accent: #2D6A4F;
  --home-accent-soft: #d9f2e2;
  --home-bg: #f6f8f6;
  --home-text: #102017;
  --home-muted: #4f6658;
  background: var(--home-bg);
  color: var(--home-text);
  font-family: "Inter", "Plus Jakarta Sans", "Segoe UI", sans-serif;
}

.home-page .site-header {
  background: rgba(255, 255, 255, 0.9);
}

.home-page .button {
  background: var(--home-accent);
  box-shadow: 0 12px 28px rgba(45, 106, 79, 0.28);
}

.home-page .button:hover {
  background: #1B4332;
}

.home-page .button--ghost {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-color: rgba(184, 219, 198, 0.85);
}

.home-page .home-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background-image: url("laptop_1.avif");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.home-page .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 25%, rgba(45, 106, 79, 0.3), transparent 45%),
    linear-gradient(180deg, rgba(7, 14, 11, 0.72) 0%, rgba(7, 14, 11, 0.68) 100%);
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(16, 32, 23, 0.45), transparent 55%);
}

.home-hero__inner {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 760px;
  text-align: left;
  padding: 2rem 0;
}

.home-hero__tag {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e7f5ec;
}

.home-page .home-hero h1 {
  font-size: clamp(2.25rem, 6vw, 4.2rem);
  color: #fff;
  margin-bottom: 0.95rem;
}

.home-hero__sub {
  color: #e2f4ea;
  font-size: clamp(1rem, 2.6vw, 1.25rem);
  max-width: 680px;
}

.home-stats {
  padding-top: 3.5rem;
}

.home-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.home-stat-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-left: 4px solid var(--home-accent);
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: 0 10px 24px rgba(18, 38, 28, 0.08);
}

.home-stat-card__value {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: #123122;
}

.home-stat-card__label {
  color: var(--home-muted);
  font-weight: 600;
}

.home-serve-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.home-serve-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 1.35rem;
  box-shadow: 0 8px 22px rgba(25, 49, 36, 0.08);
}

.home-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e4f6eb, #d2ebdc);
  color: #154830;
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 0.9rem;
}

.home-steps {
  position: relative;
}

.home-steps::before {
  content: "";
  position: absolute;
  right: 4%;
  top: 12%;
  width: 220px;
  height: 220px;
  border: 1px dashed rgba(45, 106, 79, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.home-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-step {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 1.2rem;
}

.home-step span {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--home-accent-soft);
  color: #164a33;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.home-impact {
  background: linear-gradient(180deg, #edf7f1 0%, #e4f1ea 100%);
}

.home-impact__inner {
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.75);
  padding: 1.5rem;
}

.home-impact__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.home-impact__stats div {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 0.8rem;
}

.home-impact__stats strong {
  display: block;
  color: #15452f;
  margin-bottom: 0.2rem;
}

.home-impact__stats span {
  color: var(--home-muted);
  font-size: 0.92rem;
}

.home-contact-cta__inner {
  text-align: center;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  background: #fff;
  padding: 2rem 1.2rem;
  box-shadow: 0 12px 28px rgba(17, 41, 30, 0.08);
}

.home-contact-cta__form {
  max-width: 620px;
  margin: 1rem auto 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem;
}

.home-contact-cta__form input {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 0.82rem 0.95rem;
}

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

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 930px) {
  .home-stats__grid,
  .home-serve-grid,
  .home-steps__grid,
  .home-impact__stats {
    grid-template-columns: 1fr;
  }

  .home-steps::before {
    display: none;
  }

  .home-contact-cta__form {
    grid-template-columns: 1fr;
  }

  .home-contact-cta__form .button {
    width: 100%;
  }
}




/* ITAD process illustrated cards */
.process-steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 0.8rem;
  align-items: stretch;
}

.process-step-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-top: 4px solid #2D6A4F;
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.08);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 360px;
}

.process-step-illustration {
  width: 80px;
  height: 80px;
  margin-bottom: 0.8rem;
}

.process-step-number {
  font-weight: 700;
  color: #2D6A4F;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  margin-bottom: 0.45rem;
}

.process-step-card h3 {
  margin-bottom: 0.55rem;
}

.process-step-card p {
  margin: 0;
}

.process-step-arrow {
  display: grid;
  place-items: center;
  color: #2D6A4F;
  font-size: 1.35rem;
  font-weight: 700;
}

@media (max-width: 1120px) {
  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-step-arrow {
    transform: rotate(90deg);
    margin: -0.15rem 0;
  }

  .process-step-card {
    min-height: 0;
  }
}

/* About page redesign */
.about-page .section {
  padding: 3.1rem 0;
}

.about-hero {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.about-hero__inner {
  max-width: 860px;
}

.about-hero__sub {
  max-width: 760px;
  font-size: 1.08rem;
}

.about-stats {
  background: #2D6A4F;
  padding: 1.15rem 0;
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-stat {
  text-align: center;
  color: #ffffff;
}

.about-stat__value {
  color: #ffffff;
  margin: 0;
  font-size: clamp(1.35rem, 3.8vw, 2.1rem);
  font-weight: 800;
  line-height: 1.2;
}

.about-stat__label {
  color: rgba(255, 255, 255, 0.9);
  margin: 0.2rem 0 0;
  font-size: 0.92rem;
  font-weight: 600;
}

.about-section--white {
  background: #ffffff;
}

.about-section--muted {
  background: #f8f9fa;
}

.about-section--sustainability {
  background: #f0f7f4;
}

.about-copy {
  max-width: 920px;
}

.about-copy h2 {
  margin-bottom: 0.9rem;
}

.about-quote {
  margin: 0 0 1rem;
  padding: 0.7rem 0 0.7rem 1rem;
  border-left: 4px solid #2D6A4F;
  color: #1B4332;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 700;
}

.about-pillars {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.about-pillar-card {
  border: 1px solid #d7e8df;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.08);
  padding: 1rem;
}

.about-pillar-card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.35rem;
}

.about-pillar-card p {
  margin: 0;
  font-size: 0.94rem;
}

.about-pillar-icon {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 10px;
  margin-bottom: 0.7rem;
  background: #e6f3ed;
}

.about-pillar-icon svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: none;
  stroke: #2D6A4F;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-cta {
  background: #2D6A4F;
}

.about-cta__inner {
  text-align: center;
  max-width: 900px;
}

.about-cta__inner h2,
.about-cta__inner p {
  color: #ffffff;
}

.about-cta__inner p {
  color: rgba(255, 255, 255, 0.9);
}

.about-cta__buttons {
  justify-content: center;
}

.about-cta__primary {
  background: #ffffff;
  color: #2D6A4F;
  border-color: #ffffff;
  box-shadow: none;
}

.about-cta__primary:hover {
  background: #f3f4f6;
  color: #1B4332;
}

.about-cta__secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.75);
  box-shadow: none;
}

.about-cta__secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 930px) {
  .about-stats__grid,
  .about-pillars {
    grid-template-columns: 1fr;
  }

  .about-stat {
    padding: 0.25rem 0;
  }
}
