:root {
  --ink: #07152d;
  --navy: #06182f;
  --navy-2: #08213b;
  --red: #e02026;
  --soft: #f4f6f9;
  --line: #d9dde5;
  --muted: #45505f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0;
}

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

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

.sprite {
  display: none;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.topbar {
  height: 92px;
  background: #ffffff;
  border-bottom: 1px solid rgba(7, 21, 45, 0.08);
}

.topbar-inner {
  width: 100%;
  height: 92px;
  margin: 0;
  padding: 0 34px;
  display: flex;
  align-items: center;
}

.brand {
  width: 210px;
  flex: 0 0 auto;
}

.brand img {
  width: 210px;
  height: 46px;
  display: block;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  color: #07152d;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.nav a {
  line-height: 1;
}

.top-cta {
  width: 148px;
  height: 36px;
  margin-left: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background: #bf151b;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(191, 21, 27, 0.16);
  font-size: 11px;
  font-weight: 800;
}

.hero {
  position: relative;
  height: 409px;
  overflow: hidden;
  background: #eef3f8;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 409px;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.98) 37%, rgba(255, 255, 255, 0.68) 51%, rgba(255, 255, 255, 0.12) 70%, rgba(255, 255, 255, 0) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 640px;
  padding-top: 29px;
  margin-left: 49px;
  color: var(--ink);
}

.hero h1 {
  font-size: 43px;
  line-height: 1.05;
  letter-spacing: -1.4px;
  font-weight: 900;
}

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

.hero-copy {
  margin-top: 16px;
  color: #111827;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 500;
}

.hero-checks {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.hero-checks li {
  position: relative;
  margin-top: 11px;
  padding-left: 30px;
  color: #07152d;
  font-size: 13px;
  font-weight: 600;
}

.hero-checks li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: -1px;
  width: 15px;
  height: 15px;
  border: 1.8px solid var(--red);
  border-radius: 50%;
}

.hero-checks li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 8px;
  height: 4px;
  border-left: 1.8px solid var(--red);
  border-bottom: 1.8px solid var(--red);
  transform: rotate(-45deg);
}

.hero-actions {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 27px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 5px;
  background: var(--red);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 9px 18px rgba(224, 32, 38, 0.2);
}

.btn span {
  font-size: 20px;
  line-height: 1;
}

.hero-btn {
  width: 242px;
  height: 40px;
  margin-top: 0;
  font-size: 12px;
}

.btn-secondary {
  width: 158px;
  height: 40px;
  border: 1px solid rgba(7, 21, 45, 0.55);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 7px 16px rgba(7, 21, 45, 0.08);
  font-size: 12px;
}

.hero-alert {
  position: absolute;
  z-index: 2;
  right: 60px;
  bottom: 35px;
  width: 560px;
  min-height: 114px;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px 34px;
  border-radius: 10px;
  background: #061d3a;
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(7, 21, 45, 0.32);
}

.hero-alert strong {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
}

.siren {
  position: relative;
  width: 57px;
  height: 57px;
  flex: 0 0 auto;
  color: var(--red);
}

.siren::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 18px;
  width: 33px;
  height: 28px;
  border: 5px solid currentColor;
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
}

.siren::after {
  content: "";
  position: absolute;
  left: 5px;
  bottom: 5px;
  width: 47px;
  height: 7px;
  border: 5px solid currentColor;
  border-top: 0;
  border-radius: 0 0 8px 8px;
}

.siren span,
.siren span::before,
.siren span::after {
  position: absolute;
  content: "";
  background: currentColor;
  border-radius: 999px;
}

.siren span {
  left: 26px;
  top: 0;
  width: 4px;
  height: 11px;
  box-shadow: -21px 24px 0 currentColor, 21px 24px 0 currentColor;
}

.siren span::before {
  left: -20px;
  top: 8px;
  width: 4px;
  height: 13px;
  transform: rotate(-45deg);
}

.siren span::after {
  left: 20px;
  top: 8px;
  width: 4px;
  height: 13px;
  transform: rotate(45deg);
}

.risk-strip {
  width: 100%;
  padding: 44px 70px 29px;
  background: #ffffff;
}

.risk-intro {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.risk-intro h2,
.services-intro h2 {
  color: var(--ink);
  font-size: 23px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.35px;
}

.risk-intro p {
  margin-top: 12px;
  color: #07152d;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 500;
}

.risk-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.risk-card {
  position: relative;
  min-height: 143px;
  padding: 0 44px;
  text-align: left;
}

.risk-card + .risk-card {
  border-left: 1px solid #d9dde5;
}

.risk-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #edf1f7;
  color: var(--red);
}

.risk-icon svg {
  width: 38px;
  height: 38px;
  stroke-width: 1.5;
}

.risk-card h3 {
  font-size: 13px;
  line-height: 1.1;
  font-weight: 900;
}

.risk-card p {
  margin-top: 10px;
  color: #07152d;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 500;
}

.services-section {
  width: 100%;
  padding: 28px 47px 44px;
  background: linear-gradient(180deg, #f2f5f9 0%, #ffffff 42%);
}

.services-intro {
  text-align: center;
  padding-top: 2px;
}

.services-intro p {
  margin-top: 12px;
  color: #07152d;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 500;
}

.services-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.service-card {
  min-height: 140px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 24px 18px 22px;
  border-radius: 7px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(7, 21, 45, 0.09);
}

.service-card svg {
  width: 52px;
  height: 52px;
  color: var(--red);
  stroke-width: 1.45;
}

.service-card h3 {
  font-size: 12px;
  line-height: 1.15;
  font-weight: 900;
}

.service-card p {
  margin-top: 15px;
  color: #07152d;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 500;
}

.access-audience {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 39% 1fr;
  gap: 34px;
  align-items: center;
}

.access-photo {
  position: relative;
  height: 166px;
  overflow: hidden;
  border-radius: 14px 36px 36px 14px;
  clip-path: polygon(0 0, 82% 0, 100% 100%, 0 100%);
  background: #e7ebf1;
}

.access-photo::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: 0;
  width: 55px;
  height: 55px;
  background: var(--red);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.access-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.access-copy h2 {
  font-size: 24px;
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.45px;
}

.access-copy p {
  max-width: 520px;
  margin-top: 12px;
  color: #07152d;
  font-size: 13px;
  line-height: 1.32;
  font-weight: 500;
}

.access-stats {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.access-stats div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.access-stats svg {
  width: 27px;
  height: 27px;
  color: var(--ink);
  stroke-width: 1.55;
  flex: 0 0 auto;
}

.access-stats strong {
  display: block;
  font-size: 11px;
  line-height: 1.15;
  font-weight: 900;
}


.assurance-panel {
  margin-top: 48px;
  min-height: 100px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr;
  gap: 28px;
  align-items: center;
  padding: 24px 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, #06182f 0%, #08233f 100%);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(7, 21, 45, 0.18);
}

.assurance-copy h2 {
  font-size: 24px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.assurance-copy h2 span {
  color: var(--red);
}

.assurance-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.assurance-list li {
  position: relative;
  margin: 9px 0;
  padding-left: 28px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
}

.assurance-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 14px;
  height: 14px;
  border: 1.8px solid var(--red);
  border-radius: 50%;
}

.assurance-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
  width: 7px;
  height: 4px;
  border-left: 1.8px solid var(--red);
  border-bottom: 1.8px solid var(--red);
  transform: rotate(-45deg);
}

.assurance-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.assurance-btn {
  width: 206px;
  height: 45px;
  justify-content: space-between;
  padding: 0 18px;
  font-size: 12px;
  box-shadow: none;
}

.content-grid {
  width: 100%;
  margin: 0;
  padding: 42px 50px;
  display: grid;
  grid-template-columns: minmax(0, 45%) minmax(0, 1fr);
  gap: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f6fa 100%);
}

.panel {
  min-height: 430px;
  height: auto;
  border-radius: 16px;
  padding: 36px 34px;
  overflow: hidden;
}

.panel h2 {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.45px;
}

.panel .red-rule.small {
  display: block;
  width: 48px;
  height: 3px;
  margin: 14px 0 20px;
  border-radius: 999px;
  background: var(--red);
}

.panel p {
  font-size: 12px;
  line-height: 1.48;
  font-weight: 500;
}

.panel p + p {
  margin-top: 10px;
}

.panel-light {
  background: #f4f6f9;
  box-shadow: inset 0 0 0 1px rgba(7, 21, 45, 0.05), 0 14px 30px rgba(7, 21, 45, 0.06);
}

.panel-dark {
  background:
    radial-gradient(circle at 85% 50%, rgba(30, 71, 106, 0.35), transparent 45%),
    linear-gradient(135deg, #06182f 0%, #08213b 100%);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(7, 21, 45, 0.16);
}

.check-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.check-list li {
  position: relative;
  min-height: 18px;
  padding-left: 23px;
  font-size: 11px;
  line-height: 1.55;
  font-weight: 500;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--red);
}

.check-list li::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 4px;
  width: 5px;
  height: 3px;
  border-left: 1.5px solid #ffffff;
  border-bottom: 1.5px solid #ffffff;
  transform: rotate(-45deg);
}

.check-list.light li {
  font-size: 12px;
  line-height: 1.63;
}

.note {
  height: 62px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 17px;
  border-radius: 10px;
  background: #e2e7ef;
}

.note svg {
  width: 38px;
  height: 38px;
  color: var(--ink);
  flex: 0 0 auto;
}

.note strong {
  font-size: 13px;
  line-height: 1.35;
  font-weight: 900;
}

.dark-note {
  height: 57px;
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.people-badge {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: #ffffff;
}

.people-badge svg {
  width: 31px;
  height: 31px;
  stroke-width: 0;
  fill: currentColor;
}

.dark-note strong {
  min-height: 55px;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 900;
}

.steps-section {
  width: 100%;
  margin: 42px 0 0;
  padding: 46px 50px 24px;
  text-align: center;
  background: linear-gradient(180deg, #f3f6fa 0%, #ffffff 100%);
}

.steps-section h2,
.audience-section h2 {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.45px;
}

.steps-section .red-rule.small,
.audience-section .red-rule.small {
  margin: 14px auto 20px;
}

.steps {
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.step-card {
  position: relative;
  min-height: 178px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 34px 28px 24px;
  border: 1px solid rgba(7, 21, 45, 0.08);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(7, 21, 45, 0.08);
  text-align: center;
}

.step-number {
  position: absolute;
  top: -18px;
  left: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #f3f6fa;
  border-radius: 50%;
  background: var(--red);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  transform: translateX(-50%);
}

.step-card svg {
  width: 48px;
  height: 48px;
  color: var(--red);
  flex: 0 0 auto;
  stroke-width: 1.6;
}

.step-card h3 {
  font-size: 14px;
  line-height: 1.1;
  font-weight: 900;
}

.step-card p {
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.42;
  font-weight: 600;
}

.step-arrow {
  display: none;
}

.audience-section {
  width: 100%;
  margin: 0;
  padding: 24px 50px 54px;
  text-align: center;
  background: #ffffff;
}

.audience-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.audience {
  min-height: 104px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 12px;
  border-radius: 12px;
  background: #f4f6f9;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(7, 21, 45, 0.05);
}

.audience svg {
  width: 34px;
  height: 34px;
  margin: 0 auto 10px;
  color: var(--red);
  stroke-width: 1.55;
}

.audience strong {
  display: block;
  font-size: 11px;
  line-height: 1.12;
  font-weight: 900;
}

footer {
  margin-top: 0;
  padding: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f3f6fa 100%);
}

.footer-main {
  min-height: 230px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.6fr);
  border-radius: 0;
  box-shadow: none;
}

.footer-about {
  padding: 32px 42px 26px;
  background:
    radial-gradient(circle at 80% 30%, rgba(17, 58, 94, 0.45), transparent 38%),
    linear-gradient(135deg, #06182f 0%, #08213b 100%);
  color: #ffffff;
}

.footer-contact {
  position: relative;
  padding: 34px 42px 28px;
  background: linear-gradient(135deg, #e7ebf1 0%, #f3f5f8 100%);
}

.footer-about h2,
.footer-contact h2 {
  font-size: 23px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.35px;
}

.footer-about .red-rule.small,
.footer-contact .red-rule.small {
  margin: 13px 0 15px;
}

.footer-about p {
  max-width: 363px;
  font-size: 11.4px;
  line-height: 1.24;
  font-weight: 500;
}

.footer-about p + p {
  margin-top: 7px;
}

.mr-logo {
  margin-top: 7px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.mr-logo span {
  width: 27px;
  height: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  background: var(--red);
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
}

.mr-logo strong {
  color: #ffffff;
  font-size: 21px;
  line-height: 1;
  font-weight: 900;
}

.footer-contact p {
  max-width: 370px;
  font-size: 11.5px;
  line-height: 1.32;
  font-weight: 500;
}

.footer-info {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding-right: 240px;
}

.footer-links,
.footer-details {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-links strong {
  color: var(--ink);
  font-size: 12px;
  line-height: 1.1;
  font-weight: 900;
}

.footer-links a {
  color: var(--ink);
  font-size: 11.5px;
  line-height: 1.15;
  font-weight: 700;
}

.contact-row {
  margin-top: 13px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--ink);
}

.footer-details .contact-row {
  margin-top: 0;
}

.footer-details .contact-row + .contact-row {
  margin-top: 10px;
}

.contact-row svg {
  width: 18px;
  height: 18px;
  color: var(--ink);
  stroke-width: 2.1;
}

.contact-row strong {
  font-size: 13px;
  font-weight: 900;
}

.footer-btn {
  position: absolute;
  right: 36px;
  bottom: 28px;
  width: 222px;
  height: 38px;
  justify-content: space-between;
  gap: 10px;
  padding: 0 15px 0 16px;
  font-size: 10.2px;
  line-height: 1;
  white-space: nowrap;
}

.footer-bar {
  height: 44px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--navy);
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-shield {
  width: 23px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}

.mini-shield svg {
  width: 23px;
  height: 23px;
  stroke-width: 1.45;
}

.footer-bar p {
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
}

@media (max-width: 900px) {
  .topbar,
  .hero,
  .risk-strip,
  .services-section,
  .content-grid,
  .steps-section,
  .audience-section,
  .footer-main {
    width: 100%;
  }

  .topbar {
    height: auto;
  }

  .topbar-inner {
    width: 100%;
    height: auto;
    padding: 18px 22px;
    flex-wrap: wrap;
    gap: 18px;
  }

  .nav {
    order: 3;
    width: 100%;
    margin-left: 0;
    justify-content: flex-end;
    gap: 18px;
    overflow-x: auto;
  }

  .top-cta {
    margin-left: auto;
  }

  .hero {
    min-height: 520px;
    height: auto;
  }

  .hero-photo {
    height: 100%;
    opacity: 0.42;
  }

  .hero-shade {
    background: rgba(255, 255, 255, 0.82);
  }

  .hero-content {
    width: auto;
    margin: 0;
    padding: 44px 28px 45px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-alert {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 0 28px 32px;
    width: auto;
  }

  .hero h1 {
    font-size: 42px;
  }

  .risk-grid,
  .content-grid,
  .audience-grid {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }

  .risk-strip {
    padding: 44px 20px 30px;
  }

  .risk-card {
    padding: 0 22px 24px;
  }

  .risk-card:nth-child(odd) {
    border-left: 0;
  }

  .services-section {
    padding: 28px 20px 44px;
  }

  .services-grid,
  .access-audience,
  .access-stats {
    grid-template-columns: 1fr 1fr;
  }

  .access-photo {
    clip-path: none;
  }

  .assurance-panel {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
  }

  .content-grid {
    padding: 32px 20px;
  }

  .steps {
    margin-left: 0;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .step-arrow {
    display: none;
  }

  .steps-section {
    padding: 40px 20px 24px;
  }

  .audience-section {
    padding: 24px 20px 40px;
  }

  .audience-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

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

  .footer-about,
  .footer-contact {
    padding: 28px;
  }

  .footer-info {
    grid-template-columns: 1fr;
    padding-right: 0;
  }

  .footer-bar {
    margin: 0;
  }

  .footer-btn {
    position: static;
    margin-top: 18px;
  }
}
