:root {
  --green: #0b6f43;
  --green-deep: #062b1f;
  --green-soft: #e8f4ed;
  --blue: #315f75;
  --blue-soft: #e6f0f3;
  --amber: #f0b429;
  --red: #c83f32;
  --ink: #101815;
  --muted: #56645d;
  --line: #dce6df;
  --surface: #f5f8f3;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(6, 43, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.68);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 36px rgba(6, 43, 31, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-inner,
.section-inner,
.footer-inner,
.hero-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-inner {
  width: min(1200px, calc(100% - 40px));
}

.header-inner {
  max-width: 1400px;
  min-height: 78px;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto auto;
  align-items: center;
  gap: 28px;
  padding: 0 40px;
  width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  width: fit-content;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(11, 111, 67, 0.2);
  border-radius: 12px;
  background:
    linear-gradient(135deg, #0b6f43 0%, #0f9b57 56%, #f0b429 57%, #f0b429 73%, #c83f32 74%, #c83f32 100%);
  box-shadow: 0 12px 28px rgba(6, 43, 31, 0.18);
}

.brand-mark span:first-child {
  position: relative;
  z-index: 1;
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--green-deep);
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
}

.brand-mark span:last-child {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 7px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.brand-copy {
  display: block;
  line-height: 1.1;
}

.brand-name {
  color: var(--green-deep);
  font-size: 1.28rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 34px;
  color: #26332e;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.primary-nav a,
.header-cta {
  text-decoration: none;
}

.primary-nav a {
  position: relative;
  padding: 10px 0;
  transition: color 0.3s ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--green);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.header-cta,
.button {
  display: inline-flex;
  gap: 10px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.header-cta {
  background: var(--green);
  color: var(--white);
  border-radius: 999px;
  padding: 12px 24px;
  box-shadow: 0 10px 30px rgba(15, 169, 88, 0.25);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: #095f3a;
  box-shadow: 0 14px 36px rgba(15, 169, 88, 0.34);
  transform: translateY(-1px);
}

.cta-short {
  display: none;
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--green-deep);
}

.hero picture,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero picture {
  width: min(76%, 1240px);
  right: auto;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% center;
}

.hero-overlay {
  background:
    radial-gradient(circle at 78% 22%, rgba(50, 186, 113, 0.16), transparent 30%),
    linear-gradient(90deg, rgba(4, 28, 20, 0.04) 0%, rgba(4, 28, 20, 0.1) 42%, rgba(4, 28, 20, 0.62) 58%, rgba(4, 28, 20, 0.94) 72%, rgba(4, 28, 20, 1) 100%),
    linear-gradient(0deg, rgba(4, 28, 20, 0.34), rgba(4, 28, 20, 0.02));
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 620px;
  display: grid;
  align-items: stretch;
  padding: 32px 0 28px;
}

.hero-panel {
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 20px;
}

@media (min-width: 1100px) {
  .hero-panel {
    transform: translateX(32px);
  }
}

.hero-copy {
  width: min(650px, 100%);
  margin-left: auto;
  color: var(--white);
  transform: translateY(42px);
}

@media (min-width: 1100px) {
  .hero-copy {
    width: min(610px, 100%);
  }
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero .eyebrow {
  color: #bdf5d2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  margin: 0 0 22px;
  border: 1px solid rgba(96, 226, 146, 0.36);
  border-radius: 999px;
  background: rgba(6, 43, 31, 0.44);
  color: #e6f6ec;
  padding: 8px 18px;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-badge span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #59d889;
  box-shadow: 0 0 0 5px rgba(89, 216, 137, 0.16);
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
}

h1 {
  max-width: 650px;
  font-size: 3.2rem;
}

h1 span {
  color: #62d886;
}

h2 {
  font-size: 2.35rem;
}

h3 {
  font-size: 1.2rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.hero-actions {
  margin-top: 36px;
}

.button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-light {
  background: #2fbe73;
  color: var(--white);
  box-shadow: 0 16px 34px rgba(47, 190, 115, 0.2);
}

.button-ghost,
.button-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.56);
  color: var(--white);
  background: rgba(4, 28, 20, 0.18);
}

.hero-plan-card {
  display: none;
}

.hero-plan-card h2 {
  margin: 0;
  color: var(--green-deep);
  font-size: 1.15rem;
}

.hero-plan-card ul {
  display: grid;
  gap: 0;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.hero-plan-card li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding: 17px 0;
}

.hero-plan-card li:first-child {
  border-top: 0;
}

.hero-plan-card svg {
  width: 30px;
  height: 30px;
  color: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-plan-card strong {
  display: block;
  color: var(--green-deep);
  font-size: 0.95rem;
  line-height: 1.25;
}

.hero-plan-card span {
  color: #314239;
  font-size: 0.88rem;
  line-height: 1.4;
}

.hero-stats {
  display: grid;
  width: min(880px, 100%);
  margin-left: auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.hero-stats div {
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 12px;
  row-gap: 2px;
  align-items: center;
  padding: 18px 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-stats div:first-child {
  border-left: 0;
}

.stat-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  grid-row: span 2;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(85, 222, 138, 0.55);
  border-radius: 50%;
  color: #5bdd91;
}

.stat-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-stats strong {
  color: #5bdd91;
  font-size: 1.18rem;
  line-height: 1.1;
}

.hero-stats span:not(.stat-icon) {
  color: #ecf6ef;
  font-size: 0.9rem;
  line-height: 1.25;
}

section:not(.hero) {
  padding: 86px 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 38px;
}

.section-heading p {
  margin: 14px 0 0;
  color: var(--muted);
}

.section-subheading {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 700;
}

.section-heading.compact {
  margin-bottom: 26px;
}

.services-grid,
.contact-grid {
  display: grid;
  gap: 24px;
}

.services-section {
  background:
    linear-gradient(180deg, #fbfdfb 0%, #f2f7f3 100%);
}

.services-section .section-heading {
  margin-bottom: 48px;
}

.services-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.services-section .section-heading .services-kicker {
  color: var(--green);
}

.services-kicker span {
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid rgba(11, 111, 67, 0.13);
  border-radius: 8px;
  background: var(--white);
  padding: 32px 30px 26px;
  box-shadow: 0 16px 34px rgba(6, 43, 31, 0.07);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
  border-color: rgba(11, 111, 67, 0.38);
  box-shadow: 0 22px 45px rgba(6, 43, 31, 0.12);
  transform: translateY(-3px);
}

.service-card-featured {
  border-color: rgba(11, 111, 67, 0.58);
  box-shadow: 0 22px 50px rgba(6, 43, 31, 0.13);
}

.service-badge {
  position: absolute;
  left: -1px;
  top: -33px;
  margin: 0;
  border-radius: 8px 8px 0 0;
  background: var(--green);
  color: var(--white);
  padding: 9px 18px 10px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.service-card .service-badge {
  color: var(--white);
}

.service-badge::before {
  content: "★";
  margin-right: 7px;
  color: #c9f7d8;
}

.service-icon {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #eaf6ef;
  color: var(--green);
}

.service-icon svg,
.service-note svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  max-width: 330px;
  margin-top: 18px;
  font-size: 1.22rem;
}

.service-card p,
.contact-section p {
  color: var(--muted);
}

.service-card > p:not(.service-badge) {
  margin: 16px 0 0;
  font-size: 0.97rem;
  line-height: 1.55;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 20px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
  color: #293a32;
  font-size: 0.88rem;
  line-height: 1.45;
}

.service-card li {
  position: relative;
  padding-left: 24px;
}

.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.18em;
  display: grid;
  width: 13px;
  height: 13px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 900;
  line-height: 1;
}

.service-note {
  display: grid;
  grid-template-columns: 36px 1fr;
  column-gap: 12px;
  row-gap: 1px;
  align-items: center;
  margin-top: 22px;
  border-radius: 8px;
  background: linear-gradient(90deg, #edf8f0, #f8fbf8);
  padding: 14px 16px;
}

.service-note span {
  grid-row: span 2;
  color: var(--green);
}

.service-note strong {
  color: var(--green-deep);
  font-size: 0.86rem;
  line-height: 1.15;
}

.service-note small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.2;
}

.service-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: auto;
  border: 1px solid rgba(11, 111, 67, 0.58);
  border-radius: 6px;
  color: var(--green);
  padding: 11px 16px;
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.service-card ul + .service-cta {
  margin-top: 28px;
}

.service-note + .service-cta {
  margin-top: 18px;
}

.service-cta-primary {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(11, 111, 67, 0.2);
}

.service-cta:hover,
.service-cta:focus-visible {
  background: var(--green);
  color: var(--white);
  transform: translateX(2px);
}

.contact-section {
  background: var(--green);
  color: var(--white);
}

.contact-section .section-kicker {
  color: #c9f7d8;
}

.contact-about {
  margin-bottom: 54px;
}

.contact-about h2 {
  max-width: 560px;
}

.contact-about .section-subheading {
  color: #e4f3e9;
}

.contact-about p:last-child {
  max-width: 820px;
}

.contact-section p {
  color: #e4f3e9;
  font-size: 1.06rem;
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  font-style: normal;
}

.contact-detail-card {
  display: grid;
  min-height: 190px;
  justify-items: center;
  align-content: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 18%, rgba(47, 190, 115, 0.2), transparent 34%),
    rgba(255, 255, 255, 0.07);
  padding: 28px 20px;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-detail-icon {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(47, 190, 115, 0.82);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(2, 18, 12, 0.18);
}

.contact-detail-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-details strong {
  position: relative;
  margin-top: 4px;
  padding-bottom: 11px;
  color: #62d886;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-details strong::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: #62d886;
  transform: translateX(-50%);
}

.contact-details a {
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}

.contact-details small {
  max-width: 180px;
  margin-top: 4px;
  color: #d7eee1;
  font-size: 0.8rem;
  font-style: normal;
  line-height: 1.35;
}

.enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.enquiry-modal:target {
  display: flex;
}

.enquiry-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 22, 15, 0.68);
}

.enquiry-form {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 30px;
  box-shadow: var(--shadow);
}

.enquiry-form-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.enquiry-form-header .section-kicker {
  margin-bottom: 8px;
}

.enquiry-form h2 {
  font-size: 1.8rem;
}

.required-help {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.enquiry-close {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green-deep);
  font-size: 1.8rem;
  line-height: 1;
  text-decoration: none;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

.enquiry-form label {
  display: grid;
  gap: 7px;
  color: #26332e;
  font-size: 0.92rem;
  font-weight: 800;
}

.field-label {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.required-mark {
  color: var(--red);
  font-weight: 900;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 12px 13px;
  font: inherit;
  font-weight: 400;
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
  font-weight: 400;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(11, 111, 67, 0.14);
}

.enquiry-form .button {
  width: 100%;
  margin-top: 22px;
  border: 0;
  cursor: pointer;
}

.enquiry-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 1.4em;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.form-status-success {
  color: var(--green);
}

.form-status-error {
  color: var(--red);
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.site-footer {
  background: #07140d;
  color: #a8baaf;
  padding: 30px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-brand {
  color: var(--white);
}

.footer-brand .brand-name {
  color: var(--white);
}

.footer-brand .brand-copy {
  display: grid;
  gap: 2px;
}

.footer-brand .brand-subtitle {
  color: #a8baaf;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand .brand-mark {
  opacity: 0.95;
}

.footer-inner p {
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: minmax(210px, 1fr) auto auto;
    gap: 24px;
  }

  .primary-nav {
    gap: 22px;
  }
}

@media (max-width: 900px) {
  .primary-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 76px;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero picture {
    width: 100%;
    right: 0;
  }

  .hero-image {
    object-position: 18% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(6, 43, 31, 0.9) 0%, rgba(6, 43, 31, 0.72) 54%, rgba(6, 43, 31, 0.38) 100%),
      linear-gradient(90deg, rgba(6, 43, 31, 0.16), rgba(6, 43, 31, 0.68));
  }

  .hero-inner {
    align-items: stretch;
    justify-content: stretch;
    padding: 92px 0 0;
  }

  .hero-panel {
    display: grid;
    gap: 34px;
  }

  .hero-copy {
    width: min(520px, 100%);
    margin-left: auto;
    transform: translateY(20px);
  }

  h1 {
    font-size: 2.7rem;
  }

  .hero-badge {
    min-height: 36px;
    margin-bottom: 22px;
    padding: 7px 14px;
    font-size: 0.78rem;
  }

  .hero-plan-card {
    display: block;
    width: min(520px, 100%);
    margin-left: auto;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    padding: 24px 28px;
    box-shadow: 0 20px 52px rgba(2, 16, 11, 0.28);
  }

  .hero-stats {
    width: calc(100% + 40px);
    margin: 0 -20px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    background: rgba(249, 253, 250, 0.96);
    color: var(--ink);
  }

  .hero-stats div {
    border-left: 1px solid var(--line);
    padding: 24px 18px;
  }

  .hero-stats div:first-child {
    border-left: 0;
  }

  .stat-icon {
    border: 0;
    background: var(--green-soft);
    color: var(--green);
  }

  .hero-stats span:not(.stat-icon) {
    color: var(--ink);
  }

  h2 {
    font-size: 2rem;
  }

  .contact-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .header-inner,
  .section-inner,
  .footer-inner,
  .hero-inner {
    width: min(100% - 32px, 1120px);
  }

  .header-inner {
    width: 100%;
    grid-template-columns: 1fr;
    min-height: 70px;
    gap: 12px;
    padding: 0 16px;
  }

  .header-actions {
    display: none;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .brand-mark span:first-child {
    width: 27px;
    height: 27px;
    border-radius: 8px;
    font-size: 1rem;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .footer-brand .brand-subtitle {
    font-size: 0.62rem;
    letter-spacing: 0.05em;
  }

  .header-cta {
    min-height: 42px;
    padding: 10px 16px;
    font-size: 0.82rem;
  }

  .cta-full {
    display: none;
  }

  .cta-short {
    display: inline;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding: 92px 0 0;
  }

  h1 {
    font-size: 2.35rem;
  }

  .hero-badge {
    max-width: 100%;
    white-space: normal;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .enquiry-modal {
    align-items: stretch;
    padding: 12px;
  }

  .enquiry-form {
    max-height: calc(100vh - 24px);
    padding: 22px;
  }

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

  .hero-plan-card {
    padding: 22px 24px;
  }

  .hero-stats {
    width: calc(100% + 32px);
    margin: 0 -16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stats div {
    padding: 22px 16px;
  }

  .hero-stats div:nth-child(odd) {
    border-left: 0;
  }

  section:not(.hero) {
    padding: 64px 0;
  }

  .service-card {
    padding: 22px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
