:root {
  --ink: #26323d;
  --ink-soft: #5f6f7a;
  --muted: #84919a;
  --line: #dbe9ef;
  --paper: #ffffff;
  --mist: #f3fbff;
  --cream: #fff9e8;
  --navy: #14578f;
  --blue: #2d8bd7;
  --teal: #26a7bd;
  --orange: #f49a31;
  --yellow: #ffe26b;
  --shadow: 0 18px 46px rgba(28, 105, 158, 0.13);
  --shadow-soft: 0 10px 24px rgba(28, 105, 158, 0.1);
  --radius: 22px;
  --container: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}
body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.spacer {
  margin-top: 20px !important;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled,
body.nav-open .site-header {
  background: #fff;
  border-bottom-color: rgba(220, 228, 236, 0.72);
  box-shadow: 0 8px 22px rgba(20, 87, 143, 0.08);
  backdrop-filter: blur(16px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 0;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transition: height 0.25s ease;
}

.site-header.is-scrolled::before,
body.nav-open .site-header::before {
  height: 5px;
}

.site-header__inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header__mobile-cta {
  display: none;
}

.brand {
  display: flex;
  align-items: center;
  width: 176px;
  min-width: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  padding: 10px 20px 14px;
  background: #fff;
  border-radius: 50px;
}

.brand__logo {
  width: 100%;
  height: auto;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.site-header.is-scrolled .global-nav,
body.nav-open .global-nav {
  color: var(--ink-soft);
  text-shadow: none;
}

.global-nav a {
  transition: color 0.2s ease, background 0.2s ease;
}

.global-nav a:hover {
  color: var(--blue);
}

.global-nav__cta {
  color: var(--ink) !important;
  background: var(--yellow);
  border-radius: 999px;
  padding: 10px 20px;
  box-shadow: 0 10px 22px rgba(0, 111, 99, 0.16);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #dff4ff;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(20, 87, 143, 0.36)), linear-gradient(90deg, rgba(13, 62, 104, 0.74), rgba(13, 62, 104, 0.2));
}

.hero__inner {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 90px 0 86px;
}

.hero__content {
  max-width: 820px;
  text-align: center;
}

.hero__eyebrow {
  display: block;
  margin: 0 0 20px;
  padding: 0 0 12px;
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
  border: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.58);
  border-radius: 0;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.28);
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 6.2vw, 84px);
  line-height: 1.18;
  font-weight: 900;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

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

.hero__lead {
  max-width: 680px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(18px, 2.1vw, 25px);
  font-weight: 800;
  line-height: 1.7;
}

.hero__button {
  margin-top: 34px;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  transform: translateX(-50%);
  animation: scroll-bounce 1.8s ease-in-out infinite;
}

.scroll-cue i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: rgba(45, 139, 215, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  backdrop-filter: blur(12px);
}

.cta-ribbon {
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

.cta-ribbon__inner {
  min-height: 118px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
}

.cta-ribbon p {
  margin: 0;
  color: #fff;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 900;
}

.cta-ribbon a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 360px;
  min-height: 66px;
  color: var(--ink);
  background: var(--yellow);
  border: 3px solid #fff4a8;
  border-radius: 999px;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.18);
  font-size: 19px;
  font-weight: 900;
}

@keyframes scroll-bounce {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 10px;
  }
}
.section {
  padding: 118px 0;
}

.section--soft {
  background: #f4fbff;
}

.section--navy {
  color: #fff;
  background: linear-gradient(135deg, rgba(20, 87, 143, 0.96), rgba(38, 167, 189, 0.9)), var(--navy);
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.section-title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.42;
  font-weight: 900;
}

.section-lead {
  margin: 10px 0 0;
  color: var(--ink-soft);
}

.section--navy .section-title,
.section--navy .section-kicker {
  color: #fff;
}

.section--navy p {
  color: rgba(255, 255, 255, 0.78);
}

.protection-plan {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #eaf8fc 0%, #f8fcfe 52%, #eef8ef 100%);
}

.protection-plan::before,
.protection-plan::after {
  position: absolute;
  width: 280px;
  height: 280px;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

.protection-plan::before {
  top: -160px;
  left: -130px;
  background: rgba(45, 139, 215, 0.08);
}

.protection-plan::after {
  right: -140px;
  bottom: -190px;
  background: rgba(38, 167, 189, 0.1);
}

.protection-plan .l-container {
  position: relative;
  z-index: 1;
}

.protection-plan__head {
  max-width: 860px;
  margin-inline: auto;
}

.protection-plan__head .section-title {
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.35;
}

.protection-plan__head .section-lead {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.9;
}

.protection-plan__requirements-panel {
  max-width: 1060px;
  margin: 48px auto 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d4eaf1;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.protection-plan__requirements article {
  position: relative;
  min-height: 226px;
  padding: 32px 24px 30px;
  text-align: center;
}

.protection-plan__requirements article + article::before {
  position: absolute;
  top: 32px;
  bottom: 32px;
  left: 0;
  width: 1px;
  content: "";
  background: #dcecf1;
}

.protection-plan__requirements span {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(45, 139, 215, 0.2);
  font-size: 25px;
}

.protection-plan__requirements article:nth-child(2) span {
  background: var(--teal);
}

.protection-plan__requirements article:nth-child(3) span {
  background: var(--navy);
}

.protection-plan__requirements strong {
  display: block;
  min-height: 64px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.65;
}

.protection-plan__requirements p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.protection-plan__connector {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  max-width: 1060px;
  min-height: 94px;
  margin: 0 auto;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
}

.protection-plan__connector::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 18px;
  content: "";
  background: #b9dce8;
  transform: translateX(-50%);
}

.protection-plan__connector span {
  margin-top: 8px;
}

.protection-plan__connector i {
  display: block;
  width: 0;
  height: 0;
  border-top: 24px solid var(--orange);
  border-right: 22px solid transparent;
  border-left: 22px solid transparent;
  filter: drop-shadow(0 4px 4px rgba(244, 154, 49, 0.2));
}

.protection-plan__result {
  display: grid;
  place-items: center;
  max-width: 1060px;
  min-height: 216px;
  margin: 0 auto;
  padding: 34px 28px;
  color: #fff;
  background: linear-gradient(145deg, var(--navy), #167a9a);
  border: 1px solid rgba(20, 87, 143, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.protection-plan__result i {
  display: inline-block;
  margin: 0 14px 0 0;
  color: var(--yellow);
  font-size: 38px;
  vertical-align: middle;
}

.protection-plan__result h3 {
  display: inline;
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.55;
  letter-spacing: 0.02em;
  vertical-align: middle;
}

.protection-plan__result strong {
  display: table;
  margin: 18px auto 0;
  padding: 6px 22px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 999px;
  font-size: 25px;
  line-height: 1.5;
}

.protection-plan__aftercare {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 920px;
  margin: 22px auto 0;
  padding: 20px 26px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid #d4eaf1;
  border-radius: 14px;
}

.protection-plan__aftercare > i {
  display: grid;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
  font-size: 22px;
}

.protection-plan__aftercare p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.85;
}

.protection-plan__aftercare strong {
  color: var(--navy);
  font-size: 19px;
}

.protection-plan__note {
  margin: 12px auto 0;
  max-width: 920px;
  color: #718391;
  font-size: 12px;
  line-height: 1.7;
}

.theft-compensation {
  padding: 88px 0 76px;
  background: radial-gradient(circle at 4% 18%, rgba(38, 167, 189, 0.1), transparent 27%), linear-gradient(180deg, #fff 0%, #f1f9fc 100%);
}

.theft-compensation__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.94fr);
  gap: 76px;
  align-items: end;
  margin-bottom: 32px;
}

.theft-compensation__heading .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.theft-compensation__heading .section-kicker::before {
  width: 26px;
  height: 3px;
  content: "";
  background: var(--orange);
}

.theft-compensation__heading .section-lead {
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.95;
}

.theft-compensation__flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(110deg, #082e50, #106795);
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(11, 64, 100, 0.16);
  list-style: none;
}

.theft-compensation__flow::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  content: "";
  background: var(--yellow);
}

.theft-compensation__flow li {
  position: relative;
  min-height: 122px;
  padding: 28px 24px 22px 88px;
}

.theft-compensation__flow li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.theft-compensation__flow li + li::before {
  position: absolute;
  top: 48px;
  left: -10px;
  width: 19px;
  height: 19px;
  content: "";
  background: var(--yellow);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.theft-compensation__step-number {
  position: absolute;
  top: 29px;
  left: 28px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #082e50;
  background: var(--yellow);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 700;
}

.theft-compensation__flow strong,
.theft-compensation__flow li > span:last-child {
  display: block;
}

.theft-compensation__flow strong {
  margin-bottom: 7px;
  font-size: 18px;
  letter-spacing: 0.035em;
}

.theft-compensation__flow li > span:last-child {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.65;
}

.theft-compensation__flow li:last-child strong {
  color: var(--yellow);
}

.theft-compensation__points-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin: 30px 0 13px;
}

.theft-compensation__points-heading h3 {
  margin: 0;
  color: var(--navy);
  font-size: 21px;
  letter-spacing: 0.04em;
}

.theft-compensation__points-heading p {
  margin: 0;
  color: #6b8190;
  font-size: 12px;
}

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

.theft-compensation__point {
  position: relative;
  min-height: 145px;
  padding: 24px 22px 20px 106px;
  background: #fff;
  border: 1px solid #c8e0eb;
  border-radius: 8px;
  box-shadow: 0 7px 18px rgba(25, 78, 107, 0.08);
}

.theft-compensation__point > span {
  position: absolute;
  top: 24px;
  left: 24px;
  display: grid;
  width: 61px;
  height: 61px;
  place-items: center;
  color: #fff;
  background: var(--navy);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 700;
}

.theft-compensation__point:nth-child(2) > span {
  background: var(--navy);
}

.theft-compensation__point:nth-child(3) > span {
  background: var(--navy);
}

.theft-compensation__point h3 {
  margin: 0 0 7px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.42;
}

.theft-compensation__point h3 strong {
  color: var(--orange);
  font-size: 24px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.theft-compensation__point p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.65;
}

.theft-compensation__pricing {
  margin-top: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #b8d3e1;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(28, 83, 114, 0.08);
}

.theft-compensation__pricing-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 13px 22px;
  color: #fff;
  background: var(--navy);
}

.theft-compensation__pricing-head h3,
.theft-compensation__pricing-head p {
  margin: 0;
}

.theft-compensation__pricing-head h3 {
  font-size: 16px;
  letter-spacing: 0.04em;
}

.theft-compensation__pricing-head p {
  color: #d5edf9;
  font-size: 12px;
  font-weight: 700;
}

.theft-compensation__pricing table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.theft-compensation__pricing th {
  padding: 10px 12px;
  color: #527488;
  background: #eef7fb;
  font-size: 12px;
  font-weight: 800;
}

.theft-compensation__pricing td {
  padding: 11px 12px;
  color: var(--ink);
  border-top: 1px solid #dcebf2;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

.theft-compensation__pricing th + th,
.theft-compensation__pricing td + td {
  border-left: 1px solid #dcebf2;
}

.theft-compensation__pricing td strong {
  color: var(--blue);
  font-size: 20px;
}

.theft-compensation__details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin: 18px 0 0;
  color: #5e7282;
  font-size: 12px;
}

.theft-compensation__details p {
  margin: 0;
  padding: 0 16px;
}

.theft-compensation__details p + p {
  border-left: 1px solid #c8dbe5;
}

.theft-compensation__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
}

.theft-compensation__foot p {
  margin: 0;
  color: #6b8090;
  font-size: 11px;
}

.button--theft {
  min-height: 0;
  padding: 13px 24px;
  flex: 0 0 auto;
  color: #fff;
  background: var(--orange);
  box-shadow: none;
  font-size: 13px;
}

.button--theft:hover {
  color: #fff;
  background: #d86c23;
  box-shadow: none;
}

.split-heading,
.coverage__head,
.why__grid,
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: center;
}

.section-head--center {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.intro {
  position: relative;
  color: #fff;
  background: radial-gradient(circle at 20% 88%, rgba(45, 139, 215, 0.32), transparent 34%), radial-gradient(circle at 80% 84%, rgba(38, 167, 189, 0.22), transparent 34%), linear-gradient(180deg, #071526 0%, #092544 58%, #0b4678 100%);
  overflow: hidden;
  isolation: isolate;
}

.intro::before,
.intro::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -36%;
  z-index: -1;
  width: 88vw;
  max-width: 1280px;
  aspect-ratio: 1/0.42;
  border: 1px dashed rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  transform: translateX(-50%);
}

.intro::after {
  bottom: -52%;
  width: 112vw;
  opacity: 0.7;
}

.intro__grid {
  display: block;
  max-width: 940px;
  text-align: center;
}

.intro .section-lead {
  display: grid;
  justify-items: center;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.intro__label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.intro__label i {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #071526;
  background: var(--yellow);
  border-radius: 50%;
  font-size: 14px;
}

.intro .section-kicker {
  display: block;
  margin: 0 0 18px;
  color: var(--yellow);
}

.intro .section-title {
  display: block;
  color: #fff;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.45;
  text-align: center;
}

.intro__text {
  display: block;
  max-width: 790px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 2.1;
  font-weight: 700;
}

.risk-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 92px;
  padding-top: 0;
  border-top: 0;
}

.service-tile,
.why-list div,
.contact-form,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.risk-card {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 300px;
  padding: 0 46px 12px;
  text-align: center;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.risk-card::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 0;
  bottom: 20px;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.risk-card:last-child::after {
  display: none;
}

.risk-card__label {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 16px;
  padding: 3px 12px;
  color: var(--blue);
  background: #eef9ff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.risk-card__icon {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  flex: 0 0 auto;
  margin: 0 0 30px;
  color: var(--yellow);
  background: radial-gradient(circle, rgba(255, 226, 107, 0.16), rgba(255, 226, 107, 0.04) 56%, transparent 58%), rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  font-size: 34px;
  box-shadow: none;
}

.service-tile span,
.why-list i {
  display: grid;
  place-items: center;
  color: #fff;
}

.service-tile .caution {
  display: inline-block;
  font-size: 8px;
  color: #909090;
}

.caution-block p {
  font-size: 12px;
}

.risk-card h3,
.service-tile h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.45;
  font-weight: 900;
}

.risk-card h3 {
  min-height: 0;
  max-width: 14em;
  color: #fff;
  font-size: 22px;
  line-height: 1.6;
}

.risk-card p,
.service-tile p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.risk-card p {
  max-width: none;
  color: rgba(255, 255, 255, 0.76);
  line-height: 2;
  font-size: 15px;
  font-weight: 700;
}

.service-tile span {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 50%;
  font-size: 22px;
}

.concern-list {
  display: grid;
  grid-template-columns: minmax(0, 860px);
  justify-content: center;
  gap: 16px;
  margin-top: 38px;
  padding: 0;
  border-top: 0;
}

.concern-list div {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 16px;
  min-height: 0;
  padding: 26px;
  color: var(--navy);
  background: #fff;
  border: 1px solid #cfe3ec;
  border-radius: 8px;
  box-shadow: none;
  font-weight: 800;
  text-align: left;
}

.concern-list div:nth-child(even) {
  margin-top: 0;
}

.concern-list div:nth-child(3) {
  background: #fff;
}

.concern-list strong {
  align-self: center;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.55;
}

.concern-list small {
  grid-column: 2;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}

.concern-list__check {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #d92727;
  background: #fff;
  border: 2px solid #d92727;
  border-radius: 4px;
  font-size: 16px;
  box-shadow: none;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: stretch;
  margin-top: 54px;
}

.service-visual {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.service-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.service-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(12, 54, 88, 0.86));
}

.service-visual figcaption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  z-index: 1;
  color: #fff;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 800;
}

.service-map {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.service-tile {
  position: relative;
  min-height: 270px;
  padding: 30px 28px;
  border-radius: 8px;
  overflow: hidden;
}

.service-tile small {
  display: block;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.photo-feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
  margin-top: 64px;
}

.photo-card {
  position: relative;
  aspect-ratio: 1/1.08;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #0e3558;
  box-shadow: var(--shadow);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px 18px;
  color: #fff;
  font-size: 14px;
  line-height: 1.7;
  background: rgba(13, 62, 104, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.photo-card figcaption span {
  display: block;
  margin-bottom: 4px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.contact__grid {
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
  align-items: flex-start;
  gap: 44px;
}

.contact__content {
  text-align: center;
}

.contact__content .section-lead {
  max-width: 760px;
  margin-inline: auto;
}

.coverage-story {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 48px;
  align-items: start;
  margin-top: 54px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.coverage-start {
  position: sticky;
  top: 110px;
}

.coverage-start__label {
  display: inline-block;
  margin: 0 0 18px;
  padding: 4px 12px;
  color: var(--navy) !important;
  background: var(--yellow);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.coverage-start p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 2;
  font-weight: 800;
}

.coverage-steps {
  position: relative;
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.coverage-steps::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 26px;
  left: 29px;
  width: 2px;
  background: rgba(255, 255, 255, 0.28);
}

.coverage-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 4px 24px;
  padding: 0 0 34px;
}

.coverage-steps li:last-child {
  padding-bottom: 0;
}

.coverage-steps span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  color: var(--navy);
  background: var(--yellow);
  border: 4px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 900;
}

.coverage-steps h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 900;
}

.coverage-steps p {
  grid-column: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.9;
}

.coverage-result:before {
  display: block;
  margin: 10px auto;
  content: "";
  width: 0;
  height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-top: 30px solid var(--yellow);
  margin-bottom: 30px;
}
.coverage-result {
  text-align: center;
  grid-column: 2;
  margin: 34px 0 0;
  padding: 22px 0 0;
  color: #fff !important;
  font-size: 24px;
  font-weight: 900;
}

.coverage__note {
  margin: 18px 0 0;
  font-size: 13px;
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 0;
  min-height: 176px;
  padding: 52px 34px;
  border-radius: 0;
}

.section-cta--light {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-inline: max(34px, (100vw - var(--container)) / 2 + 34px);
  overflow: hidden;
  background: linear-gradient(90deg, rgba(255, 226, 107, 0.22), transparent 36%), linear-gradient(135deg, #26323d 0%, #18222b 58%, #101820 100%);
  border-block: 1px solid rgba(255, 226, 107, 0.3);
  border-inline: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -1px 0 rgba(0, 0, 0, 0.18);
}

.section-cta p {
  margin: 0;
  color: #fff !important;
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.65;
  font-weight: 900;
}

.section-cta p span {
  display: block;
  margin-bottom: 4px;
  color: var(--yellow);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.section-cta--light .button {
  min-width: 240px;
  flex: 0 0 auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 28px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.button--primary {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.12);
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  margin: 12px 0 0;
  counter-reset: flow;
  list-style: none;
}

.flow-list li {
  position: relative;
  counter-increment: flow;
  min-height: 0;
  padding: 86px 30px 0 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.flow-list li::before {
  content: "0" counter(flow);
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(45, 139, 215, 0.2);
  font-size: 76px;
  line-height: 1;
  font-weight: 900;
}

.flow-list li::after {
  content: "";
  position: absolute;
  top: 48px;
  left: 64px;
  right: 20px;
  height: 2px;
  background: #cfe3ec;
}

.flow-list li:last-child::after {
  display: none;
}

.flow-list li:nth-child(even) {
  margin-top: 28px;
  background: transparent;
}

.flow-list i {
  display: none;
}

.flow-list strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.45;
}

.flow-list span {
  display: block;
  color: var(--ink-soft);
  font-size: 14px;
}

.why {
  padding: 138px 0;
}

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

.why__grid > div:first-child {
  max-width: 820px;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  border-top: 0;
}
.why-list div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  min-height: 236px;
  padding: 26px;
  border: 1px solid #cfe3ec;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.why-list i {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  color: var(--blue);
  background: #eef9ff;
  border: 1px solid #dbe9ef;
  border-radius: 50%;
  font-size: 30px;
}
.why-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.55;
  text-align: center;
}
.why-list span {
  color: var(--ink-soft);
  font-size: 14px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  transition: background 0.24s ease, transform 0.24s ease;
}

.faq-item[open] summary::after {
  content: "-";
  transform: rotate(180deg);
}

.faq-item__content {
  overflow: hidden;
  height: 0;
  transition: height 0.28s ease;
}

.faq-item[open] .faq-item__content {
  height: auto;
}

.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--ink-soft);
}

@media (prefers-reduced-motion: reduce) {
  .faq-item__content,
  .faq-item summary::after {
    transition: none;
  }
}
.contact {
  color: #fff;
  background: linear-gradient(135deg, rgba(20, 87, 143, 0.97), rgba(38, 167, 189, 0.9)), var(--navy);
}

.contact .section-title,
.contact .section-kicker {
  color: #fff;
}

.contact .section-lead {
  color: rgba(255, 255, 255, 0.8);
}

.contact-catch {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 28px;
  padding: 18px 20px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  font-weight: 800;
}

.contact-catch i {
  color: var(--yellow);
  padding-top: 5px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 34px;
  color: var(--ink);
  border-radius: 8px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.contact-form em {
  margin-left: 6px;
  color: var(--orange);
  font-style: normal;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 13px 14px;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(36, 111, 168, 0.16);
  border-color: var(--blue);
}

.form-wide,
.form-note,
.form-alert {
  grid-column: 1/-1;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.form-alert {
  padding: 14px 16px;
  color: #15543b;
  background: #e7f5ef;
  border: 1px solid #b5decf;
  border-radius: 8px;
  font-size: 13px;
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.62);
  background: #123d63;
  font-size: 12px;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
}

.site-footer strong {
  color: #fff;
  font-size: 16px;
}

.site-footer p {
  margin: 6px 0 0;
}

@media (max-width: 980px) {
  .protection-plan__result {
    padding: 28px 24px 30px;
  }
  .theft-compensation__heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .theft-compensation__flow li {
    padding: 28px 16px 22px 76px;
  }
  .theft-compensation__step-number {
    left: 18px;
  }
  .theft-compensation__flow strong {
    font-size: 16px;
  }
  .theft-compensation__point {
    padding-inline: 18px 16px;
  }
  .theft-compensation__point > span {
    position: static;
    width: auto;
    height: auto;
    margin-bottom: 16px;
    color: var(--navy);
    background: transparent;
    border-radius: 0;
    font-size: 17px;
  }
  .theft-compensation__point:nth-child(2) > span,
  .theft-compensation__point:nth-child(3) > span {
    color: var(--orange);
    background: transparent;
  }
  .theft-compensation__point:nth-child(3) > span {
    color: var(--blue);
  }
  .split-heading,
  .coverage__head,
  .why__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .risk-grid,
  .service-map {
    grid-template-columns: 1fr 1fr;
  }
  .risk-grid {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }
  .risk-card {
    min-height: 0;
    padding: 0 0 34px;
  }
  .risk-card::after {
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: 1px;
  }
  .service-layout {
    grid-template-columns: 1fr;
  }
  .coverage-story {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .coverage-start {
    position: static;
  }
  .coverage-result {
    grid-column: auto;
  }
  .section-title br {
    display: none;
  }
  .flow-list {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .flow-list li {
    padding: 0 0 0 72px;
  }
  .flow-list li::before {
    left: 0;
    top: 6px;
    font-size: 42px;
  }
  .flow-list li::after {
    top: 58px;
    left: 18px;
    right: auto;
    bottom: -24px;
    width: 2px;
    height: auto;
  }
  .service-tile:nth-child(1),
  .service-tile:nth-child(2),
  .service-tile:nth-child(3),
  .service-tile:nth-child(4) {
    grid-column: auto;
    min-height: 270px;
  }
  .flow-list li:nth-child(even) {
    transform: none;
    margin-top: 0;
  }
  .photo-feature {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  body {
    padding-bottom: calc(86px + env(safe-area-inset-bottom));
  }
  .l-container {
    width: min(100% - 28px, var(--container));
  }
  .site-header__inner {
    min-height: 64px;
  }
  .brand {
    width: 150px;
  }
  .site-header__mobile-cta {
    display: inline-flex;
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    z-index: 40;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 13px 18px;
    color: var(--ink);
    background: var(--yellow);
    border-radius: 999px;
    box-shadow: 0 6px 0 rgba(20, 87, 143, 0.18), 0 14px 32px rgba(20, 87, 143, 0.2);
    font-size: 17px;
    font-weight: 900;
    white-space: nowrap;
  }
  .nav-toggle {
    display: none;
  }
  .global-nav {
    line-height: 1em;
  }
  .global-nav a {
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 5px;
  }
  /*
    .global-nav {
      position: fixed;
      inset: 64px 14px auto;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: 12px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .global-nav.is-open {
      display: flex;
    }

    .global-nav a {
      padding: 14px;
    }
  */
  .hero::before {
    background: linear-gradient(180deg, rgba(20, 87, 143, 0.68), rgba(20, 87, 143, 0.48)), rgba(38, 167, 189, 0.18);
  }
  .hero__inner {
    place-items: center;
    text-align: center;
    padding-top: 92px;
  }
  .hero h1 {
    font-size: clamp(37px, 10.5vw, 44px);
    line-height: 1.32;
  }
  .hero__eyebrow {
    font-size: 13px;
  }
  .hero__lead {
    font-size: 18px;
  }
  .section {
    padding: 68px 0;
  }
  .protection-plan__head .section-lead {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.85;
  }
  .protection-plan__requirements-panel {
    margin-top: 32px;
    border-radius: 16px;
  }
  .protection-plan__result {
    border-radius: 16px;
  }
  .protection-plan__requirements {
    grid-template-columns: 1fr;
  }
  .protection-plan__requirements article {
    display: grid;
    grid-template-columns: 50px 1fr;
    column-gap: 15px;
    min-height: 0;
    padding: 19px 20px;
    text-align: left;
  }
  .protection-plan__requirements article + article::before {
    top: 0;
    right: 20px;
    bottom: auto;
    left: 20px;
    width: auto;
    height: 1px;
  }
  .protection-plan__requirements span {
    grid-row: span 2;
    width: 50px;
    height: 50px;
    margin: 3px 0 0;
    font-size: 21px;
  }
  .protection-plan__requirements strong {
    min-height: 0;
    font-size: 17px;
    line-height: 1.55;
  }
  .protection-plan__requirements p {
    margin-top: 4px;
    font-size: 12px;
  }
  .protection-plan__connector {
    min-height: 82px;
  }
  .protection-plan__connector::before {
    height: 14px;
  }
  .protection-plan__result h3 {
    font-size: 22px;
  }
  .protection-plan__result i {
    display: block;
    margin: 0 auto 8px;
    font-size: 28px;
  }
  .protection-plan__result h3 {
    display: block;
  }
  .protection-plan__result strong {
    margin-top: 12px;
    font-size: 21px;
  }
  .protection-plan__aftercare {
    align-items: flex-start;
    gap: 12px;
    margin-top: 16px;
    padding: 16px;
  }
  .protection-plan__aftercare > i {
    width: 40px;
    height: 40px;
    font-size: 17px;
  }
  .protection-plan__aftercare p {
    font-size: 14px;
  }
  .protection-plan__aftercare strong {
    font-size: 16px;
  }
  .protection-plan__note {
    margin-top: 9px;
    font-size: 11px;
  }
  .theft-compensation {
    padding: 68px 0;
  }
  .theft-compensation__heading {
    gap: 20px;
    margin-bottom: 26px;
  }
  .theft-compensation__heading .section-lead {
    font-size: 15px;
    line-height: 1.85;
  }
  .theft-compensation__flow {
    grid-template-columns: 1fr;
  }
  .theft-compensation__flow li {
    min-height: 0;
    padding: 22px 24px 20px 80px;
  }
  .theft-compensation__flow li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }
  .theft-compensation__flow li + li::before {
    top: -10px;
    left: 42px;
    transform: rotate(90deg);
  }
  .theft-compensation__step-number {
    top: 20px;
    left: 22px;
    width: 40px;
    height: 40px;
    font-size: 15px;
  }
  .theft-compensation__flow strong {
    font-size: 17px;
  }
  .theft-compensation__points-heading {
    display: block;
    margin-top: 28px;
  }
  .theft-compensation__points-heading h3 {
    font-size: 19px;
    line-height: 1.55;
  }
  .theft-compensation__points-heading p {
    margin-top: 5px;
  }
  .theft-compensation__points {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .theft-compensation__point {
    min-height: 0;
    padding: 20px 20px 20px 78px;
  }
  .theft-compensation__point > span {
    position: absolute;
    top: 20px;
    left: 20px;
    display: grid;
    width: 42px;
    height: 42px;
    margin: 0;
    place-items: center;
    color: #fff;
    background: var(--navy);
    border-radius: 50%;
    font-family: Georgia, serif;
    font-size: 16px;
  }
  .theft-compensation__point:nth-child(2) > span {
    color: #fff;
    background: var(--orange);
  }
  .theft-compensation__point:nth-child(3) > span {
    color: #fff;
    background: var(--blue);
  }
  .theft-compensation__point h3 {
    font-size: 16px;
  }
  .theft-compensation__point h3 strong {
    font-size: 21px;
  }
  .theft-compensation__pricing-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    padding: 13px 16px;
  }
  .theft-compensation__pricing-head h3 {
    font-size: 15px;
  }
  .theft-compensation__pricing th {
    padding: 9px 5px;
    font-size: 11px;
  }
  .theft-compensation__pricing td {
    padding: 10px 5px;
    font-size: 13px;
  }
  .theft-compensation__pricing td strong {
    font-size: 15px;
  }
  .theft-compensation__details {
    display: grid;
    justify-content: start;
    gap: 5px;
    font-size: 11px;
  }
  .theft-compensation__details p {
    padding: 0;
  }
  .theft-compensation__details p + p {
    border-left: 0;
  }
  .theft-compensation__foot {
    display: grid;
    gap: 16px;
  }
  .theft-compensation__foot p {
    font-size: 11px;
  }
  .button--theft {
    width: 100%;
    min-height: 56px;
  }
  .cta-ribbon__inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px 0 26px;
    text-align: center;
  }
  .cta-ribbon a {
    width: 100%;
    min-width: 0;
    min-height: 60px;
    font-size: 17px;
  }
  .risk-grid,
  .service-map,
  .concern-list,
  .why-list,
  .contact-form,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }
  .flow-list {
    grid-template-columns: 1fr;
  }
  .risk-grid {
    gap: 28px;
  }
  .risk-card,
  .concern-list div,
  .why-list div {
    min-height: 0;
  }
  .why-list div {
    grid-template-columns: auto 1fr;
    gap: 6px 16px;
    padding: 28px;
  }
  .why-list i {
    grid-row: span 2;
    margin: 4px 0 0;
  }
  .concern-list div:nth-child(even) {
    margin-top: 0;
  }
  .concern-list {
    gap: 0;
  }
  .concern-list {
    gap: 14px;
  }
  .concern-list div {
    grid-template-columns: auto 1fr;
    padding: 24px;
  }
  .concern-list__check {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }
  .coverage-story {
    margin-top: 40px;
    padding-top: 28px;
  }
  .coverage-steps li {
    grid-template-columns: 48px 1fr;
    gap: 4px 16px;
    align-items: center;
  }
  .coverage-steps::before {
    left: 23px;
  }
  .coverage-steps span {
    width: 48px;
    height: 48px;
    font-size: 14px;
  }
  .coverage-steps h3 {
    font-size: 18px;
  }
  .section-cta {
    display: grid;
    min-height: 260px;
    align-content: center;
    padding-block: 52px;
  }
  .section-cta .button,
  .contact-form .button {
    width: 100%;
  }
  .photo-card figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}/*# sourceMappingURL=style.css.map */
