:root {
  color-scheme: light;
  --bg: #f8f4ee;
  --bg-alt: #eff6ef;
  --surface: #ffffff;
  --surface-strong: #fbf8f3;
  --text: #193328;
  --muted: #5a6b62;
  --green: #157244;
  --green-strong: #0d5a35;
  --orange: #eb8a23;
  --orange-strong: #d87012;
  --border: rgba(21, 114, 68, 0.14);
  --shadow: 0 22px 44px rgba(24, 51, 39, 0.08);
  --shadow-hover: 0 30px 56px rgba(24, 51, 39, 0.14);
  --panel: #112118;
  --panel-glow: rgba(255, 255, 255, 0.08);
  --hero-orb: rgba(235, 138, 35, 0.12);
  --hero-orb-two: rgba(21, 114, 68, 0.12);
  --focus: rgba(235, 138, 35, 0.28);
  --max-width: 1120px;
  --radius-lg: 1.75rem;
  --radius-md: 1.25rem;
  --radius-sm: 1rem;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #102018;
  --bg-alt: #12261d;
  --surface: #173126;
  --surface-strong: #1a3529;
  --text: #eff7f0;
  --muted: #bfd2c4;
  --green: #4fb874;
  --green-strong: #8be0a8;
  --orange: #f3a44d;
  --orange-strong: #ffc978;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 46px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 34px 62px rgba(0, 0, 0, 0.38);
  --panel: #0a1410;
  --panel-glow: rgba(255, 255, 255, 0.06);
  --hero-orb: rgba(243, 164, 77, 0.17);
  --hero-orb-two: rgba(79, 184, 116, 0.16);
  --focus: rgba(243, 164, 77, 0.34);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Aptos", "Trebuchet MS", "Lucida Sans", sans-serif;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, var(--hero-orb), transparent 28%),
    radial-gradient(circle at 88% 18%, var(--hero-orb-two), transparent 24%),
    var(--bg);
  padding-bottom: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  cursor: pointer;
}

::selection {
  background: rgba(235, 138, 35, 0.2);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(18px);
  background: rgba(248, 244, 238, 0.82);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(24, 51, 39, 0.06);
}

html[data-theme="dark"] .site-header {
  background: rgba(16, 32, 24, 0.84);
}

.header-shell {
  display: grid;
  grid-template-columns: minmax(180px, 228px) 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.42rem 0;
}

.brand {
  min-width: 0;
  max-width: 228px;
}

.brand-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.38rem 0.55rem;
  border-radius: 1.1rem;
  background:
    radial-gradient(circle at 25% 15%, rgba(255, 155, 71, 0.2), transparent 26%),
    radial-gradient(circle at 76% 18%, rgba(89, 205, 125, 0.22), transparent 24%),
    linear-gradient(145deg, #111f18, #1a2c22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 28px rgba(24, 51, 39, 0.14);
}

.brand-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 var(--panel-glow);
  pointer-events: none;
}

.brand img {
  width: min(100%, 186px);
  height: auto;
}

.mobile-topbar,
.mobile-nav-backdrop,
.mobile-drawer {
  display: none;
}

.mobile-topbar {
  position: relative;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
}

.mobile-brand {
  display: inline-flex;
  width: auto;
  justify-self: start;
  position: relative;
  z-index: 1;
}

.mobile-brand-panel {
  padding: 0.16rem 0.26rem;
  border-radius: 0.82rem;
}

.mobile-brand-panel img {
  width: min(100%, 68px);
  display: block;
}

.mobile-page-title {
  margin: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(11.5rem, calc(100% - 8rem));
  color: var(--text);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-inline: 0.15rem;
  pointer-events: none;
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 2.32rem;
  height: 2.32rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--green);
  box-shadow: var(--shadow);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
  justify-self: end;
  position: relative;
  z-index: 1;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

.menu-toggle span {
  display: block;
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-toggle span + span {
  margin-top: 0.18rem;
}

.menu-toggle--close span {
  width: auto;
  height: auto;
  margin: 0;
  background: none;
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1;
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 78;
  background: rgba(8, 18, 13, 0.42);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.24s ease,
    visibility 0s linear 0.24s;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 79;
  width: min(84vw, 20rem);
  height: 100dvh;
  padding: calc(1rem + env(safe-area-inset-top)) 1rem calc(1rem + env(safe-area-inset-bottom));
  border-left: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0)),
    var(--surface);
  box-shadow: -18px 0 38px rgba(16, 37, 28, 0.16);
  transform: translateX(104%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 0.28s ease,
    opacity 0.28s ease,
    visibility 0s linear 0.28s;
}

html[data-theme="dark"] .mobile-drawer {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    var(--surface);
}

body.mobile-nav-open {
  overflow: hidden;
}

body.mobile-nav-open .mobile-nav-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

body.mobile-nav-open .mobile-drawer {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.mobile-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.mobile-drawer__title {
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-drawer__nav {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.drawer-link {
  display: block;
  padding: 0.82rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface);
  color: var(--text);
  font-weight: 800;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.drawer-link:hover,
.drawer-link:focus-visible,
.drawer-link.active {
  transform: translateY(-1px);
  color: var(--green);
  border-color: rgba(21, 114, 68, 0.18);
  background: rgba(21, 114, 68, 0.08);
}

.mobile-drawer__actions {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.mobile-drawer__call,
.theme-toggle--drawer {
  width: 100%;
}

.theme-toggle--drawer {
  justify-content: center;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
  align-items: center;
}

.nav-link {
  padding: 0.54rem 0.82rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.94rem;
  line-height: 1.1;
  border: 1px solid transparent;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  color: var(--green);
  border-color: var(--border);
  background: rgba(21, 114, 68, 0.08);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.call-cta-wrap {
  display: grid;
  gap: 0.24rem;
  align-content: start;
}

.call-cta-wrap--header {
  justify-items: end;
  text-align: right;
}

.call-cta-wrap--hero {
  margin-top: 1rem;
  justify-items: start;
}

.call-cta-wrap--center {
  margin-top: 1rem;
  justify-items: center;
  text-align: center;
}

.call-cta-wrap--footer {
  justify-items: end;
  text-align: right;
}

.header-call {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--green);
  white-space: nowrap;
}

.theme-toggle {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  padding: 0.58rem 0.86rem;
  font-weight: 800;
  font-size: 0.93rem;
  box-shadow: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.page-hero {
  position: relative;
  padding: 3rem 0 4rem;
}

.page-hero--home {
  padding: 1.6rem 0 0.45rem;
}

.hero-grid--home {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 1rem;
}

.hero-grid,
.two-column-grid,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(290px, 0.92fr);
  gap: 1.4rem;
  align-items: start;
}

.hero-copy-panel,
.hero-side-card,
.card,
.form-card,
.price-card,
.payment-card,
.contact-card,
.feature-card,
.service-card,
.timeline-card,
.highlight-banner,
.info-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-copy-panel,
.hero-side-card,
.card,
.form-card,
.price-card,
.payment-card,
.contact-card,
.feature-card,
.service-card,
.timeline-card,
.highlight-banner,
.info-card {
  padding: 1.45rem;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.hero-copy-panel:hover,
.hero-side-card:hover,
.card:hover,
.form-card:hover,
.price-card:hover,
.payment-card:hover,
.contact-card:hover,
.feature-card:hover,
.service-card:hover,
.timeline-card:hover,
.highlight-banner:hover,
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.hero-copy-panel,
.hero-side-card,
.price-card,
.payment-card,
.contact-card,
.feature-card,
.service-card,
.timeline-card,
.info-card {
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
  height: 100%;
}

.hero-side-card::before,
.price-card::before,
.payment-card::before,
.contact-card::before,
.feature-card::before,
.service-card::before,
.timeline-card::before,
.info-card::before {
  content: "";
  position: absolute;
  left: 1.35rem;
  top: 0;
  width: 3.4rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--orange));
}

.hero-copy-panel {
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0)),
    var(--surface);
}

.hero-copy-panel--home {
  padding: 1.2rem 1.3rem;
  gap: 0.35rem;
}

.hero-copy-panel--home .hero-title {
  font-size: clamp(2.2rem, 3.45vw, 3.2rem);
  line-height: 0.96;
}

.hero-copy-panel--home .hero-tagline {
  margin: 0.45rem 0 0.18rem;
  font-size: clamp(1.02rem, 1.75vw, 1.45rem);
}

html[data-theme="dark"] .hero-copy-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    var(--surface);
}

.eyebrow {
  margin: 0 0 0.9rem;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}

.hero-title,
.section-title,
.page-title,
.banner-title {
  margin: 0;
  line-height: 1.08;
  font-family: "Franklin Gothic Medium", "Trebuchet MS", sans-serif;
}

.hero-title {
  font-size: clamp(2.3rem, 5vw, 4.6rem);
}

.page-title {
  font-size: clamp(2rem, 4.4vw, 3.5rem);
}

.hero-tagline {
  margin: 1rem 0;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--green);
}

.lead,
.hero-statement,
.section-lead,
.page-lead {
  color: var(--muted);
}

.hero-statement {
  margin: 0 0 1.2rem;
  font-size: 1.04rem;
  max-width: 42rem;
}

.hero-copy-panel--home .hero-statement {
  margin-bottom: 0.45rem;
  max-width: none;
  font-size: 0.92rem;
  line-height: 1.48;
}

.hero-meta,
.stack-list,
.contact-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.35rem 0 0;
}

.hero-copy-panel--home .hero-meta {
  margin-top: 0.55rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem 0.8rem;
}

.hero-copy-panel--home .hero-meta .meta-row:first-child {
  grid-column: auto;
}

.hero-copy-panel--home .meta-row {
  flex-direction: column;
  gap: 0.12rem;
}

.hero-copy-panel--home .meta-label {
  min-width: 0;
  font-size: 0.9rem;
}

.hero-copy-panel--home .meta-value {
  font-size: 0.95rem;
}

.meta-row,
.stack-item,
.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.meta-label,
.stack-label {
  font-weight: 800;
  min-width: 7.2rem;
  color: var(--green);
}

.meta-value,
.stack-value {
  color: var(--text);
  overflow-wrap: anywhere;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.hero-copy-panel--home .cta-row {
  margin-top: 0.72rem;
  gap: 0.48rem;
}

.hero-copy-panel--home .btn {
  padding: 0.74rem 1rem;
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.92rem 1.3rem;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-strong));
}

.btn-call {
  animation: callPulse 2.6s ease-in-out infinite;
}

.btn-call--header {
  padding: 0.72rem 1rem;
  font-size: 0.88rem;
  white-space: nowrap;
}

.btn-secondary {
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-strong));
}

.btn-outline {
  color: var(--green);
  background: transparent;
  border-color: var(--border);
}

.call-cta-note {
  margin: 0;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 800;
}

.call-copy-feedback {
  min-height: 1rem;
  margin: 0;
  color: var(--orange-strong);
  font-size: 0.8rem;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.call-copy-feedback.is-visible {
  opacity: 1;
}

.call-copy-feedback--header {
  min-height: 0;
}

.hero-side-stack {
  display: grid;
  gap: 1rem;
}

.hero-grid--home .hero-side-stack {
  gap: 0.72rem;
}

.hero-logo-panel {
  background:
    radial-gradient(circle at 26% 18%, rgba(255, 155, 71, 0.18), transparent 26%),
    radial-gradient(circle at 78% 18%, rgba(89, 205, 125, 0.2), transparent 24%),
    linear-gradient(150deg, #101b15, #15251c 60%, #1b3024);
  padding: 1rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-grid--home .hero-logo-panel {
  padding: 0.62rem;
}

.hero-logo-panel img {
  width: 100%;
}

.hero-grid--home .hero-logo-panel img {
  display: block;
  max-height: 11.5rem;
  object-fit: contain;
}

.hero-contact-card {
  padding: 1.45rem;
}

.hero-grid--home .hero-contact-card {
  padding: 1.05rem;
  gap: 0.5rem;
}

#services-overview.section {
  padding-top: 0.15rem;
}

.card-detail,
.tile-description {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
}

.tile-mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.8rem;
  margin: 0.18rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 800;
}

.tile-mini-list li {
  position: relative;
  padding-left: 0.72rem;
}

.tile-mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 999px;
  background: var(--orange);
  transform: translateY(-50%);
}

.hero-contact-card h2,
.price-card h2,
.form-card h2,
.payment-card h2,
.contact-card h2,
.contact-card h3,
.service-card h3,
.feature-card h3,
.timeline-card h3,
.info-card h3 {
  margin-top: 0;
}

.section {
  padding: 4.2rem 0;
}

.section--soft {
  background: linear-gradient(180deg, transparent, rgba(21, 114, 68, 0.03), transparent);
}

html[data-theme="dark"] .section--soft {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02), transparent);
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.section-lead,
.page-lead {
  max-width: 40rem;
  margin: 0;
}

.card-grid,
.services-grid,
.feature-grid,
.pricing-grid,
.contact-grid,
.mini-grid,
.timeline-grid {
  display: grid;
  gap: 1.25rem;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.services-window {
  border: 1px solid var(--border);
  border-radius: calc(var(--radius-lg) + 0.1rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0)),
    var(--surface);
  box-shadow: var(--shadow);
  padding: 1.55rem;
}

html[data-theme="dark"] .services-window {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    var(--surface);
}

.services-window__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.services-window__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature-grid,
.pricing-grid,
.contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-mark,
.feature-mark,
.timeline-mark,
.contact-mark {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.95rem;
  background: rgba(21, 114, 68, 0.1);
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.04em;
}

html[data-theme="dark"] .service-mark,
html[data-theme="dark"] .feature-mark,
html[data-theme="dark"] .timeline-mark,
html[data-theme="dark"] .contact-mark {
  background: rgba(79, 184, 116, 0.14);
}

.service-card h3,
.feature-card h3,
.timeline-card h3,
.contact-card h3 {
  margin: 0.4rem 0 0.1rem;
  font-size: 1.12rem;
}

.service-card p,
.feature-card p,
.timeline-card p,
.contact-card p,
.price-card p,
.info-card p {
  margin: 0;
  color: var(--muted);
}

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

.timeline-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 0.95rem;
  align-items: stretch;
}

.timeline-card {
  justify-content: flex-start;
}

.timeline-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -60% 40%;
  height: 150%;
  background: radial-gradient(circle, rgba(235, 138, 35, 0.12), transparent 55%);
  pointer-events: none;
}

.timeline-arrow {
  position: relative;
  min-width: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-arrow::before {
  content: "";
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(21, 114, 68, 0.22), rgba(235, 138, 35, 0.88));
}

.timeline-arrow::after {
  content: "";
  position: absolute;
  right: 0.15rem;
  width: 0.78rem;
  height: 0.78rem;
  border-top: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
  transform: rotate(45deg);
  animation: arrowPulse 2.2s ease-in-out infinite;
}

.timeline-flow > .timeline-arrow:nth-child(2)::after {
  animation-delay: 0s;
}

.timeline-flow > .timeline-arrow:nth-child(4)::after {
  animation-delay: 0.24s;
}

.timeline-flow > .timeline-arrow:nth-child(6)::after {
  animation-delay: 0.48s;
}

@keyframes arrowPulse {
  0%,
  100% {
    transform: translateX(0) rotate(45deg);
    opacity: 0.45;
  }

  50% {
    transform: translateX(6px) rotate(45deg);
    opacity: 1;
  }
}

@keyframes arrowPulseDown {
  0%,
  100% {
    transform: translateY(0) rotate(135deg);
    opacity: 0.45;
  }

  50% {
    transform: translateY(6px) rotate(135deg);
    opacity: 1;
  }
}

@keyframes callPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(235, 138, 35, 0.18);
  }

  50% {
    box-shadow: 0 0 0 0.4rem rgba(235, 138, 35, 0.06);
  }
}

.highlight-banner {
  position: relative;
  overflow: hidden;
  padding: 1.8rem;
  color: #fff;
  background: linear-gradient(145deg, #157244, #0d5a35);
}

.highlight-banner::after {
  content: "";
  position: absolute;
  inset: auto -20% -80% 45%;
  height: 170%;
  background: radial-gradient(circle, rgba(243, 164, 77, 0.24), transparent 58%);
  pointer-events: none;
}

.banner-title {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  margin-bottom: 0.4rem;
}

.banner-text {
  max-width: 42rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}

.price-card {
  padding: 1.55rem;
}

.pricing-callout {
  display: grid;
  gap: 0.4rem;
  justify-items: center;
  margin-top: 1.5rem;
  padding: 1.45rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0)),
    var(--surface);
  box-shadow: var(--shadow);
  text-align: center;
}

html[data-theme="dark"] .pricing-callout {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    var(--surface);
}

.pricing-callout__text {
  margin: 0;
  color: var(--text);
  font-weight: 800;
}

.pricing-callout__text + .pricing-callout__text {
  color: var(--muted);
  font-weight: 700;
}

.price-card h2 {
  margin-bottom: 0.35rem;
}

.price-card--action {
  display: grid;
  gap: 0.95rem;
  align-content: start;
}

.price-card__meta {
  display: grid;
  gap: 0.35rem;
}

.price-card__group {
  margin: 0;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-subtitle {
  margin: 0;
  color: var(--muted);
}

.price-card__action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
}

.price-card__value,
.price-card__condition {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  font-size: 1.35rem;
  font-weight: 900;
}

.price-card__value {
  color: var(--orange);
}

.price-card__condition {
  color: var(--green);
}

.price-list,
.plain-list,
.pill-list {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}

.price-list {
  display: grid;
  gap: 0.85rem;
}

.price-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.price-line:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.price-label {
  font-weight: 700;
}

.price-value {
  color: var(--orange);
  font-weight: 900;
  white-space: nowrap;
}

.plain-list {
  display: grid;
  gap: 0.65rem;
  color: var(--text);
}

.plain-list strong {
  color: var(--green);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.pill-list li {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(21, 114, 68, 0.1);
  color: var(--green);
  font-weight: 800;
}

.two-column-grid--form {
  align-items: start;
}

.form-card,
.payment-card {
  padding: 1.7rem;
}

.helper-text {
  margin: 0 0 1.25rem;
  color: var(--muted);
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

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

label {
  font-weight: 800;
  color: var(--text);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 0.98rem 1rem;
  background: var(--surface-strong);
  color: var(--text);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

textarea {
  resize: vertical;
  min-height: 8.5rem;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.theme-toggle:focus-visible,
.btn:focus-visible,
.tab-button:focus-visible {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px var(--focus);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.status-message {
  display: none;
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: rgba(21, 114, 68, 0.12);
  color: var(--green-strong);
  font-weight: 700;
}

.status-message.is-visible {
  display: block;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.2rem 0 1rem;
}

.tab-button {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--muted);
  padding: 0.85rem 1rem;
  font-weight: 800;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.tab-button:hover,
.tab-button.is-active {
  color: var(--orange-strong);
  border-color: rgba(235, 138, 35, 0.28);
  background: rgba(235, 138, 35, 0.1);
  transform: translateY(-1px);
}

.payment-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  padding: 1.4rem;
}

.payment-panel h3 {
  margin-top: 0;
}

.payment-note {
  margin-top: 1rem;
  color: var(--muted);
}

.payment-link-list {
  margin-top: 1rem;
}

.payment-link-line {
  flex-wrap: wrap;
  align-items: center;
}

.payment-link-copy {
  flex: 1 1 16rem;
  min-width: 0;
}

.payment-link-line .btn {
  margin-left: auto;
}

.contact-card a,
.hero-contact-card a,
.info-card a {
  color: var(--green);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-address,
.meta-address,
.footer-address {
  margin: 0;
  color: var(--text);
  font-style: normal;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.footer-address {
  font-weight: 700;
}

.contact-block {
  display: grid;
  gap: 0.25rem;
}

.cta-card {
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.page-header-card {
  padding: 1.7rem;
}

.subnav-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.subnav-pills a {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(21, 114, 68, 0.08);
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  padding: 2.2rem 1rem 2.5rem;
  color: var(--muted);
  font-weight: 700;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: start;
}

.footer-contact {
  display: grid;
  gap: 0.35rem;
}

.footer-contact p {
  margin: 0;
}

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

.footer-brand {
  color: var(--text);
  font-family: "Franklin Gothic Medium", "Trebuchet MS", sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
}

.footer-disclaimer {
  margin: 1rem auto 0;
  max-width: var(--max-width);
  text-align: center;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: none;
  padding: 0.75rem 0.85rem calc(0.75rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
  background: rgba(248, 244, 238, 0.92);
  backdrop-filter: blur(14px);
}

html[data-theme="dark"] .sticky-cta {
  background: rgba(16, 32, 24, 0.94);
}

.sticky-cta__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.sticky-cta__grid a {
  padding: 0.92rem 0.55rem;
  border-radius: 1rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange), var(--orange-strong));
  color: #fff;
}

.fade-section {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.fade-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .header-shell,
  .hero-grid,
  .two-column-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .header-shell {
    justify-items: center;
    gap: 0.55rem;
    padding: 0.45rem 0 0.6rem;
  }

  .header-actions {
    justify-content: center;
  }

  .call-cta-wrap--header {
    justify-items: center;
    text-align: center;
  }

  .brand {
    max-width: 200px;
  }

  .hero-logo-panel {
    max-width: 25rem;
    margin-inline: auto;
  }

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

  .hero-copy-panel {
    order: 2;
  }

  .hero-side-stack {
    order: 1;
  }

  .page-hero--home {
    padding-bottom: 3rem;
  }

  .hero-grid--home {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .hero-copy-panel--home .hero-meta {
    grid-template-columns: 1fr;
  }

  .hero-copy-panel--home .hero-meta .meta-row:first-child {
    grid-column: auto;
  }

  #services-overview.section {
    padding-top: 3rem;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 5.75rem;
  }

  .site-footer {
    padding-bottom: 6.15rem;
  }

  .sticky-cta {
    display: block;
  }

  .header-shell {
    display: block;
    padding: 0.45rem 0;
  }

  .mobile-topbar,
  .mobile-nav-backdrop,
  .mobile-drawer,
  .menu-toggle {
    display: block;
  }

  .mobile-topbar {
    display: flex;
    min-height: 3.15rem;
    padding: 0.18rem 0.2rem;
    border: 1px solid rgba(21, 114, 68, 0.12);
    border-radius: 1rem;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0)),
      rgba(250, 248, 243, 0.9);
    box-shadow:
      0 8px 18px rgba(17, 43, 31, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.35);
    overflow: hidden;
  }

  html[data-theme="dark"] .mobile-topbar {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
      rgba(16, 32, 24, 0.92);
    border-color: rgba(114, 184, 136, 0.16);
    box-shadow:
      0 10px 24px rgba(0, 0, 0, 0.26),
      inset 0 1px 0 rgba(255, 255, 255, 0.03);
  }

  .brand,
  .site-nav,
  .header-actions {
    display: none;
  }

  .mobile-brand {
    width: auto;
  }

  .menu-toggle {
    display: inline-grid;
    width: 2.2rem;
    height: 2.2rem;
    border-color: rgba(21, 114, 68, 0.12);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 8px 16px rgba(17, 43, 31, 0.08);
  }

  html[data-theme="dark"] .menu-toggle {
    background: rgba(23, 46, 34, 0.92);
    border-color: rgba(114, 184, 136, 0.16);
  }

  .section,
  .page-hero {
    padding-top: 2.2rem;
    padding-bottom: 2.2rem;
  }

  .hero-copy-panel {
    order: 1;
    padding: 1.15rem;
    gap: 0.52rem;
  }

  .hero-grid--home .hero-side-stack {
    display: contents;
  }

  .hero-grid--home .hero-logo-panel {
    order: 1;
    max-width: 13.5rem;
    margin: 0 auto 0.15rem;
    padding: 0.58rem;
  }

  .hero-grid--home .hero-copy-panel {
    order: 2;
  }

  .hero-grid--home .hero-contact-card {
    order: 3;
  }

  .hero-logo-panel {
    max-width: 17rem;
    padding: 0.64rem;
  }

  .hero-title {
    font-size: clamp(1.82rem, 7.5vw, 2.5rem);
  }

  .page-title {
    font-size: clamp(1.55rem, 6vw, 2.05rem);
  }

  .section-title {
    font-size: clamp(1.35rem, 5vw, 1.85rem);
  }

  .banner-title {
    font-size: clamp(1.25rem, 5.4vw, 1.8rem);
  }

  .hero-tagline {
    margin: 0.62rem 0;
    font-size: clamp(1rem, 4vw, 1.3rem);
  }

  .eyebrow {
    margin-bottom: 0.48rem;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .hero-statement,
  .section-lead,
  .page-lead,
  .card-detail,
  .tile-description,
  .price-subtitle,
  .helper-text,
  .banner-text {
    font-size: 0.9rem;
  }

  .hero-meta,
  .stack-list,
  .contact-list {
    margin-top: 0.82rem;
    gap: 0.65rem;
  }

  .feature-grid--two,
  .form-grid,
  .payment-grid,
  .pricing-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    margin-bottom: 1rem;
    gap: 0.6rem;
  }

  .subnav-pills {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.48rem;
    margin-top: 0.85rem;
  }

  .subnav-pills a {
    padding: 0.6rem 0.7rem;
    text-align: center;
    font-size: 0.84rem;
  }

  .services-window__head {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .services-window__grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-top: 0;
  }

  .timeline-flow {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .timeline-arrow {
    min-width: auto;
    min-height: 2.15rem;
  }

  .timeline-arrow::before {
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, rgba(21, 114, 68, 0.22), rgba(235, 138, 35, 0.88));
  }

  .timeline-arrow::after {
    left: 50%;
    right: auto;
    bottom: 0.08rem;
    margin-left: -0.35rem;
    width: 0.7rem;
    height: 0.7rem;
    transform: rotate(135deg);
    animation-name: arrowPulseDown;
  }

  .meta-row,
  .stack-item,
  .contact-line {
    flex-direction: column;
    gap: 0.2rem;
  }

  .meta-label,
  .stack-label {
    min-width: 0;
  }

  .cta-row {
    margin-top: 0.95rem;
    gap: 0.55rem;
  }

  .btn {
    padding: 0.76rem 0.95rem;
    font-size: 0.91rem;
  }

  .service-mark,
  .feature-mark,
  .timeline-mark,
  .contact-mark {
    width: 2.55rem;
    height: 2.55rem;
    border-radius: 0.82rem;
    font-size: 0.84rem;
  }

  .hero-copy-panel,
  .hero-side-card,
  .form-card,
  .payment-card,
  .contact-card,
  .price-card,
  .feature-card,
  .service-card,
  .timeline-card,
  .info-card,
  .highlight-banner,
  .page-header-card,
  .services-window {
    padding: 1.02rem;
  }

  .price-card__action {
    align-items: flex-start;
  }

  .price-card__value,
  .price-card__condition {
    min-height: 0;
    font-size: 1.18rem;
  }

  .sticky-cta {
    padding: 0.46rem 0.62rem calc(0.46rem + env(safe-area-inset-bottom));
  }

  .sticky-cta__grid {
    gap: 0.42rem;
  }

  .sticky-cta__grid a {
    min-height: 2.65rem;
    padding: 0.54rem 0.3rem;
    border-radius: 0.78rem;
    font-size: 0.8rem;
  }

  .call-cta-wrap--footer,
  .footer-contact {
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--max-width), calc(100% - 1.5rem));
  }

  .header-shell {
    padding: 0.28rem 0;
  }

  .mobile-brand {
    width: auto;
  }

  .mobile-brand-panel {
    padding: 0.12rem 0.2rem;
  }

  .mobile-brand-panel img {
    width: min(100%, 58px);
  }

  .mobile-page-title {
    width: min(10rem, calc(100% - 7rem));
    font-size: 0.74rem;
  }

  .menu-toggle {
    width: 2.08rem;
    height: 2.08rem;
  }

  .hero-copy-panel,
  .hero-side-card,
  .form-card,
  .payment-card,
  .contact-card,
  .price-card,
  .feature-card,
  .service-card,
  .timeline-card,
  .info-card,
  .highlight-banner,
  .page-header-card {
    padding: 0.94rem;
  }

  .section,
  .page-hero {
    padding-top: 1.95rem;
    padding-bottom: 1.95rem;
  }

  .hero-title {
    font-size: clamp(1.62rem, 8.8vw, 2rem);
  }

  .page-title {
    font-size: clamp(1.35rem, 7vw, 1.75rem);
  }

  .hero-tagline {
    margin: 0.52rem 0;
    font-size: 0.98rem;
  }

  .hero-statement,
  .section-lead,
  .page-lead,
  .card-detail,
  .tile-description,
  .price-subtitle,
  .helper-text,
  .banner-text {
    font-size: 0.88rem;
  }

  .hero-logo-panel {
    max-width: 14rem;
    padding: 0.56rem;
  }

  .cta-row,
  .form-actions {
    flex-direction: column;
  }

  .cta-row .btn,
  .form-actions .btn,
  .payment-link-line .btn {
    width: 100%;
  }

  .services-window {
    padding: 0.94rem;
  }

  .subnav-pills {
    grid-template-columns: 1fr;
  }

  .sticky-cta {
    padding: 0.4rem 0.55rem calc(0.4rem + env(safe-area-inset-bottom));
  }

  .sticky-cta__grid a {
    min-height: 2.55rem;
    font-size: 0.76rem;
  }

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

@media (max-width: 420px) {
  .mobile-brand-panel img {
    width: min(100%, 54px);
  }

  .mobile-page-title {
    width: min(9rem, calc(100% - 6.5rem));
    font-size: 0.69rem;
  }

  .hero-grid--home .hero-logo-panel {
    max-width: 12.4rem;
  }

  .sticky-cta__grid a {
    font-size: 0.71rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .fade-section {
    opacity: 1;
    transform: none;
  }
}
