:root {
  --hpr-blue: #075bd8;
  --hpr-blue-dark: #053b92;
  --hpr-blue-deep: #06265a;
  --hpr-blue-soft: #eaf2ff;
  --hpr-yellow: #ffd228;
  --hpr-yellow-dark: #e1b400;
  --sismer-cyan: #16a7c8;
  --sismer-cyan-dark: #08768f;
  --sismer-cyan-soft: #e9f8fb;
  --ink: #0d1b2a;
  --muted: #58687a;
  --line: #dce5ef;
  --surface: #ffffff;
  --surface-soft: #f6f9fd;
  --danger: #b42318;
  --success: #087a3f;
  --shadow-sm: 0 10px 30px rgba(10, 42, 88, 0.08);
  --shadow-lg: 0 28px 80px rgba(3, 33, 84, 0.22);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(255, 210, 40, 0.72);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--hpr-yellow);
  color: #152033;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  color: #fff;
  background: rgba(5, 47, 118, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 43, 106, 0.96);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 20, 58, 0.16);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex: 0 0 auto;
  text-decoration: none;
}

.hpr-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--hpr-blue);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hpr-mark img {
  width: 30px;
  height: 33px;
  object-fit: contain;
}

.brand-divider {
  width: 1px;
  height: 31px;
  background: rgba(255, 255, 255, 0.34);
}

.sismer-mark {
  width: 152px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav > a:not(.button) {
  position: relative;
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.86);
  transition: color 160ms ease;
}

.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  inset: auto 0 -8px;
  height: 2px;
  border-radius: 99px;
  background: var(--hpr-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav > a:not(.button):hover {
  color: #fff;
}

.site-nav > a:not(.button):hover::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-button > span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: #fff;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-button[aria-expanded="true"] > span:nth-child(2) {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"] > span:nth-child(3) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] > span:nth-child(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 14px;
  background: var(--hpr-blue);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(7, 91, 216, 0.2);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(7, 91, 216, 0.28);
}

.button:active {
  transform: translateY(0);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

.button-small {
  min-height: 42px;
  padding-inline: 17px;
  border-radius: 12px;
  background: var(--hpr-yellow);
  color: #14213a;
  box-shadow: none;
}

.button-yellow {
  background: var(--hpr-yellow);
  color: #13223d;
  box-shadow: 0 14px 30px rgba(255, 210, 40, 0.21);
}

.button-yellow:hover,
.button-small:hover {
  background: #ffda4d;
  box-shadow: 0 18px 36px rgba(255, 210, 40, 0.28);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 760px;
  padding: calc(var(--header-height) + 85px) 0 82px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(22, 167, 200, 0.24), transparent 28%),
    radial-gradient(circle at 72% 82%, rgba(255, 210, 40, 0.13), transparent 24%),
    linear-gradient(120deg, #062f73 0%, #075bd8 48%, #0871db 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -10%;
  right: -10%;
  bottom: -120px;
  height: 190px;
  border-radius: 50% 50% 0 0;
  background: #fff;
  opacity: 0.06;
}

.hero-grid-pattern {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.9) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, transparent 0%, transparent 35%, black 70%, transparent 100%);
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.hero-orbit-one {
  width: 640px;
  height: 640px;
  right: -160px;
  top: 70px;
}

.hero-orbit-two {
  width: 420px;
  height: 420px;
  right: -10px;
  top: 180px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(520px, 1.06fr);
  align-items: center;
  gap: 62px;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--hpr-blue);
  font-size: 0.79rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 99px;
  background: var(--sismer-cyan);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.9);
}

.eyebrow-light::before {
  background: var(--hpr-yellow);
}

.hero h1,
.section-heading h2,
.benefits-copy h2,
.about-copy h2,
.lead-copy h2 {
  margin: 0;
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(2.75rem, 5.3vw, 5.05rem);
}

.hero h1 span {
  color: var(--hpr-yellow);
}

.hero-text {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.79);
  font-size: clamp(1.04rem, 1.6vw, 1.2rem);
  line-height: 1.72;
}

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

.hero-points {
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  list-style: none;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.91rem;
  font-weight: 650;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.check {
  width: 21px;
  height: 21px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--hpr-yellow);
  font-size: 0.72rem;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  align-items: center;
}

.product-stage {
  position: relative;
  width: min(100%, 600px);
  margin-left: auto;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  background: rgba(2, 31, 76, 0.28);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}

.product-stage::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.24), transparent 38%, rgba(22, 167, 200, 0.24));
}

.product-stage-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 6px 6px 18px;
}

.product-stage-top img {
  width: 174px;
}

.product-stage-top span {
  padding: 7px 11px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 750;
}

.management-board {
  position: relative;
  min-height: 350px;
  padding: 26px;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  color: var(--ink);
}

.management-board::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 130px;
  right: -60px;
  bottom: -35px;
  border-radius: 50%;
  background: var(--sismer-cyan-soft);
  transform: rotate(-12deg);
}

.board-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.board-heading small,
.board-modules small,
.floating-card small {
  display: block;
  color: #7b8897;
  font-size: 0.71rem;
  font-weight: 700;
}

.board-heading strong {
  display: block;
  max-width: 330px;
  margin-top: 4px;
  font-size: 1.11rem;
  line-height: 1.35;
}

.status-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 99px;
  background: var(--sismer-cyan-soft);
  color: var(--sismer-cyan-dark);
  font-size: 0.71rem;
  font-weight: 800;
}

.status-chip i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sismer-cyan);
}

.board-modules {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.board-modules article {
  min-height: 142px;
  padding: 17px;
  border: 1px solid #e9eef4;
  border-radius: 16px;
  background: #fbfcfe;
}

.module-icon,
.feature-icon {
  display: grid;
  place-items: center;
  color: var(--hpr-blue);
}

.module-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 10px;
  background: var(--hpr-blue-soft);
}

.module-icon svg,
.feature-icon svg,
.floating-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.board-modules strong {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  line-height: 1.35;
}

.field-lines {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 74px;
  margin-top: 20px;
}

.field-lines span {
  flex: 1;
  border-radius: 7px 7px 2px 2px;
  background: linear-gradient(to top, var(--hpr-blue), #4e91ef);
  opacity: 0.82;
}

.field-lines span:nth-child(1) { height: 40%; }
.field-lines span:nth-child(2) { height: 66%; }
.field-lines span:nth-child(3) { height: 53%; }
.field-lines span:nth-child(4) { height: 86%; background: linear-gradient(to top, var(--sismer-cyan-dark), var(--sismer-cyan)); }
.field-lines span:nth-child(5) { height: 72%; }

.floating-card {
  position: absolute;
  z-index: 4;
  min-width: 190px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 18px 45px rgba(2, 26, 66, 0.2);
}

.floating-card strong {
  display: block;
  margin-top: 2px;
  font-size: 0.82rem;
}

.floating-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--sismer-cyan-soft);
  color: var(--sismer-cyan-dark);
}

.floating-icon.yellow {
  background: #fff7d6;
  color: #9a7600;
}

.floating-balance {
  left: -34px;
  bottom: 45px;
}

.floating-sales {
  right: -22px;
  top: 114px;
}

.trust-strip {
  position: relative;
  z-index: 4;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  min-height: 116px;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.trust-grid > div:first-child {
  border-left: 1px solid var(--line);
}

.trust-grid strong {
  color: var(--hpr-blue-dark);
  font-size: 0.94rem;
}

.trust-grid span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
}

.section {
  padding: 104px 0;
}

.section-soft {
  background: var(--surface-soft);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading-left {
  margin: 0;
  text-align: left;
}

.section-heading h2,
.benefits-copy h2,
.about-copy h2,
.lead-copy h2 {
  font-size: clamp(2rem, 4.1vw, 3.6rem);
}

.section-heading p,
.benefits-copy > p,
.about-copy p,
.lead-copy > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.feature-card {
  position: relative;
  min-height: 270px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 1px 0 rgba(16, 44, 82, 0.02);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #c5d6e8;
  box-shadow: var(--shadow-sm);
}

.feature-card-accent {
  border-color: #bfe9f1;
  background: linear-gradient(145deg, #fff, var(--sismer-cyan-soft));
}

.feature-index {
  position: absolute;
  top: 22px;
  right: 24px;
  color: #c9d4df;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background: var(--hpr-blue-soft);
}

.feature-card-accent .feature-icon {
  background: #d6f3f8;
  color: var(--sismer-cyan-dark);
}

.feature-icon svg {
  width: 25px;
  height: 25px;
}

.feature-card h3 {
  margin: 23px 0 10px;
  font-size: 1.16rem;
  line-height: 1.3;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.benefits-layout {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  align-items: start;
  gap: 90px;
}

.benefits-copy {
  position: sticky;
  top: calc(var(--header-height) + 45px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  color: var(--hpr-blue);
  text-decoration: none;
  font-weight: 800;
}

.text-link span {
  font-size: 1.3rem;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.benefits-list {
  border-top: 1px solid var(--line);
}

.benefit-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.benefit-row > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--hpr-blue-soft);
  color: var(--hpr-blue);
  font-size: 0.77rem;
  font-weight: 900;
}

.benefit-row h3 {
  margin: 0;
  font-size: 1.1rem;
}

.benefit-row p {
  margin: 6px 0 0;
  color: var(--muted);
}

.about-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(120deg, #05265d 0%, #063a8b 58%, #075bd8 100%);
}

.about-section::before {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  left: -240px;
  bottom: -240px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.025), 0 0 0 140px rgba(255, 255, 255, 0.018);
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 95px;
}

.about-brand {
  min-height: 390px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.hpr-emblem {
  width: 178px;
  height: 178px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--hpr-blue);
  box-shadow: 0 20px 50px rgba(0, 16, 53, 0.28);
}

.hpr-emblem img {
  width: 125px;
  height: 136px;
  object-fit: contain;
}

.about-brand > span {
  font-size: 1.15rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.about-copy p {
  color: rgba(255, 255, 255, 0.75);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 86px;
  align-items: start;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-item h3 {
  margin: 0;
}

.accordion-item button {
  width: 100%;
  padding: 23px 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.accordion-item button i {
  position: relative;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--hpr-blue-soft);
}

.accordion-item button i::before,
.accordion-item button i::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 7px;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--hpr-blue);
  transition: transform 160ms ease;
}

.accordion-item button i::after {
  transform: rotate(90deg);
}

.accordion-item button[aria-expanded="true"] i::after {
  transform: rotate(0);
}

.accordion-content {
  padding: 0 56px 23px 2px;
}

.accordion-content p {
  margin: 0;
  color: var(--muted);
}

.lead-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #052a67;
}

.lead-section::before,
.lead-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.lead-section::before {
  width: 500px;
  height: 500px;
  left: -220px;
  top: -260px;
  background: rgba(7, 91, 216, 0.58);
}

.lead-section::after {
  width: 480px;
  height: 480px;
  right: -180px;
  bottom: -300px;
  background: rgba(101, 173, 56, 0.28);
}

.lead-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 76px;
}

.lead-copy > p {
  color: rgba(255, 255, 255, 0.75);
}

.lead-facts {
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.lead-facts > div {
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.lead-facts strong {
  font-size: 0.92rem;
}

.lead-facts span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.84rem;
}

.form-shell {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 29px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-lg);
}

.lead-form {
  padding: 34px;
  border-radius: 21px;
  background: #fff;
  color: var(--ink);
}

.form-heading {
  margin-bottom: 26px;
}

.form-heading > span {
  color: var(--hpr-blue);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 5px 0 0;
  font-size: 1.7rem;
  line-height: 1.2;
}

.form-heading p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

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

.field > span {
  color: #283649;
  font-size: 0.82rem;
  font-weight: 750;
}

.field > span small {
  color: #8290a0;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d7e0ea;
  border-radius: 12px;
  background: #fbfcfe;
  color: var(--ink);
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.field input,
.field select {
  height: 48px;
  padding: 0 13px;
}

.field textarea {
  min-height: 104px;
  padding: 11px 13px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9aa7b6;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #bccbdc;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--hpr-blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(7, 91, 216, 0.1);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.08);
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.privacy-check {
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: #667588;
  font-size: 0.78rem;
  line-height: 1.45;
  cursor: pointer;
}

.privacy-check input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--hpr-blue);
}

.button-submit {
  width: 100%;
  margin-top: 20px;
  background: var(--hpr-blue);
}

.button-loader {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

.button-submit.is-loading .button-loader {
  display: block;
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
}

.form-status[data-type="success"] {
  color: var(--success);
}

.form-status[data-type="error"] {
  color: var(--danger);
}

.form-status[data-type="neutral"] {
  color: var(--muted);
}

.site-footer {
  padding: 58px 0 24px;
  color: rgba(255, 255, 255, 0.74);
  background: #031b41;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.7fr;
  gap: 70px;
  padding-bottom: 42px;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.footer-brand-row .hpr-mark {
  width: 38px;
  height: 38px;
}

.footer-brand-row .hpr-mark img {
  width: 27px;
  height: 29px;
}

.footer-brand p {
  max-width: 330px;
  margin: 14px 0 0;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-links strong {
  margin-bottom: 4px;
  color: #fff;
  font-size: 0.9rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  font-size: 0.86rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.77rem;
}

.mobile-cta {
  display: none;
}

.toast {
  position: fixed;
  z-index: 300;
  right: 20px;
  bottom: 20px;
  max-width: min(380px, calc(100vw - 40px));
  padding: 13px 16px;
  border-radius: 13px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 20px 55px rgba(4, 30, 70, 0.22);
  font-size: 0.85rem;
  font-weight: 750;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.toast[data-type="success"] {
  border-left: 4px solid var(--success);
}

.toast[data-type="error"] {
  border-left: 4px solid var(--danger);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
    gap: 38px;
  }

  .site-nav {
    gap: 20px;
  }

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

  .benefits-layout,
  .faq-grid {
    gap: 56px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    padding: 18px 20px 24px;
    display: grid;
    gap: 2px;
    background: rgba(4, 39, 96, 0.985);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 20, 58, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav > a:not(.button) {
    padding: 13px 4px;
  }

  .site-nav > a:not(.button)::after {
    display: none;
  }

  .site-nav .button {
    margin-top: 10px;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 60px) 0 75px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

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

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

  .hero-visual {
    min-height: 470px;
  }

  .product-stage {
    width: min(92%, 610px);
    margin-inline: auto;
  }

  .floating-balance {
    left: -18px;
  }

  .floating-sales {
    right: -18px;
  }

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

  .trust-grid > div:nth-child(3) {
    border-left: 1px solid var(--line);
    border-top: 1px solid var(--line);
  }

  .trust-grid > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .benefits-layout,
  .about-grid,
  .faq-grid,
  .lead-grid {
    grid-template-columns: 1fr;
  }

  .benefits-copy {
    position: static;
  }

  .about-grid {
    gap: 46px;
  }

  .about-brand {
    min-height: 300px;
  }

  .faq-grid {
    gap: 42px;
  }

  .lead-grid {
    gap: 46px;
  }

  .lead-copy {
    max-width: 700px;
  }
}

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

  .brand {
    gap: 9px;
  }

  .hpr-mark {
    width: 36px;
    height: 36px;
  }

  .hpr-mark img {
    width: 26px;
    height: 28px;
  }

  .brand-divider {
    height: 27px;
  }

  .sismer-mark {
    width: 125px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 42px);
  }

  .hero-grid-pattern {
    background-size: 48px 48px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 12vw, 3.65rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
    gap: 10px;
  }

  .hero-visual {
    min-height: 420px;
    margin-inline: -3px;
  }

  .product-stage {
    width: 100%;
    padding: 12px;
    border-radius: 22px;
  }

  .product-stage-top {
    padding: 5px 5px 12px;
  }

  .product-stage-top img {
    width: 142px;
  }

  .product-stage-top span {
    font-size: 0.68rem;
  }

  .management-board {
    min-height: 326px;
    padding: 20px;
    border-radius: 17px;
  }

  .board-heading strong {
    font-size: 0.95rem;
  }

  .status-chip {
    display: none;
  }

  .board-modules {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 20px;
  }

  .board-modules article {
    min-height: 118px;
    padding: 13px;
  }

  .board-modules article:nth-child(3) {
    grid-column: 1 / -1;
    min-height: 96px;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    align-items: center;
  }

  .board-modules article:nth-child(3) .module-icon {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .field-lines {
    display: none;
  }

  .floating-card {
    min-width: 0;
    padding: 9px 11px;
  }

  .floating-card small {
    display: none;
  }

  .floating-card strong {
    font-size: 0.72rem;
  }

  .floating-icon {
    width: 31px;
    height: 31px;
  }

  .floating-icon svg {
    width: 17px;
    height: 17px;
  }

  .floating-balance {
    left: -4px;
    bottom: 8px;
  }

  .floating-sales {
    right: -4px;
    top: 112px;
  }

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

  .trust-grid > div,
  .trust-grid > div:first-child,
  .trust-grid > div:nth-child(3),
  .trust-grid > div:nth-child(4) {
    min-height: 88px;
    padding: 18px 20px;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .section {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .section-heading h2,
  .benefits-copy h2,
  .about-copy h2,
  .lead-copy h2 {
    font-size: clamp(2rem, 9.5vw, 2.8rem);
  }

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

  .feature-card {
    min-height: 0;
    padding: 24px;
  }

  .benefit-row {
    grid-template-columns: 44px 1fr;
    gap: 15px;
  }

  .about-brand {
    min-height: 250px;
  }

  .hpr-emblem {
    width: 150px;
    height: 150px;
  }

  .hpr-emblem img {
    width: 104px;
    height: 113px;
  }

  .accordion-item button {
    padding-block: 20px;
  }

  .accordion-content {
    padding-right: 12px;
  }

  .form-shell {
    margin-inline: -4px;
    padding: 6px;
    border-radius: 24px;
  }

  .lead-form {
    padding: 24px 18px;
    border-radius: 18px;
  }

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

  .field-full {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 38px 26px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    padding-bottom: 74px;
    flex-direction: column;
    gap: 5px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 90;
    inset: auto 0 0;
    padding: 9px 12px max(9px, env(safe-area-inset-bottom));
    display: block;
    background: rgba(3, 27, 65, 0.94);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    transform: translateY(110%);
    transition: transform 180ms ease;
  }

  .mobile-cta.is-visible {
    transform: translateY(0);
  }

  .mobile-cta .button {
    width: 100%;
    min-height: 46px;
  }

  .toast {
    right: 12px;
    bottom: 72px;
    max-width: calc(100vw - 24px);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.not-found {
  min-height: 100vh;
  padding: 30px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #05265d, #075bd8);
}

.not-found-card {
  width: min(100%, 520px);
  padding: 46px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(14px);
}

.not-found-card img {
  width: 210px;
  margin: 0 auto 24px;
}

.not-found-card > span {
  display: block;
  color: var(--hpr-yellow);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.not-found-card h1 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 7vw, 3rem);
  line-height: 1.1;
}

.not-found-card p {
  margin: 16px auto 24px;
  max-width: 400px;
  color: rgba(255, 255, 255, 0.75);
}

/* Ajustes específicos do Sismer */
.sismer-mark {
  width: 150px;
  height: 42px;
  object-fit: contain;
}

.product-stage-top img {
  width: 190px;
  max-height: 58px;
  object-fit: contain;
}

.check svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 640px) {
  .sismer-mark {
    width: 126px;
    height: 36px;
  }
}
