:root {
  --ink: #18201f;
  --muted: #5c6865;
  --line: #dbe4df;
  --paper: #f7faf6;
  --white: #ffffff;
  --green: #147a62;
  --green-deep: #0f4f41;
  --gold: #d89b2b;
  --coral: #d95d45;
  --blue: #296c9f;
  --teal: #1a9a94;
  --shadow: 0 22px 60px rgba(24, 32, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 66px;
  padding: 9px clamp(18px, 4vw, 48px);
  background: rgba(247, 250, 246, 0.88);
  border-bottom: 1px solid rgba(219, 228, 223, 0.85);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: clamp(150px, 15vw, 190px);
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

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

.header-cta,
.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
}

.header-cta {
  min-height: 40px;
  padding: 0 18px;
  color: white;
  background: var(--green-deep);
}

.btn {
  border: 1px solid transparent;
  padding: 0 22px;
  cursor: pointer;
}

.btn-primary {
  color: white;
  background: var(--green);
  box-shadow: 0 14px 30px rgba(20, 122, 98, 0.2);
}

.btn-primary:hover {
  background: var(--green-deep);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.68;
}

.btn-secondary {
  color: var(--green-deep);
  background: white;
  border-color: var(--line);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  min-height: auto;
  padding: clamp(28px, 4.5vw, 54px) clamp(18px, 4vw, 56px) clamp(34px, 5vw, 58px);
  overflow: hidden;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(2.25rem, 4.35vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.hero-text,
.pain-band p,
.cta-copy p {
  color: var(--muted);
  font-size: clamp(1.03rem, 1.6vw, 1.24rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
}

.proof-row div {
  min-height: 80px;
  padding: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.proof-row strong,
.proof-row span {
  display: block;
}

.proof-row strong {
  font-size: 1.35rem;
}

.proof-row span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-media {
  position: relative;
}

.hero-media::before {
  position: absolute;
  inset: 8% 4% auto auto;
  width: 52%;
  aspect-ratio: 1;
  content: "";
  background: rgba(216, 155, 43, 0.18);
  border-radius: 999px;
  filter: blur(30px);
}

.hero-media img {
  position: relative;
  z-index: 1;
  max-height: 520px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.inner-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  padding: clamp(36px, 6vw, 76px) clamp(18px, 4vw, 56px);
  background: linear-gradient(135deg, #f7faf6 0%, #edf4ef 100%);
}

.inner-hero h1 {
  max-width: 820px;
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--green-deep);
  font-size: 0.9rem;
  font-weight: 850;
}

.breadcrumb:hover {
  color: var(--green);
}

.system-panel {
  position: relative;
  min-height: 360px;
  padding: 30px;
  color: white;
  background: var(--green-deep);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.system-panel::before {
  position: absolute;
  inset: auto -30px -60px auto;
  width: 180px;
  height: 180px;
  content: "";
  background: rgba(243, 197, 93, 0.28);
  border-radius: 50%;
}

.system-panel span,
.system-panel strong {
  position: relative;
  display: block;
}

.system-panel span {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 850;
}

.system-panel strong {
  margin-bottom: 28px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.panel-line {
  position: relative;
  width: 68%;
  height: 13px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.panel-line.wide {
  width: 92%;
}

.status-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-top: 34px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.status-grid small {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 750;
}

.status-grid b {
  color: #f3c55d;
}

.page-school .system-panel {
  background: #225f91;
}

.page-laundry .system-panel {
  background: #14736e;
}

.page-health .system-panel {
  background: #8c3d32;
}

.page-booking .system-panel {
  background: #85601d;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.module-card {
  min-height: 220px;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(24, 32, 31, 0.06);
}

.module-card h3 {
  font-size: 1.2rem;
}

.module-card p {
  color: var(--muted);
  line-height: 1.6;
}

.section,
.pain-band,
.cta-section {
  padding: clamp(64px, 9vw, 110px) clamp(18px, 4vw, 56px);
}

.section-inner,
.section-heading,
.solution-grid,
.detail-list,
.benefit-grid,
.process,
.pricing-grid,
.cta-section {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.pain-band {
  color: white;
  background: var(--green-deep);
}

.pain-band .eyebrow,
.pain-band p {
  color: rgba(255, 255, 255, 0.78);
}

.pain-band h2 {
  color: white;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
  text-align: center;
}

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

.solution-card {
  grid-column: span 3;
  min-height: 360px;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-top: 5px solid var(--green);
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(24, 32, 31, 0.07);
}

.card-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  place-items: center;
  color: white;
  background: var(--green);
  border-radius: 8px;
  font-weight: 900;
}

.solution-card p,
.solution-card li,
.detail-row li,
.benefit-item p,
.process p,
.price-card p,
.price-card li,
.footer {
  color: var(--muted);
  line-height: 1.6;
}

.solution-card ul,
.plan-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.solution-card li,
.plan-list li {
  position: relative;
  padding-left: 18px;
}

.solution-card li::before,
.plan-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--gold);
  border-radius: 999px;
}

.accent-school {
  border-top-color: var(--blue);
}

.accent-laundry {
  border-top-color: var(--teal);
}

.accent-health {
  border-top-color: var(--coral);
}

.accent-beauty {
  border-top-color: var(--gold);
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--green-deep);
  font-weight: 900;
}

.text-link:hover {
  color: var(--green);
}

.detail-section {
  background: #edf4ef;
}

.detail-list {
  display: grid;
  gap: 14px;
}

.detail-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-row > .btn {
  justify-self: end;
}

.detail-row h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.detail-row p {
  color: var(--muted);
  line-height: 1.65;
}

.detail-kicker {
  margin-bottom: 8px;
  color: var(--green) !important;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-row ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.detail-row li {
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.muted {
  background: white;
}

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

.benefit-item {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.process-section {
  background: #edf4ef;
}

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

.process div {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  place-items: center;
  color: white;
  background: var(--green-deep);
  border-radius: 999px;
  font-weight: 900;
}

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

.pricing-grid-two {
  grid-template-columns: repeat(2, minmax(280px, 390px));
  justify-content: center;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 330px;
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.price-note {
  margin-top: -8px;
  font-size: 0.95rem;
  font-weight: 800;
}

.plan-list {
  margin-top: 8px;
}

.price-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.featured {
  color: white;
  background: var(--green-deep);
  border-color: var(--green-deep);
  box-shadow: var(--shadow);
}

.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.featured li {
  color: rgba(255, 255, 255, 0.82);
}

.featured .plan-list li::before {
  background: #f3c55d;
}

.featured .price,
.price {
  color: inherit;
  font-size: 2rem;
  font-weight: 900;
}

.tag {
  align-self: flex-start;
  padding: 7px 10px;
  color: var(--green-deep) !important;
  background: #f3c55d;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cta-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
  color: white;
  background: var(--ink);
}

.cta-copy {
  max-width: 560px;
}

.cta-copy .eyebrow {
  color: #f3c55d;
}

.cta-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  color: var(--ink);
  background: white;
  border-radius: 8px;
}

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

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  background: #f8fbf9;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.lead-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.form-note[data-status="success"] {
  color: var(--green-deep);
  font-weight: 800;
}

.form-note[data-status="error"] {
  color: var(--coral);
  font-weight: 800;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px);
  background: white;
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0;
}

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

  .hero,
  .inner-hero,
  .split,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    order: -1;
  }

  .solution-card,
  .detail-row {
    grid-column: span 3;
  }

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

@media (max-width: 680px) {
  .site-header {
    gap: 12px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 20px;
  }

  .proof-row,
  .benefit-grid,
  .feature-grid,
  .process,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .inner-hero {
    padding-top: 26px;
  }

  .system-panel {
    min-height: 300px;
    padding: 24px;
  }

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

  .solution-card,
  .detail-row {
    grid-column: auto;
    min-height: auto;
  }

  .detail-row {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .detail-row > .btn {
    justify-self: start;
  }

  .footer {
    flex-direction: column;
  }
}
