@charset "utf-8";

/* TOP renewal: problem/solution, reasons, and features only */

/* Unify the page canvas so legacy and renewed sections share one light-blue base. */
#index {
  --index-canvas: #edf6fd;
  background: var(--index-canvas);
}

#index .index-renewal__inner {
  width: 1120px;
  margin: 0 auto;
}

#index .index-problem-solution,
#index .index-reasons,
#index .index-features {
  color: #123e61;
}

#index .index-renewal__legacy-hook {
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
  clip-path: inset(50%);
  opacity: 0;
  pointer-events: none;
}

#index .index-problem-solution {
  padding: 130px 0 120px;
  background: var(--index-canvas);
}

#index .index-problem-solution__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 470px;
  gap: 82px;
  align-items: center;
}

#index .index-renewal__eyebrow {
  display: inline;
  color: #267ca8;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
  background: linear-gradient(transparent 12%, #ffef8a 12%, #ffef8a 88%, transparent 88%);
}

#index .index-problem-solution__copy h2 {
  margin-top: 25px;
  color: #063e68;
  font-family: "Zen Maru Gothic", serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

#index .index-problem-solution__lead {
  margin-top: 28px;
  color: #4f6a7f;
  font-size: 1.7rem;
  line-height: 1.9;
}

#index .index-problem-solution__main-photo {
  height: 350px;
  overflow: hidden;
  border-radius: 28px;
}

#index .index-problem-solution__main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
}

#index .index-problem-solution__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 72px;
}

#index .index-problem-solution__item {
  padding: 28px;
  border: 1px solid #d3e0e8;
  border-radius: 27px;
  background: #fff;
  box-shadow: 0 3px 0 rgba(18, 62, 97, 0.05);
}

#index .index-problem-solution__problem {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

#index .index-problem-solution__problem svg {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  padding: 6px;
  color: #1a2f6e;
  fill: none;
  --icon-accent: #f14382;
  --icon-surface: #fff;
  overflow: visible;
  border-radius: 50%;
  background: #e5f5fd;
  box-sizing: border-box;
}

#index .index-problem-solution__problem p {
  color: #244d69;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.65;
}

#index .index-problem-solution__problem p span {
  display: block;
  color: #5c7688;
  font-size: 1.3rem;
  font-weight: 500;
}

#index .index-problem-solution__arrow {
  position: relative;
  display: block;
  height: 44px;
  margin: 10px 0 14px;
  color: transparent;
  font-size: 0;
}

#index .index-problem-solution__arrow::before {
  content: "↓";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  box-sizing: border-box;
  transform: translateX(-50%);
  border: 4px solid #fff;
  border-radius: 50%;
  background: linear-gradient(180deg, #51b5e8 0%, #1477bf 100%);
  box-shadow: 0 5px 11px rgba(26, 47, 110, 0.22);
  color: #fff;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

#index .index-problem-solution__arrow::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(81, 181, 232, 0.12), #78c5eb 50%, rgba(81, 181, 232, 0.12));
}

#index .index-problem-solution__answer {
  min-height: 112px;
  padding: 22px 24px;
  border-radius: 21px;
  background: #d8effc;
  box-sizing: border-box;
}

#index .index-problem-solution__answer h3 {
  color: #1580c2;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.5;
}

#index .index-problem-solution__answer p {
  margin-top: 7px;
  color: #4c687d;
  font-size: 1.4rem;
  line-height: 1.7;
}

#index .index-problem-solution__results {
  display: grid;
  grid-template-columns: 0.9fr 1.5fr;
  gap: 38px;
  align-items: center;
  position: relative;
  margin-top: 46px;
  padding: 38px 38px 52px;
  border-radius: 28px;
  background: #aee0fa;
}

#index .index-problem-solution__results-title {
  display: flex;
  gap: 20px;
  align-items: center;
}

#index .index-problem-solution__results-title img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  object-position: center 36%;
  border: 5px solid #fff;
  border-radius: 50%;
}

#index .index-problem-solution__results-title h3 {
  color: #0f456c;
  font-family: "Zen Maru Gothic", serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.55;
}

#index .index-problem-solution__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

#index .index-problem-solution__stats div {
  padding: 13px 10px;
  text-align: center;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 2px 0 rgba(18, 62, 97, 0.08);
}

#index .index-problem-solution__stats dt {
  color: #187cc5;
  font-family: "Montserrat", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.1;
}

#index .index-problem-solution__stats dt small {
  font-size: 1.6rem;
}

#index .index-problem-solution__stats dd {
  margin-top: 4px;
  color: #4e687a;
  font-size: 1.2rem;
}

#index .index-problem-solution__note {
  position: absolute;
  right: 36px;
  bottom: 19px;
  color: #668296;
  font-size: 1.2rem;
}

#index .index-reasons {
  padding: 125px 0 120px;
  background: #ccecff;
}

#index .index-reasons > .index-renewal__inner > h2 {
  color: #063e68;
  text-align: center;
  font-family: "Zen Maru Gothic", serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.4;
}

#index .index-reasons > .index-renewal__inner > h2 span {
  background: linear-gradient(transparent 65%, #ffed74 65%);
}

#index .index-reasons__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 62px;
}

#index .index-reasons__card {
  display: flex;
  flex-direction: column;
  min-height: 405px;
  padding: 34px 30px 28px;
  border: 1px solid #d4e2e9;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 3px 0 rgba(18, 62, 97, 0.06);
  box-sizing: border-box;
}

#index .index-reasons__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#index .index-reasons__meta > span {
  color: #8fd7f7;
  font-family: "Montserrat", sans-serif;
  font-size: 3.4rem;
  font-weight: 600;
}

#index .index-reasons__meta svg,
#index .index-reasons__support > svg {
  width: 48px;
  height: 48px;
  padding: 8px;
  color: #1a2f6e;
  fill: none;
  --icon-accent: #f14382;
  --icon-surface: #fff;
  overflow: visible;
  border-radius: 50%;
  background: #e6f5fd;
  box-sizing: border-box;
}

#index .index-reasons__card h3 {
  margin-top: 24px;
  color: #123e61;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.55;
}

#index .index-reasons__card:nth-child(-n + 2) h3 {
  width: calc(100% + 30px);
  margin-right: -30px;
  font-size: 2rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

#index .index-reasons__card > p {
  margin-top: 15px;
  color: #526c7f;
  font-size: 1.4rem;
  line-height: 1.75;
}

#index .index-reasons__card .index-reasons__summary {
  color: #1b82c3;
  font-size: 1.6rem;
  font-weight: 700;
}

#index .index-reasons__card .index-reasons__survey {
  margin-top: auto;
  padding: 10px 14px;
  color: #31576d;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  border-radius: 20px;
  background: #fff09a;
}

#index .index-reasons__survey small {
  display: block;
  margin-top: 2px;
  font-size: 1rem;
  font-weight: 500;
}

#index .index-reasons__support {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-top: 20px;
  padding: 30px 38px;
  color: #fff;
  border-radius: 25px;
  background: #1d75d3;
}

#index .index-reasons__support > svg {
  flex: 0 0 50px;
  color: #fff;
  background: rgba(255,255,255,0.14);
}

#index .index-reasons__support h3 {
  font-size: 1.9rem;
  font-weight: 700;
}

#index .index-reasons__support p {
  margin-top: 6px;
  color: rgba(255,255,255,0.9);
  font-size: 1.35rem;
  line-height: 1.7;
}

#index .index-features {
  padding: 125px 0 150px;
  background: var(--index-canvas);
}

#index .index-features + .secBox01 > br {
  display: none;
}

#index .index-features__heading {
  text-align: center;
}

#index .index-features__heading p {
  display: inline;
  color: #267ca8;
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(transparent 12%, #ffef8a 12%, #ffef8a 88%, transparent 88%);
}

#index .index-features__heading h2 {
  margin-top: 15px;
  color: #1a2f6e;
  font-family: "Zen Maru Gothic", serif;
  font-size: 3.7rem;
  font-weight: 700;
}

#index .index-features__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 65px;
}

#index .index-features__card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  grid-template-rows: auto 1fr auto;
  column-gap: 18px;
  align-items: center;
  min-height: 310px;
  position: relative;
  padding: 34px 30px 28px;
  border: 1px solid #d3e0e8;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 3px 0 rgba(18, 62, 97, 0.06);
  box-sizing: border-box;
}

#index .index-features__icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: #dff3fd;
}

#index .index-features__icon svg {
  width: 29px;
  height: 29px;
  color: #1a2f6e;
  fill: none;
  --icon-accent: #f14382;
}

#index .index-features__card h3 {
  grid-column: 2;
  grid-row: 1;
  margin-top: 0;
  color: #123e61;
  font-size: 2rem;
  font-weight: 700;
}

#index .index-features__card > p {
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: start;
  margin-top: 18px;
  color: #526c7f;
  font-size: 1.4rem;
  line-height: 1.85;
}

#index .index-features__option {
  position: absolute;
  top: 16px;
  right: 28px;
  padding: 5px 12px;
  color: #e8529a;
  font-size: 1.1rem;
  font-weight: 700;
  border: 1px solid #f2b9d4;
  border-radius: 16px;
  background: #fff;
}

#index .index-features__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  grid-column: 1 / -1;
  grid-row: 3;
  align-self: end;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #dce7ed;
}

#index .index-features__tags li {
  padding: 5px 11px;
  color: #567286;
  font-size: 1.1rem;
  line-height: 1;
  border-radius: 13px;
  background: #e7f4fa;
}

#index .index-features__button {
  margin-top: 62px;
  text-align: center;
}

#index .index-features__button a {
  display: inline-flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  padding: 15px 28px;
  color: #31556d;
  font-size: 1.5rem;
  font-weight: 700;
  border: 1px solid #bfcdd6;
  border-radius: 28px;
  background: #fff;
}

#index .index-features__button a:hover {
  color: #fff;
  border-color: #197bc0;
  background: #197bc0;
}

@media all and (max-width: 896px) {
  #index .index-renewal__inner {
    width: auto;
    margin: 0 2rem;
  }

  #index .index-problem-solution {
    padding: 8rem 0;
  }

  #index .index-problem-solution__intro {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: stretch;
  }

  #index .index-renewal__eyebrow {
    font-size: 1.3rem;
  }

  #index .index-problem-solution__copy h2 {
    margin-top: 1.8rem;
    font-size: 2.8rem;
  }

  #index .index-problem-solution__lead {
    margin-top: 1.8rem;
    font-size: 1.4rem;
    line-height: 1.8;
  }

  #index .index-problem-solution__main-photo {
    height: 24rem;
    border-radius: 2.2rem;
  }

  #index .index-problem-solution__list {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    margin-top: 3.5rem;
  }

  #index .index-problem-solution__item {
    padding: 2rem;
    border-radius: 2.2rem;
  }

  #index .index-problem-solution__problem p {
    font-size: 1.4rem;
  }

  #index .index-problem-solution__answer {
    min-height: 0;
    padding: 1.8rem;
    border-radius: 1.7rem;
  }

  #index .index-problem-solution__answer h3 {
    font-size: 1.5rem;
  }

  #index .index-problem-solution__answer p {
    font-size: 1.25rem;
  }

  #index .index-problem-solution__results {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
    padding: 2rem 1.6rem 4.5rem;
    border-radius: 2.2rem;
  }

  #index .index-problem-solution__results-title {
    gap: 1.4rem;
  }

  #index .index-problem-solution__results-title img {
    width: 7rem;
    height: 7rem;
  }

  #index .index-problem-solution__results-title h3 {
    font-size: 1.8rem;
  }

  #index .index-problem-solution__stats {
    gap: 0.8rem;
  }

  #index .index-problem-solution__stats div {
    padding: 1.2rem 0.5rem;
    border-radius: 1.5rem;
  }

  #index .index-problem-solution__stats dt {
    font-size: 2.2rem;
  }

  #index .index-problem-solution__stats dd {
    font-size: 1rem;
    line-height: 1.35;
  }

  #index .index-problem-solution__note {
    right: 1.8rem;
    bottom: 1.7rem;
    font-size: 1rem;
  }

  #index .index-reasons,
  #index .index-features {
    padding: 8rem 0;
  }

  #index .index-features {
    padding-bottom: 11rem;
  }

  #index .index-reasons > .index-renewal__inner > h2,
  #index .index-features__heading h2 {
    font-size: 2.7rem;
  }

  #index .index-reasons__list,
  #index .index-features__list {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    margin-top: 3.8rem;
  }

  #index .index-reasons__card,
  #index .index-features__card {
    min-height: 0;
    padding: 2.4rem 2.2rem;
    border-radius: 2.2rem;
  }

  #index .index-reasons__card h3,
  #index .index-features__card h3 {
    font-size: 1.8rem;
  }

  #index .index-reasons__card > p,
  #index .index-features__card > p {
    font-size: 1.3rem;
  }

  #index .index-reasons__card .index-reasons__survey {
    margin-top: 2rem;
  }

  #index .index-reasons__support {
    align-items: flex-start;
    margin-top: 1.6rem;
    padding: 2.4rem 2.2rem;
    border-radius: 2.2rem;
  }

  #index .index-reasons__support h3 {
    font-size: 1.6rem;
  }

  #index .index-reasons__support p {
    font-size: 1.2rem;
  }

  #index .index-features__heading p {
    font-size: 1.3rem;
  }

  #index .index-features__card h3 {
    margin-top: 0;
  }

  #index .index-features__option {
    top: 1.2rem;
    right: 2.2rem;
  }

  #index .index-features__tags {
    margin-top: 2rem;
  }

  #index .index-features__button {
    margin-top: 3.8rem;
  }
}
