:root {
  --ink: #111316;
  --muted: #5c6470;
  --line: #dfe4ea;
  --paper: #ffffff;
  --soft: #f4f7fa;
  --charcoal: #17191d;
  --red: #d71920;
  --red-dark: #971018;
  --teal: #0f766e;
  --gold: #c08722;
  --blue: #2563eb;
  --shadow: 0 22px 70px rgba(17, 19, 22, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  width: min(310px, 52vw);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  font-size: 15px;
  font-weight: 700;
}

.top-nav a {
  text-decoration: none;
}

.nav-cta {
  padding: 11px 17px;
  color: #fff;
  background: var(--ink);
  border-radius: 6px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 560px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(44px, 7vw, 96px) clamp(18px, 6vw, 76px) 38px;
  background:
    linear-gradient(115deg, #ffffff 0%, #f7fbff 55%, #eef5f4 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.15;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.48;
}

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

.price-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.price-actions {
  flex-direction: column;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  color: #fff;
  background: linear-gradient(180deg, var(--red), var(--red-dark));
}

.button.secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.showcase {
  overflow: hidden;
  background: #121417;
  border: 1px solid rgba(17, 19, 22, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.showcase-toolbar {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  background: #23262b;
}

.showcase-toolbar span {
  width: 11px;
  height: 11px;
  border-radius: 99px;
  background: #717986;
}

.showcase-toolbar span:first-child {
  background: var(--red);
}

.offer-panel {
  padding: 30px;
  color: #f8fafc;
  background: #121417;
  border: 1px solid rgba(17, 19, 22, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.offer-panel h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 42px);
}

.offer-panel p,
.offer-panel li {
  color: #d8dee7;
  line-height: 1.55;
}

.offer-price {
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(72px, 10vw, 112px);
  font-weight: 900;
  line-height: 0.9;
}

.offer-panel ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.offer-panel li {
  position: relative;
  padding-left: 26px;
}

.offer-panel li::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--gold);
  content: "+";
  font-weight: 900;
}

.slides {
  position: relative;
  min-height: 430px;
  padding: 24px;
}

.slide {
  display: none;
}

.slide.active {
  display: block;
}

.slide p {
  min-height: 58px;
  margin: 18px 0 0;
  color: #e9eef4;
  font-size: 17px;
  line-height: 1.45;
}

.mock {
  min-height: 320px;
  padding: 20px;
  background: #fff;
  border-radius: 6px;
}

.mock-nav {
  width: 100%;
  height: 34px;
  margin-bottom: 18px;
  background: #e5eaf0;
  border-radius: 5px;
}

.mock-hero {
  height: 128px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--red), var(--gold));
  border-radius: 6px;
}

.mock-grid,
.mock-columns,
.mock-list,
.mock-split {
  display: grid;
  gap: 12px;
}

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

.mock-grid span,
.mock-columns span,
.mock-list span,
.mock-split span {
  display: block;
  min-height: 70px;
  background: #edf2f7;
  border-radius: 5px;
}

.mock-split {
  grid-template-columns: 1.2fr 0.8fr;
  margin-bottom: 16px;
}

.mock-split span {
  min-height: 132px;
}

.mock-list span {
  min-height: 38px;
}

.mock-card {
  min-height: 170px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  border-radius: 6px;
}

.slide-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0 0 24px;
}

.slide-controls button {
  width: 42px;
  height: 8px;
  padding: 0;
  cursor: pointer;
  background: #69717e;
  border: 0;
  border-radius: 99px;
}

.slide-controls button.active {
  background: #fff;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: var(--charcoal);
}

.trust-strip div {
  padding: 28px clamp(18px, 4vw, 54px);
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 8px;
  font-size: 20px;
}

.trust-strip span {
  color: #cdd3db;
  line-height: 1.4;
}

.section {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 6vw, 76px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.example-grid article {
  min-height: 230px;
  padding: 28px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.example-grid p,
.pricing-copy p,
.final-cta p,
.process-list p {
  color: var(--muted);
  line-height: 1.55;
}

.chip {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 7px 10px;
  color: #fff;
  background: var(--teal);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.work-section {
  background: #f8fafc;
  border-top: 1px solid var(--line);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.work-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(17, 19, 22, 0.08);
}

.work-card h3,
.work-card p,
.work-card a {
  margin-inline: 24px;
}

.work-card h3 {
  margin-top: 22px;
}

.work-card p {
  color: var(--muted);
  line-height: 1.55;
}

.work-card a {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
}

.work-preview {
  display: grid;
  min-height: 190px;
  place-items: end start;
  padding: 22px;
  color: #fff;
  background: var(--charcoal);
}

.work-preview span {
  display: inline-flex;
  padding: 8px 10px;
  background: rgba(0, 0, 0, 0.48);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.cleaning-preview {
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.88), rgba(192, 135, 34, 0.82)),
    linear-gradient(180deg, #eef7f5, #fff);
}

.havenside-preview {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.82), rgba(17, 19, 22, 0.86)),
    linear-gradient(180deg, #eef4ff, #fff);
}

.rpmtrades-preview {
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.86), rgba(17, 19, 22, 0.88)),
    linear-gradient(180deg, #fff1f2, #fff);
}

.pricing-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  align-items: center;
  padding: clamp(54px, 8vw, 96px) clamp(18px, 6vw, 76px);
  color: #fff;
  background: linear-gradient(135deg, #17191d 0%, #272a2f 58%, #102f2c 100%);
}

.pricing-copy {
  max-width: 760px;
}

.pricing-copy p {
  color: #d8dee7;
  font-size: 18px;
}

.price-box {
  padding: 28px;
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
}

.price {
  margin-bottom: 8px;
  font-size: 68px;
  font-weight: 900;
  line-height: 1;
}

.price-box p {
  color: var(--muted);
  line-height: 1.45;
}

.price-box .button {
  width: 100%;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-list div {
  min-height: 210px;
  padding: 24px;
  border-top: 4px solid var(--red);
  background: #fff;
  box-shadow: 0 14px 36px rgba(17, 19, 22, 0.08);
}

.process-list span {
  display: block;
  margin-bottom: 42px;
  color: var(--gold);
  font-size: 28px;
  font-weight: 900;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(42px, 7vw, 78px) clamp(18px, 6vw, 76px);
  background: #f8fafc;
  border-top: 1px solid var(--line);
}

.final-cta div {
  max-width: 780px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 6vw, 76px);
  color: #d8dee7;
  background: #111316;
}

@media (max-width: 980px) {
  .hero,
  .pricing-band,
  .example-grid,
  .work-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .price-box {
    max-width: 440px;
  }
}

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

  .brand {
    width: min(280px, 86vw);
  }

  .top-nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: 42px;
  }

  .slides {
    min-height: 390px;
    padding: 16px;
  }

  .mock {
    min-height: 280px;
    padding: 14px;
  }

  .mock-grid,
  .mock-columns,
  .mock-split {
    grid-template-columns: 1fr;
  }

  .mock-grid span,
  .mock-columns span,
  .mock-split span {
    min-height: 42px;
  }

  .final-cta,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
