:root {
  --bg: #f6faf8;
  --surface: #ffffff;
  --surface-alt: #edf7f2;
  --text: #173e38;
  --muted: #5f7d76;
  --line: #d7e6df;
  --brand: #102f29;
  --brand-2: #1a5c4d;
  --accent: #d4f44a;
  --shadow: 0 16px 44px rgba(16, 47, 41, 0.10);
  --radius: 24px;
  --radius-sm: 16px;
  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(212, 244, 74, 0.18), transparent 26%),
    linear-gradient(180deg, #fbfdfc 0%, var(--bg) 100%);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: var(--brand-2); text-decoration: none; }
a:hover { opacity: 0.88; }
p, ul { margin-top: 0; }
h1, h2, h3 {
  margin: 0 0 0.5rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.25rem; }
.wrap { width: min(calc(100% - 2rem), var(--wrap)); margin: 0 auto; }
.section { padding: 5.5rem 0; }
.eyebrow {
  margin-bottom: 0.85rem;
  color: var(--brand-2);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 999;
  background: #fff;
  padding: 0.75rem 1rem;
  border-radius: 999px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(251, 253, 252, 0.84);
  border-bottom: 1px solid rgba(215, 230, 223, 0.8);
}
.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  color: var(--text);
}
.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.brand-text { display: grid; gap: 0.05rem; }
.brand-text strong { font-size: 1.1rem; }
.brand-text small { color: var(--muted); }
nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem;
}
nav a {
  color: var(--text);
  font-weight: 600;
}
.button, button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(16, 47, 41, 0.15);
}
.button.small { padding: 0.8rem 1rem; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--brand-2);
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.hero {
  padding: 5rem 0 4rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 2rem;
  align-items: center;
}
.hero-copy { padding-right: 1rem; }
.hero h1 em { color: var(--brand-2); font-style: normal; position: relative; }
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.08em;
  height: 0.24em;
  z-index: -1;
  border-radius: 99px;
  background: rgba(212, 244, 74, 0.45);
}
.intro, .section-heading p, .subtle, .price-card p, .service p, .steps p, .faq p, .contact p {
  color: var(--muted);
}
.actions { display: flex; flex-wrap: wrap; gap: 1rem; margin: 1.5rem 0 1rem; }
.quick-contact {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.quick-contact > div, .contact-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem 1.1rem;
}
.label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-2);
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.hero-card, .service, .price-card, .steps article, .faq details, #inquiry {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card {
  padding: 1.65rem;
}
.card-top, .card-bottom, .number { font-weight: 800; color: var(--brand-2); letter-spacing: 0.08em; }
.card-top, .card-bottom { font-size: 0.8rem; text-transform: uppercase; display: flex; justify-content: space-between; gap: 1rem; }
.feature-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  margin-top: 1rem;
  align-items: start;
}
.feature-row span, .steps span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface-alt);
  color: var(--brand);
  font-weight: 800;
}
.ribbon {
  background: var(--brand);
  color: #f9fffd;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem;
  text-align: center;
}
.ribbon span { color: var(--accent); margin: 0 0.75rem; }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  gap: 1rem 2rem;
  align-items: end;
  margin-bottom: 2rem;
}
.grid.three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}
.service, .price-card, .steps article { padding: 1.5rem; }
.service ul, .price-card ul { padding-left: 1.1rem; margin-bottom: 0; }
.service li, .price-card li { margin-bottom: 0.45rem; }
.pricing {
  background: linear-gradient(180deg, rgba(237,247,242,0.75) 0%, rgba(246,250,248,0) 100%);
}
.price-card.featured {
  position: relative;
  border: 1px solid rgba(26,92,77,0.25);
  transform: translateY(-6px);
}
.price-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: #21330d;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}
.price {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
}
.price span {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 600;
}
.pricing-note { margin-top: 1.25rem; }
.steps article { min-height: 100%; }
.faq details { padding: 1.1rem 1.2rem; margin-bottom: 1rem; }
.faq summary { cursor: pointer; font-weight: 800; }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 1.5rem;
  align-items: start;
}
#inquiry { padding: 1.5rem; }
label {
  display: block;
  font-weight: 700;
  margin-bottom: 1rem;
}
input, select, textarea {
  width: 100%;
  margin-top: 0.45rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  font: inherit;
  color: var(--text);
  background: #fbfdfc;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(26, 92, 77, 0.14);
  border-color: var(--brand-2);
}
.form-note, #status { font-size: 0.95rem; color: var(--muted); }
#status { min-height: 1.4em; }
.site-footer {
  padding: 1.75rem 0 2rem;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 2rem;
  align-items: center;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.footer-brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
  font-weight: 700;
}
small { color: var(--muted); }

@media (max-width: 980px) {
  .hero, .section-heading, .contact-grid, .footer-grid, .grid.three {
    grid-template-columns: 1fr;
  }
  .hero-copy { padding-right: 0; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
    padding: 1rem 0;
  }
  .brand img { width: 56px; height: 56px; }
  nav { gap: 0.8rem; }
  .hero { padding-top: 3.2rem; }
  .quick-contact { grid-template-columns: 1fr; }
  .section { padding: 4rem 0; }
  .hero-card, .service, .price-card, .steps article, .faq details, #inquiry { border-radius: 20px; }
}


/* Netlify Forms spam honeypot */
.hidden-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}


/* LocalLift smart chatbot */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.chat-launcher {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border: 0;
  border-radius: 999px;
  padding: 0.82rem 1.05rem 0.82rem 0.82rem;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(16, 47, 41, 0.28);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.chat-launcher:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(16, 47, 41, 0.32);
}
.chat-launcher-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #21330d;
  font-size: 1.05rem;
}
.chatbot {
  position: fixed;
  right: 22px;
  bottom: 88px;
  z-index: 121;
  width: min(390px, calc(100vw - 28px));
  max-height: min(650px, calc(100vh - 120px));
  display: none;
  grid-template-rows: auto minmax(190px, 1fr) auto auto auto;
  overflow: hidden;
  border: 1px solid rgba(16, 47, 41, 0.14);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(16, 47, 41, 0.24);
}
.chatbot.open {
  display: grid;
  animation: chat-pop 180ms ease-out;
}
@keyframes chat-pop {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff;
}
.chatbot-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.chatbot-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 13px;
  background: rgba(255,255,255,0.96);
  padding: 4px;
}
.chatbot-brand strong, .chatbot-brand small { display: block; }
.chatbot-brand small { margin-top: 0.1rem; color: rgba(255,255,255,0.82); }
.online-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 4px;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(212,244,74,0.14);
}
.chat-close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font: inherit;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}
.chat-messages {
  overflow-y: auto;
  padding: 1rem;
  background: linear-gradient(180deg, #f9fcfb 0%, #f4faf7 100%);
}
.chat-row {
  display: flex;
  gap: 0.55rem;
  align-items: flex-end;
  margin-bottom: 0.85rem;
}
.chat-row.user { justify-content: flex-end; }
.chat-avatar {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}
.chat-bubble {
  max-width: 82%;
  padding: 0.78rem 0.9rem;
  border-radius: 18px 18px 18px 6px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--text);
  box-shadow: 0 8px 18px rgba(16, 47, 41, 0.06);
  font-size: 0.94rem;
  line-height: 1.5;
}
.chat-row.user .chat-bubble {
  border: 0;
  border-radius: 18px 18px 6px 18px;
  background: var(--brand);
  color: #fff;
}
.chat-bubble a { font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }
.chat-quick-actions {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.75rem 0.9rem;
  border-top: 1px solid var(--line);
  background: #fff;
  scrollbar-width: thin;
}
.chat-quick-actions button {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.58rem 0.72rem;
  background: var(--surface-alt);
  color: var(--brand);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 750;
  cursor: pointer;
}
.chat-input-wrap {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 0.55rem;
  padding: 0.85rem;
  border-top: 1px solid var(--line);
  background: #fff;
}
.chat-input-wrap input {
  margin: 0;
  min-width: 0;
  padding: 0.82rem 0.9rem;
  border-radius: 14px;
}
.chat-input-wrap button {
  width: 44px;
  height: 44px;
  align-self: center;
  border: 0;
  border-radius: 14px;
  background: var(--brand);
  color: #fff;
  font: inherit;
  font-size: 1.15rem;
  font-weight: 900;
  cursor: pointer;
}
.chat-disclaimer {
  margin: 0;
  padding: 0 0.9rem 0.75rem;
  background: #fff;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}
.chat-typing {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.chat-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  animation: chat-dot 1s infinite ease-in-out;
}
.chat-typing span:nth-child(2) { animation-delay: 0.12s; }
.chat-typing span:nth-child(3) { animation-delay: 0.24s; }
@keyframes chat-dot {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.45; }
  40% { transform: translateY(-3px); opacity: 1; }
}
@media (max-width: 520px) {
  .chatbot {
    right: 14px;
    bottom: 80px;
    width: calc(100vw - 28px);
    max-height: calc(100vh - 104px);
    border-radius: 20px;
  }
  .chat-launcher {
    right: 14px;
    bottom: 14px;
  }
  .chat-launcher-text { display: none; }
  .chat-launcher { padding: 0.72rem; }
}


/* Enquiry success popup */
.success-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.success-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.success-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 28, 24, 0.62);
  backdrop-filter: blur(5px);
}

.success-modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  padding: 2.2rem;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 28px 80px rgba(8, 28, 24, 0.28);
  text-align: center;
  transform: translateY(16px) scale(0.98);
  transition: transform 180ms ease;
}

.success-modal.open .success-modal-card {
  transform: translateY(0) scale(1);
}

.success-modal-card h2 {
  margin-bottom: 0.7rem;
}

.success-modal-card p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.success-check {
  width: 68px;
  height: 68px;
  margin: 0 auto 1.2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-alt);
  color: var(--brand-2);
  font-size: 2rem;
  font-weight: 900;
}

.success-modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.9rem;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.success-modal-close:hover {
  background: var(--surface-alt);
  color: var(--text);
}

body.modal-open {
  overflow: hidden;
}
