:root {
  --heemo-blue: #159bee;
  --heemo-blue-dark: #0b7ed0;
  --ink: #101316;
  --body: #4d5a62;
  --muted: #75828a;
  --pale-site: #eef6fa;
  --border: #d9e3ea;
  --white: #ffffff;
  --protection: #202728;
  --dark-card: #353a3b;
  --success: #19a85b;
  --risk: #ef3e3e;
  --shadow: 0 18px 50px rgba(20, 42, 56, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--body);
  background: #fbfcfd;
  font-family: Inter, Manrope, "Source Sans 3", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 68px;
  padding: 12px clamp(20px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  justify-self: start;
}

.brand-mark {
  width: 28px;
  height: 28px;
  position: relative;
  display: inline-block;
  border: 3px solid var(--heemo-blue);
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: var(--heemo-blue);
  border-radius: 999px;
}

.brand-mark::before {
  width: 12px;
  height: 3px;
  top: 7px;
  left: 6px;
  transform: rotate(-28deg);
}

.brand-mark::after {
  width: 13px;
  height: 3px;
  left: 8px;
  bottom: 7px;
  transform: rotate(28deg);
}

.brand strong {
  display: block;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--ink);
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 0;
  color: #263038;
  font-size: 13px;
  font-weight: 700;
}

.nav a,
.footer a {
  transition: color 160ms ease;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 5px;
  white-space: nowrap;
}

.nav a + a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--border);
}

.nav a:hover,
.nav a[aria-current="page"] {
  background: #eef8ff;
}

.nav a:hover::before,
.nav a[aria-current="page"]::before,
.nav a:hover + a::before,
.nav a[aria-current="page"] + a::before {
  opacity: 0;
}

.nav a:hover,
.nav a[aria-current="page"],
.footer a:hover {
  color: var(--heemo-blue);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 18px;
  color: var(--white);
  background: var(--heemo-blue);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(21, 155, 238, 0.28);
}

.section-band {
  background: var(--pale-site);
}

.hero,
.split-section,
.problem-section,
.services,
.process,
.protection,
.contact {
  padding: clamp(64px, 8vw, 116px) clamp(22px, 4vw, 48px);
}

.hero,
.split-section,
.section-heading,
.compare-grid,
.card-grid,
.journey,
.protection-grid,
.contact-panel,
.footer {
  width: min(100%, 1220px);
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
  min-height: calc(100vh - 62px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--heemo-blue);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: Manrope, Inter, Arial, sans-serif;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 650px;
  font-size: clamp(46px, 7vw, 86px);
}

h2 {
  max-width: 720px;
  font-size: clamp(34px, 5vw, 56px);
}

h3 {
  font-size: 18px;
  line-height: 1.2;
}

.hero-text {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--body);
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 900;
}

.button-primary {
  color: var(--white);
  background: var(--heemo-blue);
  box-shadow: 0 12px 24px rgba(21, 155, 238, 0.26);
}

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

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.trust-pills li,
.service-card span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 10px;
  color: var(--heemo-blue);
  background: #ddf2ff;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.hero-media {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}

.hero-media img {
  width: 100%;
  height: clamp(340px, 42vw, 560px);
  object-fit: cover;
  object-position: top center;
}

.site-visual {
  min-height: clamp(340px, 42vw, 560px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 42%),
    linear-gradient(135deg, #d7ebf5, #ffffff 48%, #dfeaf0);
}

.plan-board {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.beam {
  position: absolute;
  display: block;
  background: rgba(32, 39, 40, 0.18);
  border-radius: 999px;
}

.beam-one {
  width: 80%;
  height: 16px;
  top: 22%;
  left: 10%;
  transform: rotate(-8deg);
}

.beam-two {
  width: 72%;
  height: 14px;
  top: 42%;
  right: -8%;
  transform: rotate(14deg);
}

.beam-three {
  width: 62%;
  height: 12px;
  bottom: 22%;
  left: -10%;
  transform: rotate(10deg);
}

.plan-sheet {
  position: absolute;
  left: 9%;
  bottom: 12%;
  width: min(430px, 72%);
  padding: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.plan-sheet strong {
  display: block;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  line-height: 1;
}

.plan-sheet small {
  display: block;
  margin-top: 12px;
  color: var(--heemo-blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.media-callout {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(290px, 60%);
  padding: 20px 22px;
  color: var(--white);
  background: var(--protection);
  border-left: 7px solid var(--heemo-blue);
}

.media-callout strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-size: 14px;
}

.media-callout span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.35;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: start;
  background: var(--white);
}

.copy-stack p {
  max-width: 680px;
  margin: 0 0 18px;
}

.section-heading {
  margin-bottom: 38px;
}

.section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.compare-card,
.service-card,
.journey li {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 7px;
}

.compare-card {
  padding: 26px;
}

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

.compare-card li {
  position: relative;
  padding-left: 24px;
  color: #263038;
  font-size: 14px;
}

.compare-card li::before {
  position: absolute;
  left: 0;
  top: 2px;
  display: inline-grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
}

.risk-list li::before {
  content: "!";
  background: var(--risk);
}

.success-list li::before {
  content: "\2713";
  background: var(--success);
}

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

.service-card {
  min-height: 172px;
  padding: 22px;
}

.service-card h3 {
  margin-top: 15px;
}

.service-card p,
.journey p,
.protection-grid p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.5;
}

.journey {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  list-style: none;
}

.journey li {
  min-height: 212px;
  padding: 22px 18px;
}

.journey span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  place-items: center;
  color: var(--white);
  background: var(--heemo-blue);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.protection {
  width: 100%;
  max-width: none;
  color: rgba(255, 255, 255, 0.78);
  background: radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.08), transparent 34%), var(--protection);
}

.protection .section-heading,
.protection .protection-grid {
  width: min(100%, 1220px);
}

.protection h2,
.protection h3 {
  color: var(--white);
}

.protection-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.protection-grid article {
  min-height: 112px;
  padding: 20px;
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(34px, 7vw, 86px);
  padding: clamp(28px, 5vw, 52px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 7px;
  box-shadow: var(--shadow);
}

.contact-copy p {
  max-width: 540px;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
}

.contact-list div {
  display: grid;
  gap: 2px;
}

.contact-list dt {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.contact-list dd {
  margin: 0;
  color: var(--body);
}

.contact-list a {
  color: var(--heemo-blue);
  font-weight: 800;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

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

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 3px solid rgba(21, 155, 238, 0.18);
  border-color: var(--heemo-blue);
}

.lead-form button {
  min-height: 48px;
  margin-top: 6px;
  color: var(--white);
  background: var(--heemo-blue);
  border: 0;
  border-radius: 5px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.footer {
  display: grid;
  grid-template-columns: 1.5fr 0.6fr 1fr;
  gap: 44px;
  padding: 52px clamp(22px, 4vw, 48px);
  color: rgba(255, 255, 255, 0.74);
  background: var(--protection);
}

.footer p {
  max-width: 430px;
  margin: 18px 0 0;
  font-size: 14px;
}

.brand-dark strong,
.brand-dark small {
  color: var(--white);
}

.footer nav,
.footer address {
  display: grid;
  align-content: start;
  gap: 10px;
  font-style: normal;
  font-size: 14px;
}

.footer a {
  color: rgba(255, 255, 255, 0.86);
}

.page-hero,
.content-section,
.cta-strip {
  padding: clamp(64px, 8vw, 108px) clamp(22px, 4vw, 48px);
}

.page-hero > *,
.content-section > *,
.cta-strip > * {
  width: min(100%, 1220px);
  margin-left: auto;
  margin-right: auto;
}

.page-hero h1 {
  max-width: 960px;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 22px;
  font-size: 18px;
}

.content-section {
  background: var(--white);
}

.content-section.section-band {
  background: var(--pale-site);
}

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

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 1220px);
  margin: 0 auto;
}

.feature-list article {
  min-height: 190px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 7px;
}

.section-band .feature-list article,
.content-section.section-band .feature-list article {
  background: var(--white);
}

.feature-list p {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.55;
}

.journey-wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.cta-strip h2 {
  color: var(--white);
  font-size: clamp(30px, 4vw, 48px);
}

.compact-footer {
  max-width: none;
  width: 100%;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
}

.compact-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.compact-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.social-placeholders {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-placeholders a {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.social-placeholders a:hover {
  color: var(--white);
  background: var(--heemo-blue);
  border-color: var(--heemo-blue);
}

.contact-page-section {
  padding-top: 0;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .nav {
    justify-content: flex-start;
  }

  .header-cta {
    justify-self: start;
  }

  .hero,
  .split-section,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

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

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

  .card-grid-three,
  .feature-list,
  .journey-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 720px) {
  .site-header {
    min-height: 58px;
    padding: 10px 16px;
  }

  .nav {
    gap: 8px 12px;
    font-size: 12px;
  }

  .nav a {
    padding: 0 10px;
    border: 1px solid var(--border);
    background: var(--white);
  }

  .nav a + a::before {
    display: none;
  }

  .header-cta {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero,
  .split-section,
  .problem-section,
  .services,
  .process,
  .protection,
  .contact {
    padding: 48px 18px;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: clamp(40px, 12vw, 52px);
  }

  h2 {
    font-size: clamp(31px, 10vw, 40px);
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-media img {
    height: 330px;
  }

  .media-callout {
    position: static;
    width: 100%;
  }

  .compare-grid,
  .card-grid,
  .journey,
  .protection-grid {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    padding: 24px;
  }

  .page-hero,
  .content-section,
  .cta-strip {
    padding: 48px 18px;
  }

  .card-grid-three,
  .feature-list,
  .journey-wide {
    grid-template-columns: 1fr;
  }

  .compact-footer,
  .compact-footer nav {
    align-items: flex-start;
    flex-direction: column;
  }

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