:root {
  --ink: #17212b;
  --text: #33404a;
  --muted: #5d6872;
  --soft: #f3f6f2;
  --white: #ffffff;
  --line: #d9e0d6;
  --green: #6f8f1f;
  --lime: #a0b947;
  --orange: #f58220;
  --shadow: 0 18px 48px rgba(23, 33, 43, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.sandbox-bar {
  padding: 8px 18px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  background: var(--ink);
}

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

.brand img {
  display: block;
  width: min(230px, 54vw);
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 28px);
  color: var(--green);
  font-size: 15px;
  font-weight: 800;
}

nav a {
  text-decoration: none;
}

.hero {
  display: grid;
  align-items: center;
  min-height: calc(100vh - 112px);
  padding: clamp(48px, 8vw, 90px) clamp(22px, 6vw, 84px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .82) 55%, rgba(243, 246, 242, .72)),
    url("https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/QW1bqWTsPlboV1lWT96R/media/6f3ae5ee-51db-4aec-ba4d-0444b7b1598c.png") right center / auto 82% no-repeat,
    var(--white);
  border-bottom: 1px solid var(--line);
}

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

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

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

h1 {
  margin-bottom: 22px;
  max-width: 820px;
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: .98;
  letter-spacing: 0;
}

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

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.16;
}

.lede {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.42;
}

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

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

.button.primary {
  color: var(--white);
  background: var(--orange);
}

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

.band,
.split-section,
.cta-band {
  padding: clamp(48px, 7vw, 86px) clamp(22px, 6vw, 84px);
}

.section-heading {
  display: grid;
  gap: 8px;
  max-width: 760px;
  margin-bottom: 30px;
}

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

.feature-grid article {
  min-height: 190px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(23, 33, 43, .06);
}

.offer-map .feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offer-map article {
  display: flex;
  flex-direction: column;
}

.offer-map article a {
  margin-top: auto;
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
}

.tag {
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 4px 8px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  background: var(--green);
  border-radius: 4px;
}

.feature-grid p,
.check-list {
  color: var(--text);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 70px);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 18px;
}

.check-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
}

.check-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--lime);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--white);
  background: var(--green);
}

.cta-band .eyebrow {
  color: #ffe1c9;
}

.cta-band h2 {
  max-width: 640px;
}

.scheduler-page {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(420px, 1.18fr);
  min-height: calc(100vh - 112px);
}

.scheduler-intro {
  padding: clamp(42px, 7vw, 84px) clamp(22px, 5vw, 70px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .84)),
    url("https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/QW1bqWTsPlboV1lWT96R/media/6f3ae5ee-51db-4aec-ba4d-0444b7b1598c.png") right bottom / auto 52% no-repeat,
    var(--white);
}

.scheduler-wrap {
  min-height: 720px;
  padding: clamp(16px, 3vw, 36px);
  background: #e8eee5;
  border-left: 1px solid var(--line);
}

.scheduler-wrap iframe {
  display: block;
  width: 100%;
  min-height: 700px;
  height: 100%;
  border: 0;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.fallback {
  margin: 16px 0 0;
  color: var(--muted);
  text-align: center;
}

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

.site-footer a {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 900px) {
  .site-header,
  .cta-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .9)),
      url("https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/QW1bqWTsPlboV1lWT96R/media/6f3ae5ee-51db-4aec-ba4d-0444b7b1598c.png") right bottom / auto 48% no-repeat,
      var(--white);
  }

  .feature-grid,
  .split-section,
  .scheduler-page {
    grid-template-columns: 1fr;
  }

  .scheduler-wrap {
    min-height: 660px;
    border-left: 0;
  }

  .scheduler-wrap iframe {
    min-height: 640px;
  }
}

@media (max-width: 560px) {
  .site-header,
  .band,
  .split-section,
  .cta-band,
  .scheduler-intro,
  .scheduler-wrap {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: 38px;
  }

  .button {
    width: 100%;
  }
}
