:root {
  --navy-950: #041326;
  --navy-900: #071b31;
  --navy-850: #09223c;
  --navy-800: #0b2a47;
  --cyan: #63a9bb;
  --cyan-700: #2f7788;
  --ink: #071b35;
  --muted: #5c6980;
  --line: #dce5ef;
  --surface: #ffffff;
  --soft: #f4f8fc;
  --shadow: 0 18px 45px rgba(6, 22, 43, 0.14);
  --navbar-height: 88px;
  --partners-top-gap: 70px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Manrope", Arial, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 112px;
  display: grid;
  grid-template-columns: 240px 1fr 190px;
  align-items: center;
  gap: 28px;
  padding: 0 56px;
  color: #fff;
  background: rgba(4, 19, 38, 0.82);
  border-bottom: 1px solid rgba(111, 193, 224, 0.28);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 214px;
  height: 78px;
  overflow: hidden;
}

.brand img {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: brightness(1.22) contrast(1.06);
}

.brand span,
.footer-brand span {
  display: grid;
  color: #fff;
  line-height: 1;
}

.brand strong,
.footer-brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
}

.brand small,
.footer-brand small {
  margin-top: 4px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  font-size: 14px;
  font-weight: 800;
}

.main-nav a {
  position: relative;
  padding: 44px 0 38px;
}

.main-nav a::after {
  position: absolute;
  left: 50%;
  bottom: 25px;
  width: 0;
  height: 3px;
  content: "";
  background: #fff;
  border-radius: 999px;
  transform: translateX(-50%);
  transition: width 180ms ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 44px;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 28px;
  border: 0;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.header-cta,
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), #04accb);
  box-shadow: 0 16px 32px rgba(0, 207, 228, 0.22);
}

.btn-outline {
  color: #fff;
  background: rgba(4, 19, 38, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 0 0 1px rgba(0, 207, 228, 0.16);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 0;
  padding-top: 112px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 72% 36%, rgba(24, 89, 128, 0.54), transparent 34%),
    linear-gradient(112deg, #061a31 0%, #08233d 48%, #06172b 100%);
}

.hero::before {
  position: absolute;
  inset: 112px 0 0;
  z-index: 0;
  content: "";
  background: linear-gradient(90deg, rgba(4, 19, 38, 0.9) 0%, rgba(4, 19, 38, 0.76) 43%, rgba(4, 19, 38, 0.24) 72%);
}

.hero-bg-slot {
  position: absolute;
  inset: 112px 0 0 auto;
  z-index: 0;
  width: min(49vw, 760px);
  opacity: 0.72;
}

.hero-bg-slot::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, #061a31 0%, rgba(6, 26, 49, 0.5) 42%, rgba(6, 26, 49, 0.04) 100%),
    linear-gradient(180deg, rgba(6, 26, 49, 0.2), rgba(6, 26, 49, 0.9));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
  align-items: center;
  max-width: 1190px;
  min-height: 380px;
  margin: 0 auto;
  padding: 48px 28px 42px;
}

.hero-copy {
  max-width: 640px;
}

.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.hero-proof i {
  color: #8bb8ca;
  font-size: 17px;
}

.hero h1 {
  max-width: 650px;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(42px, 4.6vw, 64px);
  font-weight: 800;
  line-height: 1.12;
}

.hero h1 span {
  display: inline-block;
  color: var(--cyan);
}

.hero p {
  max-width: 500px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.hero-mark {
  position: relative;
  justify-self: center;
  width: min(310px, 46vw);
  opacity: 0.94;
}

.hero-mark img {
  position: absolute;
  inset: 0;
  width: 100%;
  border-radius: 3px;
  mix-blend-mode: screen;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  padding: 30px calc((100vw - 1190px) / 2 + 28px);
  color: #fff;
  background: linear-gradient(90deg, #061a31, #092b49 48%, #061a31);
  border-top: 1px solid rgba(92, 183, 224, 0.36);
  border-bottom: 1px solid rgba(92, 183, 224, 0.22);
}

.trust-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding-right: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item i {
  color: var(--cyan);
  font-size: 48px;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 800;
}

.trust-item span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.partner-strip {
  display: grid;
  grid-template-columns: 54px 1fr 54px;
  align-items: center;
  gap: 24px;
  padding: 34px calc((100vw - 1190px) / 2 + 28px);
  background: #fff;
  box-shadow: inset 0 -1px 0 rgba(10, 32, 55, 0.08);
}

.slider-arrow {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #09203d;
  background: #eef2f6;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.slider-arrow i {
  font-size: 26px;
}

.logo-rail {
  display: grid;
  grid-auto-columns: minmax(120px, 1fr);
  grid-auto-flow: column;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.logo-rail::-webkit-scrollbar {
  display: none;
}

.logo-card {
  display: grid;
  place-items: center;
  height: 100px;
  padding: 18px;
  background: #f9fbfd;
  border: 1px solid #dce4ed;
  border-radius: 8px;
}

.partners-label {
  margin: 0 0 24px;
  color: #68758a;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.logo-card img {
  max-width: 120px;
  max-height: 58px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.68);
}

.section-pad {
  padding: 44px calc((100vw - 1190px) / 2 + 28px);
}

.section-narrow {
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 28px;
}

.solutions {
  background: linear-gradient(180deg, #f9fcff 0%, #fff 56%, #f9fcff 100%);
}

.solutions h2,
.section-title-line h2 {
  margin: 0;
  color: #071b35;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.solutions-more {
  display: none;
}

.solution-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(9, 32, 61, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.solution-img {
  height: 205px;
  margin: 0;
  overflow: hidden;
  background: #eef5fa;
}

.solution-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 0;
  padding: 8px 13px;
  color: #fff;
  background: #0d70b2;
  border-radius: 0 4px 4px 0;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.card-body {
  min-height: 126px;
  padding: 20px 24px 25px;
  text-align: center;
}

.card-body h3 {
  margin: 0 0 9px;
  color: #071b35;
  font-size: 25px;
  font-weight: 800;
}

.card-body p {
  max-width: 265px;
  margin: 0 auto;
  color: #102846;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.card-quote-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 13px;
  padding: 0;
  color: #1f6488;
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.card-quote-link:hover {
  color: #103c59;
}

.card-quote-link i {
  transition: transform 160ms ease;
}

.card-quote-link:hover i {
  transform: translateX(3px);
}

.image-slot {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 120px;
  color: rgba(7, 27, 53, 0.62);
  background:
    linear-gradient(135deg, rgba(0, 207, 228, 0.1), rgba(7, 27, 53, 0.08)),
    repeating-linear-gradient(135deg, rgba(7, 27, 53, 0.06) 0 1px, transparent 1px 18px),
    #eef5fa;
}

.image-slot::before {
  position: absolute;
  right: 12px;
  bottom: 10px;
  content: attr(data-slot);
  color: rgba(7, 27, 53, 0.45);
  font-size: 11px;
  font-weight: 700;
}

.image-slot i {
  color: rgba(0, 144, 170, 0.6);
  font-size: 36px;
}

.image-slot span {
  position: relative;
  z-index: 1;
  max-width: 76%;
  color: rgba(7, 27, 53, 0.68);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.image-slot-dark {
  color: rgba(255, 255, 255, 0.42);
  background:
    linear-gradient(115deg, rgba(4, 19, 38, 0.1), rgba(4, 19, 38, 0.84)),
    repeating-linear-gradient(72deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 22px),
    #102b45;
}

.image-slot-dark::before,
.image-slot-dark span {
  color: rgba(255, 255, 255, 0.42);
}

.hero .hero-bg-slot {
  position: absolute;
}

.hero .hero-bg-slot span {
  display: none;
}

.how {
  padding-top: 12px;
  padding-bottom: 26px;
}

.section-title-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 42px;
  margin: 0 0 32px;
}

.section-title-line span {
  height: 1px;
  background: #cfd8e2;
}

.steps {
  display: grid;
  grid-template-columns: 1fr 32px 1fr 32px 1fr;
  align-items: center;
  gap: 14px;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 130px;
  padding-left: 46px;
}

.step b {
  position: absolute;
  top: 8px;
  left: 0;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--cyan);
  border-radius: 999px;
  font-size: 15px;
}

.step > i {
  color: #09254b;
  font-size: 62px;
}

.step h3,
.diff-grid h3 {
  margin: 0 0 8px;
  color: #071b35;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.22;
}

.step p,
.diff-grid p {
  margin: 0;
  color: #31425b;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.step-arrow {
  color: #1d628b;
  font-size: 21px;
}

.differentials {
  padding-top: 8px;
  padding-bottom: 42px;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 64px;
  align-items: start;
  background: #f1f4f5;
  border-top: 1px solid #e1e7ea;
  border-bottom: 1px solid #e1e7ea;
}

.quote-intro {
  position: sticky;
  top: 116px;
  padding-top: 16px;
}

.quote-intro h2 {
  max-width: 390px;
  margin: 0 0 18px;
  color: #071b35;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.08;
}

.quote-intro > p {
  max-width: 430px;
  margin: 0;
  color: #405169;
  font-size: 17px;
  line-height: 1.65;
}

.quote-assurances {
  display: grid;
  gap: 13px;
  margin: 30px 0 0;
  padding: 0;
  color: #263b54;
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

.quote-assurances li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quote-assurances i {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #1f6488;
  background: #e1eaee;
  border-radius: 999px;
  font-size: 16px;
}

.quote-form {
  scroll-margin-top: 96px;
  padding: 32px;
  background: #fff;
  border: 1px solid #dce3e7;
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(13, 31, 48, 0.08);
}

.quote-progress {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.quote-progress > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #6d7888;
  background: #fff;
  border: 1px solid #cbd4db;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.quote-progress > span small {
  position: absolute;
  margin-top: 62px;
  color: #748092;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.quote-progress > span.active,
.quote-progress > span.done {
  color: #fff;
  background: #174f71;
  border-color: #174f71;
}

.quote-progress > i {
  height: 1px;
  background: #d7dee4;
}

.quote-step {
  min-width: 0;
  margin: 0;
  padding: 26px 0 0;
  border: 0;
}

.quote-step[hidden] {
  display: none;
}

.quote-step legend {
  padding: 0;
  color: #071b35;
  font-size: 25px;
  font-weight: 800;
}

.quote-step > p {
  margin: 7px 0 22px;
  color: #68758a;
  font-size: 14px;
}

.quote-type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.quote-type-grid button {
  display: grid;
  justify-items: start;
  gap: 12px;
  min-height: 112px;
  padding: 18px;
  color: #203851;
  background: #fff;
  border: 1px solid #d9e0e5;
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.quote-type-grid button:hover {
  border-color: #7995a7;
}

.quote-type-grid button.selected {
  color: #103c59;
  background: #edf3f5;
  border-color: #356f8d;
  box-shadow: inset 0 0 0 1px #356f8d;
}

.quote-type-grid button > i {
  color: #356f8d;
  font-size: 28px;
}

.quote-fields,
.quote-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.quote-fields label,
.quote-contact-grid label {
  display: grid;
  gap: 8px;
  color: #203851;
  font-size: 13px;
  font-weight: 800;
}

.quote-fields .quote-field-wide {
  grid-column: 1 / -1;
}

.quote-fields label[hidden] {
  display: none;
}

.quote-fields label small {
  color: #7c8797;
  font-weight: 600;
}

.quote-fields input,
.quote-fields select,
.quote-contact-grid input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: #071b35;
  background: #fff;
  border: 1px solid #cbd5dc;
  border-radius: 7px;
  font: inherit;
  font-size: 15px;
}

.quote-fields input:focus,
.quote-fields select:focus,
.quote-contact-grid input:focus {
  border-color: #356f8d;
  outline: 3px solid rgba(53, 111, 141, 0.14);
}

.quote-email {
  grid-column: 1 / -1;
}

.quote-email small {
  color: #7c8797;
  font-weight: 600;
}

.quote-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  color: #536176;
  font-size: 13px;
  line-height: 1.5;
}

.quote-consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: #174f71;
}

.quote-status {
  min-height: 22px;
  margin: 18px 0 0;
  color: #9b3f37;
  font-size: 13px;
  font-weight: 700;
}

.quote-status.success {
  color: #316a4a;
}

.quote-nav {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 10px;
}

.quote-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 46px;
  padding: 0 8px;
  color: #30445c;
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.quote-back:disabled {
  opacity: 0.42;
  cursor: default;
}

.quote-nav .btn:disabled {
  opacity: 0.46;
  box-shadow: none;
  cursor: not-allowed;
}

#quote-next[hidden],
#quote-submit[hidden] {
  display: none;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.diff-grid article {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  min-height: 112px;
  padding: 10px 30px 8px 0;
  border-right: 1px solid #cbd5e1;
}

.diff-grid article:last-child {
  border-right: 0;
}

.diff-grid i {
  grid-row: span 2;
  color: var(--cyan-700);
  font-size: 58px;
}

.diff-grid .diff-stat {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.diff-stat .trust-counter {
  color: #071b35;
  font-size: 26px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.location {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.82fr 0.9fr;
  gap: 34px;
  align-items: center;
  padding-top: 28px;
  padding-bottom: 28px;
  background: #fff;
}

.zion-banner-section {
  padding: 10px max(28px, calc((100vw - 1190px) / 2 + 28px)) 34px;
  background: #fff;
}

.zion-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(500px, 1fr) minmax(300px, 390px) 190px;
  align-items: center;
  height: 280px;
  overflow: hidden;
  color: #fff;
  background: #061c35;
  border: 1px solid rgba(18, 173, 198, 0.24);
  border-radius: 12px;
  box-shadow: 0 14px 32px rgba(5, 27, 51, 0.13);
  isolation: isolate;
}

.zion-banner-art {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 58%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  pointer-events: none;
}

.zion-banner-copy {
  grid-column: 2;
  display: grid;
  gap: 6px;
  padding: 18px 24px;
}

.zion-banner-copy small {
  color: #54d8e8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.zion-banner-copy strong {
  max-width: 420px;
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.18;
}

.zion-banner-button {
  grid-column: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  margin-right: 28px;
  padding: 0 20px;
  color: #fff;
  background: #1ba963;
  border-radius: 7px;
  box-shadow: 0 10px 22px rgba(14, 129, 72, 0.28);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.zion-banner:hover .zion-banner-button {
  background: #20ba6d;
  box-shadow: 0 12px 26px rgba(14, 129, 72, 0.38);
  transform: translateY(-2px);
}

.zion-banner:focus-visible {
  outline: 3px solid #19c9df;
  outline-offset: 4px;
}

.eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--cyan-700);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.location h2 {
  max-width: 360px;
  margin: 0 0 28px;
  color: #071b35;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.22;
}

.location ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.location li {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: 14px;
  color: #132a48;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.location li i {
  display: grid;
  place-items: center;
  width: 28px;
  height: 24px;
  margin-top: 1px;
  color: var(--cyan-700);
  font-size: 23px;
  line-height: 1;
}

.location li > span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.map-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  background: #e8edf2;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 270px;
  border: 0;
}

.map-open {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  color: #fff;
  background: #061b34;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  box-shadow: 0 20px 38px rgba(5, 20, 38, 0.24);
  font-size: 13px;
  font-weight: 800;
}

.map-open i {
  color: var(--cyan);
  font-size: 18px;
}

.building-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.building-photo img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.chat-preview {
  display: grid;
  place-items: center;
  align-self: end;
  gap: 8px;
}

.chat-bubble {
  width: 130px;
  height: 64px;
  background: #fff;
  border: 2px solid #61748f;
  border-radius: 14px;
}

.chat-preview img {
  width: 124px;
  height: 124px;
  object-fit: cover;
  object-position: top center;
  border-radius: 0 0 34px 34px;
}

.chat-preview button {
  display: grid;
  place-items: center;
  width: 110px;
  height: 74px;
  color: #fff;
  background: #071b35;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(3, 16, 32, 0.2);
}

.chat-preview button i {
  font-size: 28px;
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 28px calc((100vw - 1190px) / 2 + 28px);
  color: #fff;
  background: linear-gradient(90deg, #082341 0%, #0a3457 54%, #06182e 100%);
}

.final-cta div {
  display: flex;
  align-items: center;
  gap: 28px;
}

.final-cta div i {
  color: #fff;
  font-size: 58px;
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
}

.footer {
  color: rgba(255, 255, 255, 0.8);
  background: radial-gradient(circle at 68% 10%, rgba(0, 207, 228, 0.12), transparent 30%), #041326;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.72fr 0.84fr 1.6fr 0.65fr;
  gap: 40px;
  padding: 36px calc((100vw - 1190px) / 2 + 28px) 34px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 18px;
}

.footer-brand img {
  width: 104px;
  height: 104px;
  object-fit: contain;
  filter: brightness(1.18);
}

@media (max-width: 760px) {
  .footer-brand img {
    width: 92px;
    height: 92px;
  }
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.72;
}

.footer h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.footer a {
  display: block;
  margin-bottom: 8px;
}

.footer p {
  margin: 0 0 12px;
}

.footer p i {
  margin-right: 10px;
  color: var(--cyan);
}

.footer-contact p {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
}

.footer-contact p i {
  display: grid;
  place-items: center;
  width: 20px;
  height: 22px;
  margin: 1px 0 0;
  line-height: 1;
}

.footer-contact p span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.socials {
  display: flex;
  gap: 14px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
}

.socials i {
  font-size: 23px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px calc((100vw - 1190px) / 2 + 28px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom span,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.footer-bottom div {
  display: flex;
  gap: 54px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 30;
  right: 34px;
  bottom: 30px;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  color: #fff;
  background: #21d66b;
  border: 5px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(6, 22, 43, 0.28);
}

.floating-whatsapp i {
  font-size: 50px;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 170px 1fr 170px;
    gap: 18px;
    padding: 0 28px;
  }

  .main-nav {
    gap: 22px;
    font-size: 13px;
  }

  .hero-inner,
  .location,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .chat-preview {
    display: none;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps,
  .diff-grid,
  .trust-band {
    grid-template-columns: 1fr;
  }

  .step-arrow {
    display: none;
  }

  .trust-item,
  .diff-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(20, 62, 91, 0.18);
  }

  .zion-banner {
    grid-template-columns: minmax(390px, 1fr) minmax(260px, 340px) 176px;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 82px;
    grid-template-columns: 1fr auto;
    padding: 0 18px;
  }

  .brand {
    width: 132px;
    height: 64px;
  }

  .brand img {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 20px;
  }

  .brand small {
    font-size: 7px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
  }

  .menu-toggle i {
    font-size: 24px;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .main-nav.open {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 8px 18px 18px;
    background: rgba(4, 19, 38, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .main-nav.open a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero {
    min-height: auto;
    padding-top: 82px;
  }

  .hero-bg-slot {
    top: 82px;
    width: 100%;
    height: 360px;
    opacity: 0.35;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 58px 22px 48px;
  }

  .hero h1 {
    font-size: 39px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-mark {
    position: static;
    width: 210px;
    margin-top: 34px;
  }

  .hero-actions,
  .final-cta,
  .final-cta div,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
    display: flex;
  }

  .partner-strip {
    grid-template-columns: 1fr;
  }

  .slider-arrow {
    display: none;
  }

  .section-pad,
  .section-narrow,
  .trust-band,
  .partner-strip,
  .final-cta,
  .footer-grid,
  .footer-bottom {
    padding-left: 22px;
    padding-right: 22px;
  }

  .card-grid,
  .location,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-title-line {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .section-title-line span {
    display: none;
  }

  .steps {
    display: grid;
    grid-template-columns: 1fr;
  }

  .step {
    padding-left: 42px;
  }

  .diff-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom div {
    gap: 18px;
    flex-wrap: wrap;
  }

  .floating-whatsapp {
    right: 20px;
    bottom: 20px;
    width: 68px;
    height: 68px;
  }

  .floating-whatsapp i {
    font-size: 38px;
  }

  .zion-banner-section {
    padding: 4px 22px 28px;
  }

  .zion-banner {
    grid-template-columns: 49% 51%;
    grid-template-rows: 112px 44px;
    height: auto;
  }

  .zion-banner-art {
    width: 100%;
    object-position: center 39%;
  }

  .zion-banner-copy {
    grid-column: 2;
    grid-row: 1;
    gap: 4px;
    padding: 12px 12px 12px 8px;
  }

  .zion-banner-copy small {
    font-size: 10px;
  }

  .zion-banner-copy strong {
    font-size: 15px;
    line-height: 1.23;
  }

  .zion-banner-button {
    grid-column: 1 / -1;
    grid-row: 2;
    min-height: 44px;
    margin: 0;
    border-radius: 0;
  }
}

/* Reference refinement: spacious white header and comfortable content rhythm. */
.site-header {
  height: var(--navbar-height);
  grid-template-columns: 72px minmax(0, 1fr) 196px;
  gap: 28px;
  padding: 0 40px;
  color: #071b35;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e5ebf1;
  backdrop-filter: none;
}

.brand { width: 72px; height: 72px; }
.brand img { flex-basis: 56px; width: 56px; height: 56px; filter: none; }
.site-header[data-reveal-brand-after-hero] .brand img {
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.site-header[data-reveal-brand-after-hero].is-past-hero .brand img {
  opacity: 1;
  transform: none;
}
.brand span { color: #071b35; }
.brand strong { font-size: 25px; }
.brand small { margin-top: 4px; font-size: 8px; }
.main-nav { justify-content: center; gap: clamp(22px, 2.4vw, 38px); font-size: 14px; }
.main-nav a { padding: 35px 0 31px; font-weight: 700; }
.main-nav a::after { bottom: 22px; height: 3px; background: #1a6a99; }
.main-nav a:hover::after, .main-nav a.active::after { width: 36px; }
.header-cta, .btn { min-height: 46px; padding: 0 26px; border-radius: 7px; font-size: 14px; }
.header-cta, .btn-primary { background: #1a6a99; box-shadow: 0 10px 20px rgba(18, 79, 113, 0.16); }
.header-cta { justify-self: end; min-width: 190px; }

.hero {
  min-height: 0;
  padding-top: var(--navbar-height);
  background: #041933;
}
.hero::before { inset: 88px 0 0; background: rgba(0, 15, 34, 0.1); }
.hero-bg-slot { display: none; }
.hero-inner {
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(560px, 1fr);
  gap: 0;
  min-height: 509px;
  padding: 0;
}
.hero-copy {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  max-width: 640px;
  padding: 0 32px 0 68px;
  transform: none;
}
.hero h1 { max-width: 590px; margin: 0 0 20px; font-size: clamp(40px, 3.8vw, 54px); }
.hero p { max-width: 470px; margin-bottom: 28px; font-size: 17px; line-height: 1.6; }
.hero-actions { gap: 20px; }
.hero-mark {
  grid-column: 1;
  grid-row: 1;
  align-self: stretch;
  justify-self: stretch;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-mark img {
  position: absolute;
  inset: auto;
  top: 57%;
  left: clamp(22px, 2.8vw, 46px);
  width: 120%;
  height: 120%;
  max-width: none;
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
  transform: translateY(-50%);
}

.trust-band {
  gap: 36px;
  padding: 30px calc((100vw - 1190px) / 2 + 28px);
  color: #071b35;
  background: #fff;
  border-top: 1px solid #edf1f5;
  border-bottom: 1px solid #edf1f5;
}
.trust-item { grid-template-columns: 54px 1fr; gap: 18px; min-height: 64px; padding-right: 28px; border-right-color: #dfe6ee; }
.trust-item i { color: #2f7788; font-size: 46px; }
.trust-item strong { margin-bottom: 7px; font-size: 17px; }
.trust-item span { color: #32445e; font-size: 14px; line-height: 1.5; }
.trust-item .trust-stat { display: flex; align-items: baseline; gap: 6px; }
.trust-item .trust-counter {
  display: inline;
  color: #071b35;
  font-size: 28px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.section-pad { padding: 46px calc((100vw - 1190px) / 2 + 28px); }
.solutions { padding-top: 58px; padding-bottom: 70px; background: #fff; }
.solutions h2, .section-title-line h2 { font-size: clamp(26px, 2.5vw, 32px); }
.card-grid { gap: 22px; margin-top: 34px; }
.solution-card { box-shadow: 0 5px 14px rgba(6, 22, 43, 0.12); }
.solution-img { height: 172px; }
.badge { padding: 7px 12px; font-size: 11px; }
.card-body { min-height: 134px; padding: 17px 20px 20px; }
.card-body h3 { margin-bottom: 6px; font-size: 20px; }
.card-body p { max-width: 265px; font-size: 14px; }
.image-slot::before { font-size: 10px; }
.image-slot i { font-size: 32px; }
.image-slot span { font-size: 13px; }

.partners { padding-top: var(--partners-top-gap); padding-bottom: 24px; }
.partners, .how, .differentials { background: #fff; }
.partner-swiper { width: 100%; padding: 4px 0 8px; overflow: hidden; }
.partner-swiper .swiper-wrapper { transition-timing-function: linear; }
.partner-swiper .swiper-slide { width: 176px; }
.partner-swiper .logo-card { height: 92px; padding: 8px; background: transparent; border: 0; border-radius: 0; }
.partner-swiper .partner-logo {
  max-width: 154px;
  max-height: 72px;
  filter: none;
  transform: scale(var(--logo-scale, 1));
  transform-origin: center;
}

/* Compensa as margens transparentes presentes nos arquivos quadrados. */
.partner-logo--amil { --logo-scale: 2.15; }
.partner-logo--bradesco { --logo-scale: 2.05; }
.partner-logo--sulamerica { --logo-scale: 2.05; }
.partner-logo--hapvida { --logo-scale: 2.75; }
.partner-logo--unimed { --logo-scale: 0.84; }
.partner-logo--porto { --logo-scale: 2.1; }
.partner-logo--allianz { --logo-scale: 0.98; }
.partner-logo--zurich { --logo-scale: 0.55; }
.partner-logo--tokio { --logo-scale: 2.1; }
.partner-logo--mapfre { --logo-scale: 0.96; }

.how { padding-top: 54px; padding-bottom: 56px; }
.section-title-line { gap: 30px; margin-bottom: 36px; }
.step h3, .diff-grid h3 { font-size: 19px; }
.step p, .diff-grid p { font-size: 15px; }
.differentials { padding-top: 38px; padding-bottom: 60px; }
.quote-section { padding-top: 68px; padding-bottom: 68px; }
.eyebrow { font-size: 15px; }
.location h2 { font-size: 36px; }
.location li { font-size: 16px; }
.map-open { font-size: 14px; }
.final-cta { padding-top: 34px; padding-bottom: 34px; }
.footer-grid { padding-top: 46px; padding-bottom: 42px; }
.footer p, .footer a { font-size: 15px; }
.footer h3 { font-size: 18px; }
.footer-bottom span, .footer-bottom a { font-size: 14px; }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 64px minmax(0, 1fr) 170px; gap: 16px; padding: 0 24px; }
  .main-nav { gap: 18px; font-size: 13px; }
  .header-cta { min-width: 166px; padding: 0 16px; }
  .hero-inner { grid-template-columns: minmax(0, 1fr) minmax(460px, 1fr); }
  .hero-copy { padding-left: 42px; padding-right: 24px; }
  .hero-mark { width: 100%; }
  .quote-section { grid-template-columns: 1fr; gap: 30px; }
  .quote-intro { position: static; padding-top: 0; }
  .quote-intro > p { max-width: 660px; }
}

@media (max-width: 760px) {
  :root {
    --navbar-height: 76px;
    --partners-top-gap: 61px;
  }
  .site-header {
    height: var(--navbar-height);
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    padding: 0 20px;
    background: #fff;
  }
  .brand { width: 44px; height: 58px; gap: 0; }
  .brand img { flex-basis: 42px; width: 42px; height: 42px; }
  .brand strong { font-size: 20px; }
  .brand small { font-size: 7px; }
  .brand span { color: #071b35; }
  .menu-toggle {
    justify-self: end;
    width: 44px;
    height: 44px;
    color: #071b35;
    background: #f1f5f9;
    border-color: #d8e2ed;
  }
  .main-nav.open { top: 76px; background: #fff; }
  .main-nav.open a { color: #071b35; border-bottom-color: #e5ebf1; }
  .main-nav.open a::after { display: none; }
  .hero { min-height: auto; padding-top: 76px; }
  .hero::before { inset: 76px 0 0; }
  .landing-page {
    --navbar-height: 0px;
  }
  .landing-page .site-header {
    top: 18px;
    right: 18px;
    left: auto;
    width: 48px;
    height: 48px;
    display: block;
    padding: 0;
    background: transparent;
    border: 0;
    pointer-events: none;
    backdrop-filter: none;
  }
  .landing-page .brand { display: none; }
  .landing-page .menu-toggle {
    width: 48px;
    height: 48px;
    color: #fff;
    background: rgba(4, 25, 51, 0.86);
    border-color: rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(0, 15, 34, 0.28);
    pointer-events: auto;
    backdrop-filter: blur(12px);
  }
  .landing-page .main-nav.open {
    position: fixed;
    top: 76px;
    right: 18px;
    left: 18px;
    padding: 8px 18px 18px;
    background: #fff;
    border: 1px solid #e5ebf1;
    border-radius: 12px;
    box-shadow: 0 18px 48px rgba(0, 15, 34, 0.2);
    pointer-events: auto;
  }
  .landing-page .main-nav.open a { color: #071b35; border-bottom-color: #e5ebf1; }
  .landing-page .hero { min-height: auto; padding-top: 0; }
  .landing-page .hero::before { inset: 0; }
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    min-height: auto;
    padding: 42px 24px 0;
  }
  .hero-copy, .hero-mark { grid-column: auto; grid-row: auto; }
  .hero-copy { max-width: none; padding: 0; transform: none; }
  .hero h1 { font-size: clamp(34px, 10.5vw, 40px); }
  .hero p { font-size: 17px; }
  .landing-page .hero-proof {
    display: none;
  }
  .hero-mark {
    justify-self: center;
    align-self: end;
    width: min(76vw, 292px);
    height: auto;
    margin-top: 0;
    overflow: visible;
  }
  .hero-mark img {
    position: relative;
    z-index: 1;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    transform: none;
  }
  .hero-actions { gap: 12px; }
  .hero-actions .btn { width: 100%; }
  .section-pad,
  .section-narrow,
  .trust-band,
  .final-cta,
  .footer-grid,
  .footer-bottom {
    padding-left: 24px;
    padding-right: 24px;
  }
  .trust-band { padding-top: 26px; padding-bottom: 26px; }
  .partners { padding-top: var(--partners-top-gap); padding-bottom: 20px; }
  .partners-label {
    margin-bottom: 18px;
    font-size: 13px;
    letter-spacing: 0.04em;
    line-height: 1.35;
  }
  .solutions { padding-top: 44px; padding-bottom: 52px; }
  .card-grid { grid-template-columns: 1fr; gap: 20px; }
  .card-grid:not(.is-expanded) .solution-card:nth-child(n + 4) { display: none; }
  .solutions-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 48px;
    margin-top: 24px;
    padding: 0 20px;
    color: #174f71;
    background: #fff;
    border: 1px solid #b9ccda;
    border-radius: 7px;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
  }
  .solutions-more i { font-size: 20px; transition: transform 180ms ease; }
  .solutions-more[aria-expanded="true"] i { transform: rotate(180deg); }
  .how { padding-top: 42px; padding-bottom: 46px; }
  .differentials { padding-top: 34px; padding-bottom: 48px; }
  .quote-section { padding-top: 46px; padding-bottom: 46px; }
  .quote-intro h2 { font-size: clamp(32px, 9.5vw, 36px); }
  .quote-intro > p { font-size: 16px; }
  .quote-form { padding: 22px 18px; }
  .quote-type-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quote-type-grid button { min-height: 104px; padding: 15px; }
  .quote-fields, .quote-contact-grid { grid-template-columns: 1fr; }
  .quote-email { grid-column: auto; }
  .quote-progress { gap: 8px; }
  .quote-step legend { font-size: 22px; }
  .quote-nav { align-items: stretch; flex-direction: column-reverse; }
  .quote-nav .btn, .quote-back { justify-content: center; width: 100%; }
  .partner-swiper .swiper-slide { width: 148px; }
  .partner-swiper .logo-card { height: 78px; }
  .partner-swiper .partner-logo { max-width: 132px; max-height: 62px; }
}
