:root {
  --navy: #123953;
  --navy-deep: #09283b;
  --blue: #286487;
  --blue-soft: #dce9ec;
  --ink: #173f59;
  --muted: #617986;
  --paper: #f8f5ef;
  --paper-deep: #eee8dd;
  --mist: #eaf1f1;
  --white: #ffffff;
  --gold: #bd9b5d;
  --gold-deep: #927039;
  --line: #d7e1e2;
  --shadow: 0 22px 55px rgba(9, 40, 59, 0.12);
  --serif: Georgia, "Songti SC", "STSong", "SimSun", serif;
  --display-serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "STZhongsong", "STSong", "SimSun", serif;
  --sans: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body:has(dialog[open]) {
  overflow: hidden;
}

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

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: -100px;
  left: 18px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--navy);
  color: var(--white);
}

.skip-link:focus {
  top: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(215, 225, 226, 0.82);
  background: rgba(248, 245, 239, 0.94);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(9, 40, 59, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 38px));
  min-height: 86px;
  margin-inline: auto;
  gap: 28px;
}

.brand-lockup {
  flex: 0 1 310px;
  min-width: 230px;
  text-decoration: none;
}

.brand-lockup img {
  width: 100%;
  height: 74px;
  object-fit: contain;
  object-position: left center;
}

.primary-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 1.65vw, 25px);
}

.primary-navigation a {
  position: relative;
  color: #355b6e;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.primary-navigation a:not(.english-link)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.primary-navigation a:hover::after,
.primary-navigation a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.english-link {
  padding: 7px 10px;
  border: 1px solid #a9bbc1;
  color: var(--navy);
  font-size: 11px !important;
  letter-spacing: 0.06em;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-bottom: 48px;
  background:
    radial-gradient(circle at 76% 34%, rgba(189, 155, 93, 0.18), transparent 24%),
    linear-gradient(120deg, #fbfaf7 0%, #f7f3ea 48%, #dfeaec 100%);
}

.hero::before {
  position: absolute;
  top: -285px;
  right: -210px;
  z-index: -2;
  width: 730px;
  height: 730px;
  border: 1px solid rgba(40, 100, 135, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 92px rgba(40, 100, 135, 0.028),
    0 0 0 190px rgba(40, 100, 135, 0.018);
  content: "";
}

.hero-compass {
  position: absolute;
  top: 52px;
  right: max(24px, calc((100vw - 1180px) / 2 - 20px));
  z-index: -1;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(18, 57, 83, 0.13);
  border-radius: 50%;
  color: rgba(18, 57, 83, 0.25);
}

.hero-compass::before,
.hero-compass::after {
  position: absolute;
  background: rgba(18, 57, 83, 0.11);
  content: "";
}

.hero-compass::before {
  top: 50%;
  right: 16px;
  left: 16px;
  height: 1px;
}

.hero-compass::after {
  top: 16px;
  bottom: 16px;
  left: 50%;
  width: 1px;
}

.hero-compass span {
  position: absolute;
  left: 50%;
  font: 10px var(--sans);
  letter-spacing: 0.14em;
  transform: translateX(-50%);
}

.hero-compass .north {
  top: 8px;
}

.hero-compass .south {
  bottom: 7px;
}

.hero-compass i {
  position: absolute;
  top: 34px;
  left: 50%;
  width: 18px;
  height: 112px;
  background: linear-gradient(to bottom, var(--gold) 0 50%, var(--navy) 50%);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  opacity: 0.42;
  transform: translateX(-50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  min-height: 585px;
  gap: 70px;
  padding: 70px 0 44px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.claims-copy h2,
.about-copy h2,
.contact-copy h2,
.provider-heading h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero h1 {
  max-width: 640px;
  font-family: var(--display-serif);
  font-size: clamp(40px, 4vw, 50px);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: 0.035em;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero h1 .hero-title-accent {
  color: var(--gold-deep);
}

.hero-lead {
  max-width: 600px;
  margin: 22px 0 30px;
  color: #4e6a77;
  font-size: 16px;
  line-height: 1.9;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(9, 40, 59, 0.14);
}

.button-primary:hover {
  background: var(--navy-deep);
}

.button-quiet {
  border-color: #aebdc2;
  background: transparent;
  color: var(--navy);
}

.button-gold {
  background: var(--gold);
  color: var(--navy-deep);
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 31px;
  color: #5e7681;
  font-size: 12px;
}

.hero-assurances span::before {
  margin-right: 7px;
  color: var(--gold);
  content: "✦";
}

.hero-adviser {
  position: relative;
  align-self: end;
  min-height: 480px;
}

.portrait-frame {
  position: absolute;
  right: 38px;
  bottom: 0;
  width: min(390px, 88%);
  height: 465px;
  overflow: hidden;
  border-radius: 210px 210px 8px 8px;
  background: #bdcfd0;
  box-shadow: 18px 20px 0 rgba(189, 155, 93, 0.16);
}

.portrait-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 40, 59, 0.18), transparent 45%);
  content: "";
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  filter: saturate(0.94) contrast(1.02);
}

.adviser-card {
  position: absolute;
  right: 0;
  bottom: 33px;
  width: min(300px, 72%);
  padding: 20px 23px;
  border-left: 4px solid var(--gold);
  background: rgba(9, 40, 59, 0.96);
  color: var(--white);
  box-shadow: var(--shadow);
}

.adviser-card > span {
  color: #d9be87;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.adviser-card strong {
  display: block;
  margin-top: 5px;
  font: 24px var(--serif);
}

.adviser-card small {
  display: block;
  color: #c6d7dd;
  font-size: 10px;
  letter-spacing: 0.04em;
}

.adviser-card p {
  margin: 12px 0 0;
  color: #e9f0f2;
  font-size: 11px;
  letter-spacing: 0.09em;
}

.mobile-wechat-qr {
  display: none;
}

.protection-story {
  overflow: hidden;
  margin-top: 4px;
  margin-bottom: 20px;
  border: 1px solid rgba(189, 155, 93, 0.42);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(9, 40, 59, 0.1);
}

.protection-story-heading {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: end;
  gap: 55px;
  padding: 30px 34px 28px;
}

.protection-story-heading .eyebrow {
  margin-bottom: 8px;
}

.protection-story-heading h2 {
  margin: 0;
  color: var(--navy);
  font: 31px/1.35 var(--serif);
}

.protection-story-heading > p {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 14px;
}

.protection-story-image {
  overflow: hidden;
  aspect-ratio: 2.62 / 1;
  background: var(--navy-deep);
}

.protection-story-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}

.protection-story-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--line);
  gap: 1px;
}

.protection-story-steps > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 3px 13px;
  padding: 22px 25px;
  background: #fbfcfa;
}

.protection-story-steps span {
  grid-row: 1 / 3;
  color: var(--gold);
  font: 22px/1 var(--serif);
}

.protection-story-steps strong {
  color: var(--navy);
  font-size: 14px;
}

.protection-story-steps p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 11px;
}

@media (min-width: 821px) {
  .protection-story {
    width: min(1180px, calc(100% - 48px));
  }

  .protection-story-heading {
    padding: 27px 32px 24px;
  }

  .protection-story-image {
    aspect-ratio: 3.05 / 1;
  }

  .protection-story-image img {
    object-position: center 55%;
  }

  .protection-story-steps {
    position: relative;
    z-index: 2;
    gap: 14px;
    margin: -26px 22px 22px;
    background: transparent;
  }

  .protection-story-steps > div {
    min-height: 132px;
    grid-template-columns: 42px 1fr;
    gap: 7px 13px;
    padding: 22px 22px 21px;
    border: 1px solid rgba(189, 155, 93, 0.34);
    border-top: 3px solid var(--gold);
    background: var(--navy);
    box-shadow: 0 14px 28px rgba(9, 40, 59, 0.2);
  }

  .protection-story-steps span {
    padding-top: 2px;
    color: #dfbd78;
    font-size: 27px;
  }

  .protection-story-steps strong {
    color: var(--white);
    font: 600 17px/1.45 var(--display-serif);
    letter-spacing: 0.03em;
  }

  .protection-story-steps p {
    margin-top: 0;
    color: #d8e5e9;
    font-size: 13px;
    line-height: 1.66;
  }
}

.philosophy-shell {
  position: relative;
  display: grid;
  grid-template-columns: 185px 1fr 132px;
  align-items: center;
  min-height: 184px;
  padding: 24px 26px;
  border: 1px solid rgba(189, 155, 93, 0.42);
  background: rgba(255, 255, 255, 0.79);
  box-shadow: 0 17px 38px rgba(9, 40, 59, 0.07);
  backdrop-filter: blur(12px);
}

.philosophy-label {
  padding-right: 20px;
  border-right: 1px solid var(--line);
}

.philosophy-label span,
.philosophy-label small {
  display: block;
}

.philosophy-label span {
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.philosophy-label small {
  margin-top: 5px;
  color: #86999f;
  font-size: 9px;
}

.philosophy-stage {
  position: relative;
  min-height: 136px;
  padding: 0 28px;
}

.philosophy-slide {
  position: absolute;
  inset: 50% 28px auto;
  margin: 0;
  padding-left: 21px;
  border-left: 2px solid rgba(189, 155, 93, 0.72);
  color: var(--navy);
  font-family: var(--display-serif);
  font-size: clamp(16px, 1.42vw, 18px);
  font-weight: 500;
  line-height: 1.82;
  letter-spacing: 0.018em;
  opacity: 0;
  transform: translateY(calc(-50% + 8px));
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.philosophy-slide.is-active {
  opacity: 1;
  transform: translateY(-50%);
}

.philosophy-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 11px;
}

.philosophy-controls button {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid #bccacc;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
}

.philosophy-counter {
  display: flex;
  align-items: baseline;
  justify-content: center;
  min-width: 48px;
  color: #8ca0a8;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.philosophy-counter span:first-child {
  color: var(--gold-deep);
  font: 17px var(--serif);
}

.philosophy-counter i {
  margin: 0 4px;
  font-style: normal;
}

.trust-bar {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

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

.trust-grid div {
  display: flex;
  align-items: center;
  min-height: 88px;
  gap: 14px;
  padding: 18px 24px;
  border-right: 1px solid var(--line);
}

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

.trust-grid b {
  color: var(--gold);
  font: 21px var(--serif);
}

.trust-grid span {
  color: #57717c;
  font-size: 12px;
  line-height: 1.55;
}

.section {
  padding: 104px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  align-items: end;
  gap: 80px;
}

.section-heading h2,
.claims-copy h2,
.about-copy h2,
.contact-copy h2,
.provider-heading h2 {
  font-size: clamp(34px, 3.3vw, 47px);
  line-height: 1.35;
}

.section-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 14px;
}

.service-categories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.service-category {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(189, 155, 93, 0.38);
  background:
    radial-gradient(circle at 92% 8%, rgba(40, 100, 135, 0.58), transparent 43%),
    linear-gradient(145deg, #123953, #09283b 74%);
  color: var(--white);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-category:hover {
  z-index: 2;
  border-color: rgba(189, 155, 93, 0.62);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.service-category-primary {
  grid-column: 1 / -1;
}

.service-category-header {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 28px;
  min-height: 226px;
  padding: 34px;
}

.service-category-primary .service-category-header {
  min-height: 0;
}

.service-category-number {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: var(--gold);
  font: 30px var(--serif);
  line-height: 1;
}

.service-category-number small {
  color: #a9c0ca;
  font: 10px var(--sans);
  letter-spacing: 0.08em;
}

.service-category-copy {
  display: grid;
  grid-template-columns: minmax(210px, 0.85fr) minmax(260px, 1.15fr);
  gap: 42px;
}

.service-category:not(.service-category-primary) .service-category-copy {
  grid-template-columns: 1fr;
  gap: 15px;
}

.service-category-kicker {
  margin: 0 0 8px !important;
  color: #d8bd87 !important;
  font-size: 10px !important;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.service-category h3 {
  margin: 0;
  color: var(--white);
  font: 29px/1.35 var(--serif);
}

.service-category-copy > p {
  margin: 0;
  color: #c7d9df;
  font-size: 14px;
}

.personal-cover-types {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.cover-type {
  min-height: 204px;
  padding: 27px 22px;
  background: #f7f9f8;
}

.cover-type span {
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.11em;
}

.cover-type h4 {
  margin: 18px 0 10px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.45;
}

.cover-type p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.service-category-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0 34px 31px 138px;
  color: #f0d49b;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.service-category:not(.service-category-primary) .service-category-link {
  margin-top: -9px;
}

.service-category-link:hover {
  color: var(--white);
}

.service-category-link span {
  transition: transform 0.18s ease;
}

.service-category-link:hover span {
  transform: translateX(3px);
}

.claims-section {
  padding: 98px 0 78px;
  background:
    linear-gradient(115deg, rgba(40, 100, 135, 0.12), transparent 48%),
    var(--navy-deep);
  color: var(--white);
}

.claims-intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 95px;
}

.eyebrow-light {
  color: #d9b974;
}

.claims-copy h2 {
  color: var(--white);
}

.claims-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 19px 0 26px;
  color: #c6d7dd;
  font-size: 15px;
}

.claims-steps {
  margin: 0;
  padding: 0 0 0 25px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  list-style: none;
}

.claims-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 17px;
  padding: 14px 0;
}

.claims-steps li::before {
  position: absolute;
  top: 27px;
  left: -29px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.claims-steps span {
  color: #dabd84;
  font: 17px var(--serif);
}

.claims-steps b,
.claims-steps small {
  display: block;
}

.claims-steps b {
  color: #f4f8f9;
  font-size: 15px;
}

.claims-steps small {
  margin-top: 2px;
  color: #9fb8c2;
  font-size: 12px;
}

.claim-portal {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  margin-top: 72px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}

.claim-portal-copy {
  padding: 42px 45px;
}

.portal-kicker {
  margin: 0;
  color: var(--gold-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.claim-portal h3 {
  margin: 11px 0 12px;
  color: var(--navy);
  font: 29px/1.35 var(--serif);
}

.claim-portal-copy > p:not(.portal-kicker) {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.claim-portal ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 19px;
  margin: 22px 0 0;
  padding: 0;
  color: #56717d;
  font-size: 11px;
  list-style: none;
}

.claim-portal li::before {
  margin-right: 6px;
  color: var(--gold);
  content: "✓";
}

.claim-portal-action {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 38px;
  border-left: 1px solid var(--line);
  background: #ece8df;
}

.privacy-symbol {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 13px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-deep);
  font-size: 20px;
}

.claim-portal-action b {
  color: var(--navy);
  font-size: 15px;
}

.claim-portal-action p {
  margin: 5px 0 18px;
  color: var(--muted);
  font-size: 12px;
}

.claim-portal-action small {
  margin-top: 11px;
  color: #7b8b90;
  font-size: 9px;
}

.about-section {
  background: #eef3f1;
}

.about-copy h2.about-title {
  max-width: 650px;
  font-family: var(--display-serif);
  font-size: clamp(36px, 3.2vw, 46px);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: 0.025em;
}

.about-title-main,
.about-title-support {
  display: block;
}

.about-title-support {
  max-width: 520px;
  margin-top: 20px;
  padding-top: 17px;
  border-top: 1px solid rgba(146, 112, 57, 0.38);
  color: #426779;
  font-family: var(--sans);
  font-size: clamp(18px, 1.55vw, 22px);
  font-weight: 650;
  line-height: 1.55;
  letter-spacing: 0.055em;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 90px;
}

.about-visual {
  position: relative;
  min-height: 530px;
}

.about-photo {
  position: relative;
  width: 88%;
  height: 500px;
}

.about-photo::before {
  position: absolute;
  inset: 26px -28px -26px 28px;
  border: 1px solid rgba(189, 155, 93, 0.62);
  content: "";
}

.about-photo img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  filter: saturate(0.92);
}

.experience-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 270px;
  padding: 24px;
  border-top: 3px solid var(--gold);
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.experience-card strong,
.experience-card span {
  display: block;
}

.experience-card strong {
  font: 22px var(--serif);
}

.experience-card span {
  margin-top: 5px;
  color: #c7d8dd;
  font-size: 11px;
}

.about-lead {
  color: #365d70 !important;
  font-size: 16px !important;
}

.about-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 14px;
}

.credentials {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  margin: 29px 0 20px;
  border-top: 1px solid #cbd8da;
  border-bottom: 1px solid #cbd8da;
}

.credentials div {
  padding: 17px 14px;
  border-right: 1px solid #cbd8da;
}

.credentials div:first-child {
  padding-left: 0;
}

.credentials div:last-child {
  border-right: 0;
}

.credentials small,
.credentials b {
  display: block;
}

.credentials small {
  color: #80959e;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.credentials b {
  margin-top: 4px;
  color: var(--navy);
  font-size: 12px;
}

.text-link {
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  margin-left: 4px;
}

.insights-section {
  background: var(--paper);
}

.insights-section .section-heading h2 {
  font-size: clamp(36px, 3vw, 42px);
  line-height: 1.4;
  letter-spacing: 0;
}

.insight-title-line {
  display: block;
  white-space: nowrap;
}

.insight-grid {
  display: grid;
  grid-template-columns: 1.28fr 0.86fr 0.86fr;
  gap: 17px;
  margin-top: 44px;
}

.insight-card {
  display: flex;
  flex-direction: column;
  min-height: 285px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.insight-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.insight-card-main {
  padding: 0;
  overflow: hidden;
  background: #e5eeee;
}

.insight-card-media {
  position: relative;
  display: block;
  height: 210px;
  overflow: hidden;
  background: #f7f8f8;
}

.insight-card-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(9, 40, 59, 0.18));
  content: "";
  pointer-events: none;
}

.insight-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.35s ease;
}

.insight-card-main:hover .insight-card-media img {
  transform: scale(1.025);
}

.insight-card-article {
  padding: 0;
  overflow: hidden;
}

.insight-card-article:hover .insight-card-media img {
  transform: scale(1.025);
}

.insight-card-media-small {
  height: 138px;
}

.insight-card-media-small img {
  object-position: 60% 42%;
}

.insight-card-data {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  align-items: end;
  gap: 13px;
  padding: 19px 20px 17px;
  background:
    radial-gradient(circle at 16% 13%, rgba(255, 255, 255, 0.14), transparent 28%),
    linear-gradient(132deg, #0d3047, #164b63);
  color: #fff;
}

.insight-card-data::after {
  background: linear-gradient(180deg, transparent 42%, rgba(4, 24, 37, 0.28));
}

.insight-card-data > span,
.insight-card-data > strong,
.insight-card-data > div {
  position: relative;
  z-index: 1;
}

.insight-card-data > span {
  align-self: start;
  color: #d4b46d;
  font: 700 12px/1.1 var(--sans);
  letter-spacing: 0.1em;
}

.insight-card-data > div {
  position: absolute;
  inset: 33px 19px 20px 34%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}

.insight-card-data > div i {
  position: absolute;
  bottom: 0;
  width: 9px;
  background: rgba(216, 184, 116, 0.55);
}

.insight-card-data > div i:nth-child(1) { left: 8%; height: 23%; }
.insight-card-data > div i:nth-child(2) { left: 29%; height: 42%; }
.insight-card-data > div i:nth-child(3) { left: 50%; height: 61%; }
.insight-card-data > div i:nth-child(4) { left: 71%; height: 91%; background: #d8b874; }

.insight-card-data > strong {
  align-self: end;
  color: #fff;
  font: 600 21px/1 var(--serif);
  text-align: right;
}

.insight-card-data > strong small {
  display: block;
  margin-top: 6px;
  color: #c7d7dd;
  font: 600 8px/1 var(--sans);
}

.insight-card-article .insight-card-body {
  padding: 23px 25px 26px;
}

.insight-card-article h3 {
  margin-top: 17px;
  font-size: 21px;
}

.insight-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px 30px 30px;
}

.insight-card > span,
.insight-card-body > span {
  color: var(--gold-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.insight-card h3,
.insight-card-body h3 {
  margin: 30px 0 11px;
  color: var(--navy);
  font: 22px/1.48 var(--serif);
}

.insight-card-main h3 {
  max-width: 520px;
  margin-top: 18px;
  font-size: 28px;
}

.insight-card p,
.insight-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.insight-card > a:not(.insight-card-media),
.insight-card-body > a {
  margin-top: auto;
  padding-top: 24px;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.insight-card-body > a span {
  margin-left: 4px;
}

.contact-section {
  padding: 100px 0;
  background:
    radial-gradient(circle at 10% 80%, rgba(189, 155, 93, 0.18), transparent 27%),
    linear-gradient(115deg, #f4eee4, #edf4f3);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 100px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
}

.contact-links {
  display: grid;
  gap: 13px;
  margin-top: 30px;
}

.contact-links a {
  text-decoration: none;
}

.contact-links small,
.contact-links strong {
  display: block;
}

.contact-links small {
  color: var(--gold-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.contact-links strong {
  color: var(--navy);
  font: 19px/1.5 var(--serif);
  overflow-wrap: anywhere;
}

.wechat-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 168px;
  align-items: center;
  gap: 22px;
  max-width: 500px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(189, 155, 93, 0.4);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 15px 34px rgba(9, 40, 59, 0.07);
}

.wechat-contact small,
.wechat-contact strong {
  display: block;
}

.wechat-contact small {
  color: var(--gold-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.wechat-contact strong {
  margin-top: 7px;
  color: var(--navy);
  font: 21px/1.4 var(--display-serif);
}

.wechat-contact p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.wechat-contact img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #e2e6e4;
  background: var(--white);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  padding: 32px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.form-heading,
.contact-form label:nth-of-type(4),
.contact-form .button,
.contact-form .form-note {
  grid-column: 1 / -1;
}

.form-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 4px;
}

.form-heading span {
  color: var(--navy);
  font: 23px var(--serif);
}

.form-heading small {
  color: #83949a;
  font-size: 9px;
}

.contact-form label,
.claim-form label {
  display: grid;
  gap: 6px;
  color: #4e6c79;
  font-size: 12px;
}

.contact-form input,
.contact-form textarea,
.contact-form select,
.claim-form input {
  width: 100%;
  min-height: 43px;
  padding: 9px 11px;
  border: 1px solid #cbd8da;
  border-radius: 0;
  background: #fcfdfc;
  color: var(--ink);
}

.contact-form textarea {
  min-height: 105px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.claim-form input:focus {
  border-color: var(--blue);
  outline: 2px solid rgba(40, 100, 135, 0.16);
}

.contact-form .button {
  justify-self: start;
}

.form-note {
  margin: -5px 0 0;
  color: #7c9098;
  font-size: 10px;
}

.provider-section {
  padding: 70px 0 55px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.provider-heading {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: end;
  gap: 70px;
}

.provider-heading h2 {
  font-size: 29px;
}

.provider-heading > p {
  margin: 0;
  color: #768b94;
  font-size: 11px;
}

.provider-marquee {
  width: 100%;
  margin-top: 39px;
  overflow: hidden;
  border-top: 1px solid #e4eaea;
  border-bottom: 1px solid #e4eaea;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.provider-track {
  display: flex;
  width: max-content;
  animation: provider-scroll 44s linear infinite;
}

.provider-marquee:hover .provider-track {
  animation-play-state: paused;
}

.provider-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  place-items: center;
  width: 210px;
  min-height: 94px;
  padding: 18px 31px;
  border-right: 1px solid #e4eaea;
  background: #fff;
  opacity: 0.9;
  transition:
    opacity 180ms ease,
    background-color 180ms ease;
}

.provider-logo:hover,
.provider-logo:focus-visible {
  opacity: 1;
  background: #f8fbfb;
}

.provider-logo:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: -3px;
}

.provider-logo img {
  display: block;
  width: auto;
  max-width: 148px;
  height: auto;
  max-height: 49px;
  object-fit: contain;
}

.provider-logo-wide {
  width: 240px;
}

.provider-logo-wide img {
  max-width: 184px;
}

.provider-logo-aia {
  background: #d31145;
}

.provider-logo-aia:hover,
.provider-logo-aia:focus-visible {
  background: #bd0f3e;
}

.provider-logo-aia img {
  max-width: 62px;
  max-height: 62px;
}

@keyframes provider-scroll {
  to {
    transform: translateX(-50%);
  }
}

.site-footer {
  padding: 47px 0 18px;
  background: var(--navy-deep);
  color: #b9ced6;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  align-items: start;
  gap: 55px;
}

.footer-logo {
  display: block;
  max-width: 370px;
  padding: 8px 13px;
  background: var(--paper);
}

.footer-service strong {
  color: var(--white);
  font-size: 13px;
}

.footer-service p {
  margin: 9px 0 0;
  color: #91aab4;
  font-size: 11px;
}

.footer-links {
  display: grid;
  gap: 5px;
  justify-items: end;
  text-align: right;
  font-size: 10px;
}

.footer-links strong {
  margin-bottom: 3px;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.footer-links a {
  color: #d7e3e7;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-links span {
  color: #829da8;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 38px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #7f99a4;
  font-size: 10px;
}

.footer-bottom a {
  color: #afc3ca;
  text-decoration: none;
}

.claim-dialog {
  width: min(820px, calc(100% - 30px));
  max-height: min(91vh, 950px);
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 2px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.claim-dialog::backdrop {
  background: rgba(5, 26, 38, 0.72);
  backdrop-filter: blur(5px);
}

.claim-form {
  display: grid;
  gap: 20px;
  padding: 34px;
}

.dialog-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.dialog-heading span {
  color: var(--gold-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.dialog-heading h2 {
  margin: 5px 0 0;
  color: var(--navy);
  font: 27px/1.35 var(--serif);
}

.dialog-heading button {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 1px solid #cbd7da;
  background: transparent;
  color: var(--navy);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.claim-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.claim-form fieldset {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
}

.claim-form legend {
  padding: 0 8px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
}

.claim-type-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.claim-type-options label {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 6px;
}

.claim-type-options input,
.consent input {
  width: auto;
  min-height: 0;
}

.upload-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.upload-tile {
  position: relative;
  display: flex !important;
  min-height: 112px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 1px dashed #9db3bb;
  background: rgba(255, 255, 255, 0.68);
  text-align: center;
  cursor: pointer;
}

.upload-tile:hover {
  border-color: var(--gold-deep);
  background: var(--white);
}

.upload-tile input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.upload-tile span {
  color: var(--navy);
  font-weight: 800;
}

.upload-tile small {
  color: #7d9199;
  font-size: 10px;
}

.file-summary {
  min-height: 44px;
  padding: 11px 13px;
  border-left: 3px solid var(--gold);
  background: #e9efed;
  color: #506b77;
  font-size: 11px;
  overflow-wrap: anywhere;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
}

.consent {
  display: flex !important;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 9px !important;
  line-height: 1.55;
}

.consent input {
  margin-top: 4px;
}

.claim-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.claim-status {
  min-height: 0;
  margin: -6px 0 0;
  color: var(--navy);
  font-size: 12px;
}

.claim-status.is-error {
  color: #8c352e;
}

.claim-status.is-success {
  color: #2f6d56;
}

.claim-security-note {
  margin: -6px 0 0;
  color: #7a8d94;
  font-size: 9px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1040px) {
  .header-inner {
    min-height: 77px;
  }

  .brand-lockup {
    flex-basis: 250px;
    min-width: 210px;
  }

  .brand-lockup img {
    height: 65px;
  }

  .primary-navigation {
    gap: 13px;
  }

  .primary-navigation a {
    font-size: 12px;
  }

  .hero-grid {
    gap: 38px;
  }

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

  .trust-grid div:nth-child(2) {
    border-right: 0;
  }

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

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

  .about-grid,
  .claims-intro,
  .contact-grid {
    gap: 55px;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 74px;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-lockup {
    flex-basis: 225px;
  }

  .brand-lockup img {
    height: 61px;
  }

  .menu-button {
    display: grid;
    grid-template-columns: 19px auto;
    align-items: center;
    gap: 3px 7px;
    padding: 8px 0;
    border: 0;
    background: transparent;
    color: var(--navy);
    cursor: pointer;
  }

  .menu-button span {
    grid-column: 1;
    width: 19px;
    height: 1px;
    background: currentColor;
  }

  .menu-button b {
    grid-column: 2;
    grid-row: 1 / 4;
    font-size: 11px;
    font-weight: 650;
  }

  .primary-navigation {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 15px 25px rgba(9, 40, 59, 0.11);
  }

  .primary-navigation.is-open {
    display: grid;
  }

  .primary-navigation a {
    padding: 10px 0;
    border-bottom: 1px solid #e0e8e8;
    font-size: 14px;
  }

  .primary-navigation a::after {
    display: none;
  }

  .english-link {
    justify-self: start;
    margin-top: 11px;
    padding: 7px 11px !important;
    border-bottom: 1px solid #a9bbc1 !important;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 61px;
  }

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

  .hero-adviser {
    min-height: 450px;
  }

  .portrait-frame {
    right: auto;
    left: 50%;
    width: min(390px, 79%);
    height: 430px;
    transform: translateX(-50%);
  }

  .adviser-card {
    right: 7%;
  }

  .philosophy-shell {
    grid-template-columns: 150px 1fr;
    min-height: 235px;
  }

  .protection-story-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .protection-story-steps > div {
    grid-template-columns: 30px 1fr;
    padding: 20px 18px;
  }

  .protection-story-steps span {
    font-size: 19px;
  }

  .philosophy-controls {
    grid-column: 1 / -1;
    justify-content: center;
    margin-top: 8px;
  }

  .section-heading,
  .provider-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-categories {
    grid-template-columns: 1fr 1fr;
  }

  .service-category-primary {
    grid-column: 1 / -1;
  }

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

  .claims-intro,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .claim-portal {
    grid-template-columns: 1fr;
  }

  .claim-portal-action {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .about-visual {
    max-width: 560px;
  }

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

  .insight-card-main {
    grid-column: 1 / -1;
  }

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

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

@media (max-width: 590px) {

  .insights-section .section-heading h2 {
    font-size: clamp(20px, 5.7vw, 26px);
    line-height: 1.5;
  }
  .container {
    width: min(100% - 34px, 1180px);
  }

  .header-inner {
    width: calc(100% - 28px);
  }

  .brand-lockup {
    flex-basis: 200px;
    min-width: 190px;
  }

  .brand-lockup img {
    height: 58px;
  }

  .hero {
    padding-bottom: 28px;
  }

  .hero h1 {
    font-size: clamp(24px, 7.7vw, 36px);
    line-height: 1.34;
    letter-spacing: 0.015em;
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-adviser {
    min-height: 382px;
  }

  .portrait-frame {
    width: 86%;
    height: 365px;
  }

  .adviser-card {
    right: 0;
    bottom: 24px;
    width: min(350px, 90%);
    min-height: 145px;
    padding: 18px 106px 18px 20px;
  }

  .adviser-card strong {
    font-size: 22px;
    white-space: nowrap;
  }

  .mobile-wechat-qr {
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: inherit;
    text-decoration: none;
  }

  .mobile-wechat-qr img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
    background: #fff;
  }

  .mobile-wechat-qr-hero {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    width: 78px;
  }

  .mobile-wechat-qr-hero img {
    width: 78px;
    padding: 4px;
    border: 1px solid rgba(217, 190, 135, 0.72);
    box-shadow: 0 8px 18px rgba(2, 19, 29, 0.26);
  }

  .mobile-wechat-qr-hero span {
    color: #e5ca93;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
  }

  .protection-story {
    margin-top: 10px;
    margin-bottom: 16px;
  }

  .protection-story-heading {
    padding: 24px 21px 21px;
  }

  .protection-story-heading h2 {
    font-size: 26px;
  }

  .protection-story-heading > p {
    font-size: 13px;
  }

  .protection-story-image {
    aspect-ratio: 2.1 / 1;
  }

  .protection-story-steps {
    grid-template-columns: 1fr;
  }

  .protection-story-steps > div {
    grid-template-columns: 35px 1fr;
    padding: 18px 20px;
  }

  .philosophy-shell {
    display: block;
    min-height: 344px;
    padding: 20px;
  }

  .philosophy-label {
    padding: 0 0 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .philosophy-stage {
    min-height: 205px;
    padding: 0;
  }

  .philosophy-slide {
    right: 0;
    left: 0;
    padding-left: 16px;
    font-size: 15px;
    line-height: 1.8;
  }

  .philosophy-controls {
    margin-top: 11px;
  }

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

  .trust-grid div,
  .trust-grid div:first-child,
  .trust-grid div:nth-child(3) {
    min-height: 65px;
    padding: 13px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .section {
    padding: 72px 0;
  }

  .section-heading h2,
  .claims-copy h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: 31px;
  }

  .about-copy h2.about-title {
    font-size: 32px;
    line-height: 1.32;
  }

  .about-title-support {
    margin-top: 16px;
    padding-top: 14px;
    font-size: 17px;
    line-height: 1.55;
  }

  .service-categories,
  .insight-grid {
    grid-template-columns: 1fr;
    margin-top: 31px;
  }

  .insight-card-media-small {
    height: 190px;
  }

  .service-category-primary {
    grid-column: 1;
  }

  .service-category-header {
    grid-template-columns: 1fr;
    gap: 19px;
    min-height: 0;
    padding: 27px 25px;
  }

  .service-category-copy,
  .service-category:not(.service-category-primary) .service-category-copy {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .service-category-number {
    font-size: 26px;
  }

  .service-category h3 {
    font-size: 25px;
  }

  .personal-cover-types {
    grid-template-columns: 1fr;
  }

  .cover-type {
    min-height: 0;
    padding: 23px 25px;
  }

  .cover-type h4 {
    margin-top: 12px;
  }

  .service-category-link,
  .service-category:not(.service-category-primary) .service-category-link {
    margin: 0 25px 26px;
  }

  .claims-section {
    padding: 72px 0 55px;
  }

  .claims-intro {
    gap: 39px;
  }

  .claim-portal {
    margin-top: 48px;
  }

  .claim-portal-copy,
  .claim-portal-action {
    padding: 28px 24px;
  }

  .claim-portal h3 {
    font-size: 25px;
  }

  .about-visual {
    min-height: 445px;
  }

  .about-photo {
    width: 91%;
    height: 415px;
  }

  .experience-card {
    width: 245px;
    padding: 20px;
  }

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

  .credentials div,
  .credentials div:first-child {
    padding: 11px 0;
    border-right: 0;
    border-bottom: 1px solid #cbd8da;
  }

  .credentials div:last-child {
    border-bottom: 0;
  }

  .insight-card-main {
    grid-column: auto;
  }

  .contact-section {
    padding: 72px 0;
  }

  .wechat-contact {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .wechat-contact img {
    width: min(210px, 76%);
    justify-self: center;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 23px;
  }

  .contact-form label {
    grid-column: 1 / -1;
  }

  .form-heading {
    display: block;
  }

  .form-heading small {
    display: block;
    margin-top: 4px;
  }

  .provider-heading h2 {
    font-size: 25px;
  }

  .footer-main {
    grid-template-columns: minmax(0, 1fr) 112px;
    gap: 27px 20px;
  }

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

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

  .footer-links {
    grid-column: 1;
    justify-items: start;
    text-align: left;
  }

  .footer-mobile-wechat {
    display: flex;
    grid-column: 2;
    align-self: end;
    justify-self: end;
    width: 112px;
  }

  .footer-mobile-wechat img {
    width: 112px;
    padding: 6px;
    border: 1px solid rgba(217, 190, 135, 0.64);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  }

  .footer-mobile-wechat span {
    color: #d7e3e7;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.2;
    text-align: center;
  }

  .footer-bottom {
    display: grid;
    gap: 5px;
  }

  .claim-form {
    padding: 23px 18px;
  }

  .claim-form-grid,
  .upload-options {
    grid-template-columns: 1fr;
  }

  .dialog-heading h2 {
    font-size: 22px;
  }
}

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

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

  .provider-track {
    flex-wrap: wrap;
    width: 100%;
    animation: none;
  }

  .provider-logo[aria-hidden="true"] {
    display: none;
  }

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