/* ==========================================================================
   Aurik Green Solutions Pvt. Ltd. — Standard Website
   Shared stylesheet for all pages. No dependencies, no build step.
   Brand palette is defined once in :root — change it there to re-skin.
   ========================================================================== */

/* ---------- 1. Design tokens ---------- */
:root {
  --green-900: #0b3d2e;
  --green-800: #0f5132;
  --green-700: #047857;
  --green-600: #059669;
  --green-500: #10b981;
  --green-400: #34d399;
  --green-200: #a7f3d0;
  --green-50:  #ecfdf5;

  --ink:       #10261f;
  --body:      #47605a;
  --muted:     #7a938c;
  --line:      #e2ece8;
  --surface:   #ffffff;
  --surface-2: #f5faf8;

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 26px;

  --shadow-sm: 0 1px 2px rgba(11, 61, 46, .06), 0 4px 12px rgba(11, 61, 46, .05);
  --shadow:    0 4px 10px rgba(11, 61, 46, .06), 0 18px 40px rgba(11, 61, 46, .09);
  --shadow-lg: 0 30px 70px rgba(11, 61, 46, .16);

  --maxw: 1180px;
  --font: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--body);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--green-700); text-decoration: none; }
a:hover { color: var(--green-500); }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.18; margin: 0 0 .5em; font-weight: 750; letter-spacing: -.02em; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.5rem); }
h2 { font-size: clamp(1.65rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.18rem; }
p  { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--green-400); outline-offset: 3px; border-radius: 6px; }

/* ---------- 3. Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.section { padding: clamp(60px, 8vw, 104px) 0; }
.section--tint { background: var(--surface-2); border-block: 1px solid var(--line); }
.grid { display: grid; gap: 26px; }
.center { text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .74rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--green-700); background: var(--green-50);
  border: 1px solid var(--green-200); border-radius: 999px;
  padding: 6px 14px; margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green-500); }

.section-head { max-width: 720px; margin: 0 auto 46px; text-align: center; }
.section-head p { font-size: 1.03rem; margin-bottom: 0; }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font: inherit; font-weight: 700; font-size: .95rem;
  padding: 13px 26px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: linear-gradient(135deg, var(--green-500), var(--green-700)); color: #fff; box-shadow: 0 10px 24px rgba(5, 150, 105, .32); }
.btn--primary:hover { color: #fff; box-shadow: 0 16px 32px rgba(5, 150, 105, .4); }
.btn--ghost { background: transparent; color: var(--green-800); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--green-400); background: var(--green-50); color: var(--green-800); }
.btn--light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.4); }
.btn--light:hover { background: #fff; color: var(--green-800); }
.btn--wide { width: 100%; }

/* ---------- 5. Top bar + header ---------- */
.topbar {
  background: var(--green-900); color: #b9d8cd;
  font-size: .82rem; letter-spacing: .01em;
}
.topbar__in { display: flex; flex-wrap: wrap; gap: 8px 26px; align-items: center; justify-content: space-between; padding-block: 8px; }
.topbar a { color: #d6efe5; }
.topbar a:hover { color: #fff; }
.topbar__list { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.topbar__list li { display: flex; align-items: center; gap: 7px; }

.header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(1.6) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__in { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 76px; }
.header__logo img { height: 52px; width: auto; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 9px 15px; border-radius: 999px; font-weight: 650; font-size: .94rem; color: var(--ink);
  transition: background .18s ease, color .18s ease;
}
.nav a:hover, .nav a.is-active { background: var(--green-50); color: var(--green-700); }
.header__cta { display: flex; align-items: center; gap: 10px; }

.burger {
  display: none; width: 46px; height: 42px; border: 1px solid var(--line); border-radius: 12px;
  background: #fff; cursor: pointer; padding: 0; position: relative;
}
.burger span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s ease; }
.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 20px; }
.burger span:nth-child(3) { top: 26px; }
.burger[aria-expanded="true"] span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(1100px 520px at 82% -10%, #12684a 0%, transparent 60%), linear-gradient(160deg, #0b3d2e 0%, #0f5132 52%, #08322a 100%);
  color: #d8ece3;
  padding: clamp(56px, 8vw, 96px) 0 clamp(66px, 9vw, 110px);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 62px 62px; mask-image: radial-gradient(70% 60% at 50% 40%, #000 0%, transparent 100%);
}
.hero__in { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; gap: 54px; align-items: center; }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: var(--green-400); }
.hero__lead { font-size: 1.08rem; color: #bcd9cd; max-width: 54ch; }
.hero .eyebrow { background: rgba(52,211,153,.12); border-color: rgba(52,211,153,.35); color: var(--green-200); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero__stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: 42px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.14);
}
.hero__stats b { display: block; font-size: clamp(1.35rem, 2.1vw, 1.8rem); color: #fff; line-height: 1.1; }
.hero__stats span { display: block; font-size: .78rem; color: #9dc3b4; letter-spacing: .03em; line-height: 1.35; }

.hero__art { position: relative; }
.hero__art svg { width: 100%; height: auto; filter: drop-shadow(0 30px 60px rgba(0,0,0,.4)); }
.hero__badge {
  position: absolute; left: -6px; bottom: 14px;
  background: rgba(255,255,255,.96); color: var(--green-900);
  border-radius: var(--radius); padding: 12px 18px; box-shadow: var(--shadow-lg);
  font-size: .84rem; font-weight: 700; line-height: 1.35;
}
.hero__badge small { display: block; font-weight: 600; color: var(--body); font-size: .76rem; }

/* ---------- 7. Trust strip ---------- */
.trust { background: var(--surface-2); border-bottom: 1px solid var(--line); padding: 20px 0; }
.trust__in { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 34px; }
.trust__item {
  display: flex; align-items: center; gap: 9px;
  font-size: .84rem; font-weight: 700; color: var(--green-800);
  letter-spacing: .04em; text-transform: uppercase;
}
.trust__item svg { width: 18px; height: 18px; flex: none; }

/* ---------- 8. Cards ---------- */
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 28px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--green-200); }
.card h3 { margin-bottom: 8px; }
.card p:last-child { margin-bottom: 0; }
.card__icon {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--green-50), #d9f4e8); color: var(--green-700);
  margin-bottom: 18px; border: 1px solid var(--green-200);
}
.card__icon svg { width: 26px; height: 26px; }

.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- 9. Product cards ---------- */
.product {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.product:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--green-200); }
.product__media {
  background: linear-gradient(150deg, #0f5132, #10b981);
  padding: 26px 20px; display: grid; place-items: center; position: relative;
}
.product__media svg { height: 150px; width: auto; }
.product__tag {
  position: absolute; top: 14px; right: 14px;
  background: rgba(255,255,255,.94); color: var(--green-800);
  font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
}
.product__body { padding: 24px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.product__body h3 { margin-bottom: 6px; }
.product__spec { margin-top: auto; padding-top: 16px; border-top: 1px dashed var(--line); font-size: .87rem; }
.product__spec li { display: flex; justify-content: space-between; gap: 14px; padding: 5px 0; }
.product__spec b { color: var(--ink); font-weight: 700; }

/* ---------- 10. Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.split__art { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.split__art svg { width: 100%; height: auto; display: block; }
.ticks li { position: relative; padding: 8px 0 8px 34px; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 14px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--green-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23059669' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
  border: 1px solid var(--green-200);
}
.ticks li b { color: var(--ink); }

/* ---------- 11. Stats band ---------- */
.band {
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  color: #fff; border-radius: var(--radius-lg); padding: clamp(30px, 4vw, 46px);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; text-align: center;
  box-shadow: var(--shadow-lg);
}
.band b { display: block; font-size: clamp(1.7rem, 3.4vw, 2.5rem); line-height: 1.1; }
.band span { font-size: .84rem; color: #a9d0c1; }

/* ---------- 12. Steps ---------- */
.steps { counter-reset: s; grid-template-columns: repeat(4, 1fr); }
.step { position: relative; padding-top: 16px; }
.step::before {
  counter-increment: s; content: "0" counter(s);
  font-size: 2.4rem; font-weight: 800; color: var(--green-200); line-height: 1; display: block; margin-bottom: 10px;
}
.step h3 { font-size: 1.05rem; }

/* ---------- 13. Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 34px; align-items: start; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .84rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: .95rem; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--surface-2); transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.field textarea { min-height: 118px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green-400); background: #fff; box-shadow: 0 0 0 4px rgba(52,211,153,.16);
}
.field .err { display: none; color: #c0392b; font-size: .78rem; margin-top: 5px; font-weight: 600; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #e05c4b; background: #fff6f5; }
.field.is-invalid .err { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.form-note { font-size: .8rem; color: var(--muted); margin: 12px 0 0; }
.form-status { display: none; margin-top: 14px; padding: 13px 16px; border-radius: var(--radius-sm); font-size: .9rem; font-weight: 650; }
.form-status.is-ok { display: block; background: var(--green-50); color: var(--green-800); border: 1px solid var(--green-200); }
.form-status.is-err {
  display: block; background: #fff5f4; color: #a3372a;
  border: 1px solid #f3c7c0;
}


.info-list { display: grid; gap: 14px; margin-bottom: 22px; }
.info-item { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; }
.info-item svg { width: 20px; height: 20px; color: var(--green-600); flex: none; margin-top: 4px; }
.info-item b { display: block; color: var(--ink); font-size: .93rem; }
.info-item span, .info-item a { font-size: .92rem; color: var(--body); }

.map-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); line-height: 0; }
.map-frame iframe { width: 100%; height: 320px; border: 0; }

/* ---------- 14. CTA ---------- */
.cta {
  background: linear-gradient(135deg, #0b3d2e, #047857);
  color: #d8ece3; border-radius: var(--radius-lg); padding: clamp(34px, 5vw, 60px);
  text-align: center; box-shadow: var(--shadow-lg);
}
.cta h2 { color: #fff; }
.cta p { max-width: 60ch; margin: 0 auto 24px; color: #bcd9cd; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- 15. Footer ---------- */
.footer { background: var(--green-900); color: #9dc3b4; padding: 62px 0 0; margin-top: 0; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 34px; padding-bottom: 44px; }
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.footer a { color: #9dc3b4; font-size: .93rem; }
.footer a:hover { color: var(--green-400); }
.footer li { padding: 4px 0; }
.footer__logo img { height: 54px; margin-bottom: 16px; }
.footer__about { font-size: .92rem; max-width: 34ch; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0;
  display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: space-between; font-size: .84rem;
}
.social { display: flex; gap: 10px; margin-top: 16px; }
.social a {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(255,255,255,.08); color: #d6efe5; transition: background .2s ease, transform .2s ease;
}
.social a:hover { background: var(--green-500); color: #fff; transform: translateY(-3px); }
.social svg { width: 17px; height: 17px; }

/* ---------- 16. Back to top ---------- */
.to-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 80;
  width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--green-700); color: #fff; display: grid; place-items: center;
  box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: .25s ease;
}
.to-top.is-on { opacity: 1; visibility: visible; transform: none; }
.to-top svg { width: 19px; height: 19px; }

/* ---------- 17. Reveal on scroll (light touch) ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- 18. Responsive ---------- */
@media (max-width: 1000px) {
  .hero__in, .split, .contact-grid { grid-template-columns: 1fr; }
  .cols-4, .steps { grid-template-columns: repeat(2, 1fr); }
  .band { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__art { order: -1; max-width: 420px; margin-inline: auto; }
}
@media (max-width: 820px) {
  .burger { display: block; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--line); padding: 12px 18px 18px;
    box-shadow: var(--shadow); display: none;
  }
  .nav.is-open { display: flex; }
  .header__in { position: relative; }
  .header__cta .btn { display: none; }
  .cols-3, .cols-2 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .cols-4, .steps { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .topbar__in { justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 19. Print ---------- */
@media print {
  .header, .topbar, .to-top, .hero__art, .map-frame, .cta { display: none !important; }
  body { color: #000; }
}

/* ==========================================================================
   20. MULTI-PAGE COMPONENTS  (Standard Website)
   ========================================================================== */

/* ---------- 20.1 Page banner (inner pages) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  background: radial-gradient(900px 420px at 80% -20%, #12684a 0%, transparent 62%),
              linear-gradient(160deg, #0b3d2e 0%, #0f5132 55%, #08322a 100%);
  color: #bcd9cd; padding: clamp(48px, 7vw, 84px) 0 clamp(52px, 7vw, 88px);
  text-align: center;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(65% 70% at 50% 40%, #000 0%, transparent 100%);
}
.page-hero > * { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 4.4vw, 3rem); margin-bottom: 12px; }
.page-hero p { max-width: 62ch; margin: 0 auto; color: #bcd9cd; }
.page-hero .eyebrow { background: rgba(52,211,153,.12); border-color: rgba(52,211,153,.35); color: var(--green-200); }

.crumbs { font-size: .84rem; color: #8fb8a8; margin-top: 20px; }
.crumbs a { color: #cfeadf; }
.crumbs a:hover { color: #fff; }
.crumbs span { opacity: .55; padding: 0 6px; }

/* ---------- 20.2 Timeline ---------- */
.timeline { position: relative; padding-left: 34px; }
.timeline::before { content: ""; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 2px; background: var(--line); }
.timeline li { position: relative; padding: 0 0 26px; }
.timeline li::before {
  content: ""; position: absolute; left: -32px; top: 7px; width: 14px; height: 14px; border-radius: 50%;
  background: #fff; border: 3px solid var(--green-500);
}
.timeline b { display: block; color: var(--ink); font-size: 1.02rem; }
.timeline em { font-style: normal; font-size: .8rem; font-weight: 800; letter-spacing: .1em; color: var(--green-600); text-transform: uppercase; }

/* ---------- 20.3 Spec table ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
table.spec { width: 100%; border-collapse: collapse; min-width: 620px; font-size: .93rem; }
table.spec th, table.spec td { padding: 13px 18px; text-align: left; border-bottom: 1px solid var(--line); }
table.spec thead th { background: var(--green-900); color: #fff; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; border-bottom: none; }
table.spec tbody tr:nth-child(even) { background: var(--surface-2); }
table.spec tbody tr:hover { background: var(--green-50); }
table.spec td:first-child { font-weight: 700; color: var(--ink); }
table.spec tbody tr:last-child td { border-bottom: none; }

/* ---------- 20.4 Accordion / FAQ ---------- */
.accordion { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); }
.acc-item + .acc-item { border-top: 1px solid var(--line); }
.acc-head {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  font: inherit; font-weight: 700; font-size: 1rem; color: var(--ink); text-align: left;
  background: none; border: 0; padding: 20px 24px; cursor: pointer;
}
.acc-head:hover { color: var(--green-700); }
.acc-head .chev { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--green-50); display: grid; place-items: center; color: var(--green-700); transition: transform .25s ease, background .25s ease; }
.acc-head[aria-expanded="true"] .chev { transform: rotate(180deg); background: var(--green-500); color: #fff; }
.acc-head svg { width: 15px; height: 15px; }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height .32s ease; }
.acc-panel > div { padding: 0 24px 22px; font-size: .96rem; }

/* ---------- 20.5 Testimonials ---------- */
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 28px; box-shadow: var(--shadow-sm); }
.quote p { font-size: 1.02rem; color: var(--ink); font-style: italic; }
.quote footer { display: flex; align-items: center; gap: 13px; margin-top: 18px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: #fff; background: linear-gradient(135deg, var(--green-500), var(--green-800)); flex: none; }
.quote footer b { display: block; color: var(--ink); font-size: .93rem; }
.quote footer span { font-size: .83rem; color: var(--muted); }
.stars { color: #f59e0b; letter-spacing: 3px; font-size: .95rem; margin-bottom: 10px; }

/* ---------- 20.6 Logo / partner strip ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-size: .8rem; font-weight: 700; color: var(--green-800);
  background: var(--green-50); border: 1px solid var(--green-200);
  padding: 7px 14px; border-radius: 999px;
}

/* ---------- 20.7 Misc ---------- */
.lead { font-size: 1.08rem; }
.mt-0 { margin-top: 0; }
.mb-32 { margin-bottom: 32px; }
.narrow { max-width: 780px; margin-inline: auto; }
.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; }
