:root {
  --ink: #102424;
  --muted: #5d6d6b;
  --line: #dfe8e3;
  --paper: #fbfcf9;
  --panel: #ffffff;
  --green: #0f5f55;
  --green-dark: #0b3d3b;
  --teal: #38a3a5;
  --gold: #d99a29;
  --coral: #d95d39;
  --shadow: 0 24px 70px rgba(15, 61, 59, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 252, 249, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand,
.site-header nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--green-dark);
  border-radius: 7px;
  font-size: 0.78rem;
  font-weight: 900;
}

.site-header nav a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.site-header nav a:hover {
  color: var(--green);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 68px));
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 33, 34, 0.9) 0%, rgba(9, 33, 34, 0.7) 43%, rgba(9, 33, 34, 0.2) 100%),
    linear-gradient(0deg, rgba(9, 33, 34, 0.35), rgba(9, 33, 34, 0.05));
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding: 56px 0 84px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.hero-copy {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.16rem;
}

.hero-actions,
.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--coral);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.1);
}

.button.tertiary {
  color: var(--green);
  border-color: rgba(15, 61, 62, 0.22);
  background: #fff;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 780px;
  margin: 30px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-stats div {
  padding: 18px;
  background: rgba(7, 32, 33, 0.42);
}

.hero-stats dt {
  font-size: 1.4rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.section {
  padding: clamp(20px, 2.6vw, 34px) clamp(18px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

.split > div:first-child p:not(.eyebrow),
.section-heading,
.lead-panel p,
.enquiry-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.feature-grid,
.grant-cards,
.testimonial-grid {
  display: grid;
  gap: 14px;
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-grid article,
.grant-cards article,
.testimonial-grid figure,
.enquiry-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 10px 30px rgba(15, 61, 59, 0.06);
}

.feature-grid article {
  min-height: 200px;
  padding: 20px;
}

.icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 7px;
  font-size: 0.82rem;
  font-weight: 900;
}

.feature-grid article:nth-child(2) .icon {
  background: var(--coral);
}

.feature-grid article:nth-child(3) .icon {
  background: var(--teal);
}

.feature-grid article:nth-child(4) .icon {
  background: var(--gold);
}

.grant-band {
  padding-bottom: clamp(8px, 0.8vw, 10px);
  background: #edf5f1;
}

#process {
  padding-top: clamp(8px, 0.8vw, 10px);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 12px;
}

.section-heading.compact {
  max-width: 700px;
}

.grant-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grant-cards article {
  padding: clamp(20px, 3vw, 30px);
}

ul {
  padding-left: 20px;
}

li + li {
  margin-top: 8px;
}

.source-note {
  margin: 12px 0 0;
}

.funding-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(15, 61, 62, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 248, 0.92)),
    #fff;
  box-shadow: 0 16px 42px rgba(15, 61, 59, 0.08);
}

.funding-note-mark {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 24px rgba(15, 61, 62, 0.18);
  font-size: 1.35rem;
  font-weight: 900;
}

.funding-note-content h3 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.15;
}

.funding-note-label {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.funding-note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.funding-note-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.funding-note-grid strong {
  color: var(--green-dark);
  font-weight: 900;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
  counter-reset: steps;
}

.timeline li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 68px;
  width: calc(100% + 18px - 68px + 20px);
  height: 4px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--green) 0 72%, rgba(15, 61, 62, 0.14) 72% 100%);
}

.timeline li {
  position: relative;
  z-index: 1;
  min-height: 230px;
  padding: 46px 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 61, 59, 0.06);
}

.timeline li + li {
  margin-top: 0;
}

.timeline li:last-child::after {
  display: none;
}

.step {
  position: absolute;
  top: -24px;
  left: 20px;
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 6px solid #fff;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  box-shadow: 0 10px 22px rgba(15, 61, 62, 0.18);
  font-size: 0.82rem;
  font-weight: 900;
}

.lead-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: 16px;
  align-items: center;
  color: #fff;
  background: var(--green-dark);
}

.lead-panel p {
  max-width: 850px;
  color: rgba(255, 255, 255, 0.78);
}

.lead-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.lead-proof-strip span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
}

.lead-magnet-options {
  display: grid;
  gap: 10px;
}

.lead-magnet-card {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 14px 16px;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.lead-magnet-card:hover,
.lead-magnet-card:focus-visible {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.lead-magnet-card strong,
.lead-magnet-card span {
  display: block;
}

.lead-magnet-card > span:not(.lead-tag):not(.lead-card-cta) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.lead-tag {
  justify-self: start;
  border-radius: 999px;
  padding: 3px 8px;
  color: var(--green-dark);
  background: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.lead-card-cta {
  margin-top: 4px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
}

.testimonials {
  background: #fff;
  padding-bottom: clamp(10px, 1.4vw, 14px);
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-grid figure {
  min-height: 190px;
  margin: 0;
  padding: 22px;
}

blockquote {
  margin: 0;
  font-size: 1.05rem;
}

figcaption {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.portfolio-showcase {
  display: grid;
  gap: 12px;
  margin-top: 10px;
  scroll-margin-top: 92px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(15, 95, 85, 0.08), rgba(217, 154, 41, 0.06)),
    #f7faf8;
}

.portfolio-showcase-heading {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  padding-left: 18px;
}

.portfolio-showcase-heading::before {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 0;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), var(--green));
}

.portfolio-showcase-heading .eyebrow {
  display: inline-flex;
  margin-bottom: 8px;
  border-radius: 999px;
  padding: 5px 9px;
  color: #fff;
  background: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
}

.portfolio-showcase-heading h3 {
  margin-bottom: 0;
  max-width: 860px;
  color: var(--green-dark);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.98;
}

.project-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.project-portfolio-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 142px;
  border: 1px solid rgba(15, 61, 59, 0.12);
  border-radius: 8px;
  padding: 18px;
  color: inherit;
  background: rgba(255, 255, 255, 0.74);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.project-portfolio-card:hover {
  border-color: rgba(15, 95, 85, 0.32);
  box-shadow: 0 18px 45px rgba(15, 61, 59, 0.1);
  transform: translateY(-2px);
}

.project-portfolio-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-portfolio-card strong {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.5;
}

.enquiry-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: start;
  padding-top: clamp(10px, 1.4vw, 14px);
}

.contact-direct a {
  color: var(--green);
  font-weight: 800;
}

.enquiry-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: clamp(18px, 3vw, 26px);
  overflow: hidden;
}

.enquiry-form label {
  display: grid;
  gap: 7px;
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid #cbd9d3;
  border-radius: 7px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.enquiry-form textarea {
  resize: vertical;
}

.input-hint {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.enquiry-form .full {
  grid-column: 1 / -1;
}

.checkbox {
  display: flex;
  grid-template-columns: 18px 1fr;
  align-items: center;
}

.checkbox input {
  width: 18px;
  height: 18px;
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, padding 0.2s ease;
}

.form-status.error {
  color: #a43825;
}

.form-status.success {
  border: 1px solid rgba(37, 211, 102, 0.24);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--green);
  background: rgba(37, 211, 102, 0.08);
}

.submission-balloons {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}

.submission-balloon {
  position: absolute;
  bottom: -82px;
  left: var(--balloon-left);
  width: var(--balloon-size);
  height: calc(var(--balloon-size) * 1.18);
  border-radius: 52% 52% 48% 48%;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.72) 0 10%, transparent 11%),
    linear-gradient(145deg, var(--balloon-light), var(--balloon-color));
  box-shadow: 0 12px 24px rgba(15, 61, 59, 0.14);
  opacity: 0;
  transform: translateY(0) translateX(0) rotate(var(--balloon-tilt));
  animation: balloon-rise var(--balloon-duration) cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.submission-balloon::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 11px;
  height: 10px;
  border-radius: 2px 2px 8px 8px;
  background: var(--balloon-color);
  transform: translateX(-50%);
}

.submission-balloon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -58px;
  width: 1px;
  height: 52px;
  background: rgba(15, 61, 62, 0.28);
  transform: translateX(-50%);
}

@keyframes balloon-rise {
  0% {
    opacity: 0;
    transform: translateY(0) translateX(0) rotate(var(--balloon-tilt)) scale(0.9);
  }

  12% {
    opacity: 1;
  }

  72% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(-420px) translateX(var(--balloon-drift)) rotate(var(--balloon-end-tilt)) scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  .submission-balloon {
    display: none;
  }
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(330px, 1fr) minmax(300px, 0.88fr);
  align-items: start;
  gap: clamp(22px, 3.2vw, 48px);
  padding: clamp(30px, 4vw, 42px) clamp(18px, 5vw, 72px) 22px;
  color: rgba(230, 243, 239, 0.78);
  background:
    radial-gradient(circle at 8% 0%, rgba(56, 163, 165, 0.2), transparent 34%),
    linear-gradient(135deg, #061b1c 0%, #082829 58%, #061718 100%);
  border-top: 1px solid rgba(95, 231, 245, 0.18);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(18px, 5vw, 72px);
  right: clamp(18px, 5vw, 72px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(95, 231, 245, 0.54), transparent);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fff;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 13px;
  max-width: 390px;
}

.footer-brand p:not(.footer-title) {
  color: rgba(230, 243, 239, 0.72);
  font-size: 0.94rem;
  line-height: 1.58;
}

.footer-title {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.2;
}

.footer-kicker {
  color: #6de6ef;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.footer-socials a {
  position: relative;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  padding: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.footer-socials a:hover {
  border-color: rgba(109, 230, 239, 0.75);
  background: rgba(109, 230, 239, 0.13);
  box-shadow: 0 12px 30px rgba(56, 163, 165, 0.2);
  transform: translateY(-2px);
}

.footer-socials a span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.footer-socials svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  fill: currentColor;
}

.footer-nav {
  display: grid;
  align-content: start;
  gap: 11px;
  width: min(100%, 560px);
  justify-self: start;
}

.footer-nav ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
  align-items: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav li {
  display: flex;
  align-items: center;
  min-height: 1.55rem;
}

.footer-nav li + li {
  margin-top: 0;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 1.55rem;
  color: rgba(230, 243, 239, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-nav a:hover {
  color: #6de6ef;
  transform: translateX(2px);
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
  font-style: normal;
}

.footer-contact-row {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  color: rgba(230, 243, 239, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.42;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-contact-row:hover {
  color: #6de6ef;
  transform: translateX(2px);
}

.footer-contact-row svg {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  fill: #6de6ef;
}

.footer-copyright {
  grid-column: 1 / -1;
  width: 100%;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
  color: rgba(230, 243, 239, 0.62);
  font-size: 0.86rem;
}

.wa-widget {
  position: fixed;
  right: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 9999;
  display: grid;
  justify-items: end;
  gap: 14px;
  font-family: inherit;
  max-width: calc(100vw - 24px);
}

.wa-launcher {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  max-width: 100%;
  min-height: 60px;
  align-items: center;
  gap: 12px;
  border: 7px solid rgba(13, 92, 65, 0.68);
  border-radius: 999px;
  padding: 12px 24px;
  color: #fff;
  background: #25d366;
  box-shadow:
    0 0 0 10px rgba(37, 211, 102, 0.22),
    0 0 0 22px rgba(37, 211, 102, 0.1),
    0 0 52px rgba(37, 211, 102, 0.78),
    0 24px 58px rgba(37, 211, 102, 0.46),
    0 10px 24px rgba(5, 31, 23, 0.3);
  font-size: clamp(0.95rem, 1.3vw, 1.08rem);
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  animation: wa-button-pulse 1.85s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.wa-launcher::before {
  content: "";
  position: absolute;
  inset: -24px;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(circle, rgba(37, 211, 102, 0.68) 0%, rgba(37, 211, 102, 0.38) 42%, rgba(37, 211, 102, 0) 74%);
  filter: blur(20px);
  opacity: 0.95;
  animation: wa-glow 2s ease-in-out infinite;
}

.wa-launcher::after {
  content: "";
  position: absolute;
  inset: -16px;
  z-index: -1;
  border: 4px solid rgba(37, 211, 102, 0.58);
  border-radius: inherit;
  opacity: 0;
  animation: wa-ripple 1.85s ease-out infinite;
}

.wa-launcher-label {
  white-space: nowrap;
}

.wa-launcher:hover {
  background: #1ec75c;
  box-shadow:
    0 0 0 12px rgba(37, 211, 102, 0.3),
    0 0 0 26px rgba(37, 211, 102, 0.14),
    0 0 70px rgba(37, 211, 102, 0.95),
    0 28px 66px rgba(37, 211, 102, 0.56),
    0 12px 28px rgba(5, 31, 23, 0.34);
  transform: translateY(-2px);
}

@keyframes wa-button-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 10px rgba(37, 211, 102, 0.24),
      0 0 0 22px rgba(37, 211, 102, 0.12),
      0 0 54px rgba(37, 211, 102, 0.82),
      0 24px 58px rgba(37, 211, 102, 0.48),
      0 10px 24px rgba(5, 31, 23, 0.3);
  }

  50% {
    box-shadow:
      0 0 0 15px rgba(37, 211, 102, 0.36),
      0 0 0 34px rgba(37, 211, 102, 0.18),
      0 0 92px rgba(37, 211, 102, 1),
      0 30px 78px rgba(37, 211, 102, 0.66),
      0 12px 30px rgba(5, 31, 23, 0.36);
  }
}

@keyframes wa-glow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.76;
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}

@keyframes wa-ripple {
  0% {
    opacity: 0.8;
    transform: scale(0.92);
  }

  72% {
    opacity: 0;
    transform: scale(1.45);
  }

  100% {
    opacity: 0;
    transform: scale(1.45);
  }
}

@media (prefers-reduced-motion: reduce) {
  .wa-launcher {
    animation: none;
  }

  .wa-launcher::before {
    animation: none;
  }

  .wa-launcher::after {
    display: none;
  }
}

.wa-launcher:focus-visible,
.wa-close:focus-visible,
.wa-chip:focus-visible,
.wa-compose button:focus-visible,
.wa-compose input:focus-visible {
  outline: 3px solid rgba(217, 154, 41, 0.55);
  outline-offset: 3px;
}

.wa-launcher-icon {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
}

.wa-launcher-badge {
  position: absolute;
  top: -11px;
  right: -8px;
  display: grid;
  min-width: 38px;
  height: 38px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: #f24b5d;
  box-shadow: 0 8px 20px rgba(242, 75, 93, 0.28);
  font-size: 0.96rem;
  font-weight: 900;
}

.wa-panel {
  width: min(380px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid rgba(11, 55, 43, 0.16);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 26px 90px rgba(7, 32, 26, 0.28);
}

.wa-panel[hidden] {
  display: none;
}

.wa-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  color: #fff;
  background: #0f5f55;
}

.wa-panel-id {
  flex: 1;
  min-width: 0;
}

.wa-panel-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.wa-panel-id strong,
.wa-panel-id span {
  display: block;
}

.wa-panel-id strong {
  font-size: 1rem;
}

.wa-panel-status {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
}

.wa-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  border-radius: 50%;
  background: #25d366;
}

.wa-close {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.wa-close svg,
.wa-send svg {
  width: 18px;
  height: 18px;
}

.wa-panel-body {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: #f6faf7;
}

.wa-bubble {
  max-width: 88%;
  margin: 0;
  border-radius: 0 14px 14px;
  padding: 12px 14px;
  color: var(--green-dark);
  background: #fff;
  box-shadow: 0 10px 24px rgba(7, 32, 26, 0.08);
  font-size: 0.95rem;
}

.wa-suggest-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.wa-suggestions {
  display: grid;
  gap: 9px;
}

.wa-chip {
  width: 100%;
  border: 1px solid rgba(15, 95, 85, 0.16);
  border-radius: 999px;
  padding: 10px 13px;
  color: var(--green-dark);
  background: #fff;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.wa-chip:hover {
  border-color: rgba(15, 95, 85, 0.4);
  color: #0f7d70;
  transform: translateY(-1px);
}

.wa-compose {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 0 18px 18px;
  background: #f6faf7;
}

.wa-compose input {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(15, 95, 85, 0.18);
  border-radius: 999px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.wa-compose button {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  padding: 0;
  color: #fff;
  background: #25d366;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header nav {
    width: 100%;
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 4px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    width: calc(100vw - 32px);
    margin: 0 auto;
    padding: 28px 0 36px;
  }

  .hero-stats,
  .split,
  .grant-cards,
  .funding-note-grid,
  .testimonial-grid,
  .enquiry-section,
  .lead-panel,
  .site-footer,
  .project-portfolio-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 12px;
  }

  .timeline::before {
    content: "";
    position: absolute;
    top: 39px;
    bottom: 20px;
    left: 39px;
    right: auto;
    width: 4px;
    height: auto;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--green), #2f8f77);
  }

  .timeline li,
  .timeline li:first-child,
  .timeline li:last-child {
    min-height: auto;
    padding: 18px 18px 18px 70px;
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .timeline li + li {
    margin-top: 0;
  }

  .timeline li::after {
    display: none;
  }

  .step {
    top: 18px;
    left: 18px;
    width: 42px;
    height: 42px;
    border-width: 5px;
    font-size: 0.76rem;
  }
}

@media (max-width: 620px) {
  .feature-grid,
  .enquiry-form {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2rem, 10.5vw, 3rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2.45rem);
    line-height: 1.08;
  }

  h3 {
    font-size: 1.05rem;
  }

  .hero-copy,
  .split > div:first-child p:not(.eyebrow),
  .section-heading,
  .lead-panel p,
  .enquiry-copy p {
    font-size: 1rem;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .button {
    flex: 1 1 150px;
    min-width: 0;
    padding-left: 12px;
    padding-right: 12px;
  }

  .section {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .testimonials {
    padding-bottom: 10px;
  }

  .enquiry-section {
    padding-top: 10px;
  }

  .funding-note {
    grid-template-columns: 1fr;
  }

  .grant-band {
    padding-bottom: 10px;
  }

  #process {
    padding-top: 10px;
  }

  .site-header nav {
    gap: 8px 10px;
  }

  .site-header nav a {
    font-size: 0.84rem;
  }

  .site-footer {
    gap: 18px;
    padding: 26px 16px 92px;
  }

  .footer-nav {
    width: 100%;
  }

  .portfolio-showcase-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-portfolio-card {
    min-height: 0;
  }

  .footer-nav ul {
    grid-template-columns: 1fr;
  }

  .wa-widget {
    right: 12px;
    bottom: 12px;
    justify-items: end;
    max-width: calc(100vw - 24px);
  }

  .wa-launcher {
    width: 58px;
    height: 58px;
    min-height: 58px;
    justify-content: center;
    gap: 0;
    border-width: 6px;
    padding: 0;
  }

  .wa-launcher-icon {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .wa-launcher-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .wa-launcher-badge {
    top: -11px;
    right: -10px;
    min-width: 32px;
    height: 32px;
    font-size: 0.86rem;
  }
}
