:root {
  --navy: #001c57;
  --text: #061b4f;
  --line: #dbe2ea;
  --white: #fff;
}

.pricing-plans-section {
  padding: 70px 0 66px;
  color: #061d50;
  background:
    radial-gradient(circle at 50% 0, rgba(218, 235, 245, .42), transparent 35%),
    linear-gradient(180deg, #f8fbfd 0%, #fff 62%, #f8fafc 100%);
}

.pricing-plans-inner {
  width: min(1398px, 100%);
  margin: 0 auto;
  padding: 0 42px;
}

.pricing-plans-heading {
  text-align: center;
}

.pricing-plans-eyebrow {
  margin: 0 0 20px;
  color: #17865f;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .08em;
}

.pricing-plans-heading h2 {
  margin: 0;
  color: #001c57;
  font-size: 42px;
  line-height: 1.45;
  letter-spacing: .08em;
}

.pricing-plans-accent {
  display: block;
  width: 80px;
  height: 3px;
  margin: 20px auto 22px;
  background: linear-gradient(90deg, #007dcc 64%, #55b76c 64%);
}

.pricing-plans-lead {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: .055em;
}

.pricing-plans-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 46px;
}

.pricing-plans-card {
  display: flex;
  min-height: 466px;
  padding: 34px 26px 25px;
  flex-direction: column;
  border: 1px solid #d5e0ea;
  border-radius: 8px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 14px 32px rgba(0, 28, 87, .035);
  text-align: center;
}

.pricing-plans-card--recommended {
  border-color: rgba(37, 167, 102, .46);
}

.pricing-plans-badge {
  min-width: 132px;
  margin: 0 auto 18px;
  padding: 6px 20px;
  border-radius: 999px;
  color: #002466;
  background: #e8eef8;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
}

.pricing-plans-card--recommended .pricing-plans-badge {
  color: #fff;
  background: linear-gradient(90deg, #17a061, #21b36d);
}

.pricing-plans-card h3 {
  margin: 0 0 16px;
  color: #001c57;
  font-size: 28px;
  letter-spacing: .08em;
}

.pricing-plans-description {
  min-height: 60px;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.75;
}

.pricing-plans-card ul {
  margin: 26px 0 22px;
  padding: 24px 10px 0;
  border-top: 1px solid #dbe4ed;
  list-style: none;
  text-align: left;
}

.pricing-plans-card li {
  position: relative;
  margin: 0 0 12px;
  padding-left: 29px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
}

.pricing-plans-card li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: #fff;
  background: #0962bb;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
}

.pricing-plans-card--recommended li::before {
  background: #19a463;
}

.pricing-plans-price {
  margin-top: auto;
  padding: 17px 12px;
  border-radius: 6px;
  background: #edf3fb;
}

.pricing-plans-card--recommended .pricing-plans-price {
  background: #edf7ed;
}

.pricing-plans-price small {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 800;
}

.pricing-plans-price strong {
  color: #00246a;
  font-size: 31px;
  letter-spacing: .04em;
}

.pricing-plans-card--recommended .pricing-plans-price strong {
  color: #08743d;
}

.pricing-plans-price strong span,
.pricing-plans-price em {
  font-size: 15px;
  font-style: normal;
}

.pricing-plans-cta {
  display: grid;
  grid-template-columns: 70px 1fr 450px;
  gap: 26px;
  align-items: center;
  margin-top: 24px;
  padding: 28px 34px;
  border: 1px solid #d4dee9;
  border-radius: 8px;
  background: #fff;
}

.pricing-plans-cta-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  color: #06358a;
  background: #eef3fb;
  font-size: 28px;
}

.pricing-plans-cta strong {
  color: #002463;
  font-size: 19px;
  letter-spacing: .05em;
}

.pricing-plans-cta p {
  margin: 8px 0 0;
  font-size: 14px;
  font-weight: 600;
}

.pricing-plans-cta a {
  display: flex;
  height: 64px;
  padding: 0 25px;
  align-items: center;
  justify-content: center;
  gap: 17px;
  border-radius: 5px;
  color: #fff;
  background: #00246c;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
}

.pricing-plans-cta a b {
  margin-left: auto;
  font-size: 24px;
}

.pricing-plans-sp-only {
  display: none;
}

@media (max-width: 900px) {
  .pricing-plans-section {
    padding: 58px 0;
  }

  .pricing-plans-inner {
    padding: 0 30px;
  }

  .pricing-plans-eyebrow {
    font-size: 17px;
    line-height: 1.65;
  }

  .pricing-plans-heading h2 {
    font-size: 40px;
    line-height: 1.5;
  }

  .pricing-plans-sp-only {
    display: block;
  }

  .pricing-plans-lead {
    font-size: 17px;
    line-height: 1.8;
    text-align: left;
  }

  .pricing-plans-lead br {
    display: none;
  }

  .pricing-plans-list {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 38px;
  }

  .pricing-plans-card {
    min-height: 0;
    padding: 30px 30px 25px;
  }

  .pricing-plans-card h3 {
    font-size: 30px;
  }

  .pricing-plans-description {
    min-height: 0;
    font-size: 17px;
  }

  .pricing-plans-card ul {
    margin: 24px 0 20px;
    padding: 22px 12px 0;
  }

  .pricing-plans-card li {
    font-size: 17px;
  }

  .pricing-plans-price strong {
    font-size: 38px;
  }

  .pricing-plans-cta {
    grid-template-columns: 75px 1fr;
    margin-top: 22px;
    padding: 26px;
  }

  .pricing-plans-cta strong {
    font-size: 22px;
  }

  .pricing-plans-cta p {
    font-size: 17px;
    line-height: 1.7;
  }

  .pricing-plans-cta a {
    grid-column: 1 / -1;
    height: 78px;
    font-size: 20px;
  }
}

.final-contact-section {
  position: relative;
  overflow: hidden;
  padding: 78px 0 62px;
  color: #061d50;
  background:
    linear-gradient(90deg, rgba(255,255,255,.93) 0%, rgba(255,255,255,.88) 58%, rgba(255,255,255,.35) 100%),
    url("Images/final-contact-background.png") center / cover no-repeat;
}

.final-contact-inner {
  width: min(1408px, 100%);
  margin: 0 auto;
  padding: 0 32px;
}

.final-contact-heading {
  text-align: center;
}

.final-contact-heading > p {
  margin: 0 0 26px;
  color: #00276e;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .08em;
}

.final-contact-heading h2 {
  margin: 0;
  color: #00194f;
  font-size: 46px;
  line-height: 1.5;
  letter-spacing: .07em;
}

.final-contact-heading h2 span {
  color: #0a56d1;
}

.final-contact-heading i {
  display: block;
  width: 72px;
  height: 3px;
  margin: 22px auto 24px;
  background: #0c69d4;
}

.final-contact-heading > div {
  font-size: 16px;
  line-height: 1.9;
}

.final-contact-main {
  width: min(760px, 100%);
  margin: 36px auto 0;
}

.final-contact-main a {
  display: grid;
  min-height: 138px;
  grid-template-columns: 84px 1fr 55px;
  align-items: center;
  padding: 18px 34px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #0754d6, #062c91);
  box-shadow: 0 18px 35px rgba(0, 45, 145, .22);
  text-decoration: none;
}

.final-contact-main a > b {
  font-size: 43px;
}

.final-contact-main a span {
  display: flex;
  flex-direction: column;
  font-size: 35px;
  font-weight: 800;
  letter-spacing: .08em;
}

.final-contact-main a small {
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255,255,255,.45);
  font-size: 15px;
  letter-spacing: .08em;
}

.final-contact-main a strong {
  font-size: 40px;
}

.final-contact-main > p {
  margin: 20px 0 0;
  font-size: 14px;
  text-align: center;
}

.final-contact-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 38px;
  padding: 34px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 10px 30px rgba(0, 30, 90, .06);
}

.final-contact-features article {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 16px;
  align-items: center;
  padding: 0 22px;
  border-right: 1px solid #d7e0ea;
}

.final-contact-features article:last-child {
  border-right: 0;
}

.final-contact-features article > b {
  display: grid;
  width: 90px;
  height: 90px;
  place-items: center;
  border-radius: 50%;
  color: #07378d;
  background: #f0f4fc;
  font-size: 42px;
}

.final-contact-features h3 {
  margin: 0 0 10px;
  color: #003482;
  font-size: 17px;
}

.final-contact-features p {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
}

@media (max-width: 900px) {
  .final-contact-section {
    padding: 54px 0 50px;
    background-position: 65% center;
  }

  .final-contact-inner {
    padding: 0 30px;
  }

  .final-contact-heading > p {
    font-size: 20px;
  }

  .final-contact-heading h2 {
    font-size: 42px;
  }

  .final-contact-heading > div {
    font-size: 18px;
    line-height: 1.9;
  }

  .final-contact-main a {
    min-height: 145px;
    grid-template-columns: 80px 1fr 45px;
    padding: 20px 30px;
  }

  .final-contact-main a span {
    font-size: 31px;
  }

  .final-contact-main a small {
    font-size: 16px;
  }

  .final-contact-main > p {
    font-size: 16px;
  }

  .final-contact-features {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .final-contact-features article {
    min-height: 168px;
    grid-template-columns: 145px 1fr;
    padding: 20px 28px;
    border: 0;
    border-radius: 12px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 10px 25px rgba(0, 30, 90, .06);
  }

  .final-contact-features article > b {
    width: 120px;
    height: 120px;
    font-size: 54px;
  }

  .final-contact-features h3 {
    font-size: 25px;
  }

  .final-contact-features p {
    font-size: 20px;
  }
}

.faq-section-root {
  padding: 58px 0 48px;
  color: #061d50;
  background: linear-gradient(180deg, #f9fbfd, #fff);
}

.faq-section-inner {
  width: min(1450px, 100%);
  margin: 0 auto;
  padding: 0 42px;
}

.faq-section-heading {
  text-align: center;
}

.faq-section-heading > p {
  width: fit-content;
  margin: 0 auto 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid #1577d3;
  color: #063584;
  font-size: 19px;
  font-weight: 800;
}

.faq-section-heading h2 {
  margin: 0 0 16px;
  color: #00184f;
  font-size: 50px;
  letter-spacing: .11em;
}

.faq-section-heading > div {
  font-size: 17px;
  line-height: 1.75;
}

.faq-section-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  gap: 14px;
  margin-top: 40px;
}

.faq-section-list > div {
  display: grid;
  min-height: 116px;
  grid-template-columns: 62px 1fr 72px;
  align-items: center;
  padding: 18px 20px 18px 30px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 30, 80, .07);
}

.faq-section-list b {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  color: #033b94;
  background: #f0f4fb;
  font-family: Georgia, serif;
  font-size: 26px;
}

.faq-section-list p {
  margin: 0;
  color: #00236b;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.faq-section-list i {
  position: relative;
  height: 48px;
  border-left: 1px solid #d9e2ed;
}

.faq-section-list i::before,
.faq-section-list i::after {
  content: "";
  position: absolute;
  top: 23px;
  right: 10px;
  width: 23px;
  height: 2px;
  background: #0450b2;
}

.faq-section-list i::after {
  transform: rotate(90deg);
}

.faq-section-note {
  margin: 30px 0 42px;
  font-size: 14px;
  text-align: center;
}

.faq-section-cta {
  display: grid;
  grid-template-columns: 115px 1.15fr 1.5fr 1.45fr;
  gap: 24px;
  align-items: center;
  padding: 34px;
  background: #f2f7fd;
}

.faq-section-chat {
  display: grid;
  width: 94px;
  height: 94px;
  place-items: center;
  border-radius: 50%;
  color: #03328a;
  background: #fff;
  font-size: 64px;
}

.faq-section-cta h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.faq-section-cta-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

.faq-section-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.faq-section-benefits span {
  display: flex;
  min-height: 96px;
  gap: 12px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #dae3ed;
  background: #fff;
  color: #07388b;
  font-size: 32px;
}

.faq-section-benefits b {
  font-size: 13px;
  line-height: 1.5;
}

.faq-section-action a {
  display: flex;
  height: 70px;
  padding: 0 24px;
  align-items: center;
  gap: 16px;
  border-radius: 5px;
  color: #fff;
  background: #062b89;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
}

.faq-section-action a b {
  margin-left: auto;
  font-size: 25px;
}

.faq-section-action p {
  margin: 10px 0 0;
  font-size: 12px;
  text-align: center;
}

@media (max-width: 900px) {
  .faq-section-root {
    padding: 54px 0 48px;
  }

  .faq-section-inner {
    padding: 0 30px;
  }

  .faq-section-heading h2 {
    font-size: 46px;
  }

  .faq-section-heading > div {
    font-size: 18px;
  }

  .faq-section-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .faq-section-list > div {
    min-height: 100px;
    grid-template-columns: 64px 1fr 50px;
    padding: 16px 18px 16px 28px;
  }

  .faq-section-list p {
    font-size: 19px;
  }

  .faq-section-note {
    font-size: 16px;
  }

  .faq-section-cta {
    grid-template-columns: 100px 1fr;
    padding: 30px;
  }

  .faq-section-cta h3 {
    font-size: 25px;
  }

  .faq-section-cta-copy p {
    font-size: 17px;
  }

  .faq-section-benefits,
  .faq-section-action {
    grid-column: 1 / -1;
  }

  .faq-section-benefits span {
    min-height: 90px;
  }

  .faq-section-benefits b {
    font-size: 16px;
  }

  .faq-section-action a {
    height: 82px;
    justify-content: center;
    font-size: 21px;
  }

  .faq-section-action p {
    font-size: 16px;
  }
}

.works-showcase-section {
  padding-top: 58px;
  color: #061d50;
  background: #fff;
}

.works-showcase-inner {
  width: min(1460px, 100%);
  margin: 0 auto;
  padding: 0 38px;
}

.works-showcase-heading,
.works-showcase-subheading {
  text-align: center;
}

.works-showcase-heading > p,
.works-showcase-subheading h3 {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: #07377d;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .08em;
}

.works-showcase-heading > p span,
.works-showcase-subheading h3 span {
  width: 42px;
  height: 1px;
  background: #91afd0;
}

.works-showcase-heading h2 {
  margin: 18px 0 12px;
  color: #00184e;
  font-size: 37px;
  line-height: 1.5;
  letter-spacing: .06em;
}

.works-showcase-heading > div,
.works-showcase-subheading p {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
}

.works-showcase-life-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
  border: 1px solid #dce4ec;
}

.works-showcase-life-card {
  min-width: 0;
  padding: 30px 26px 26px;
  border-right: 1px solid #dce4ec;
}

.works-showcase-life-card:last-child {
  border-right: 0;
}

.works-showcase-life-head {
  display: grid;
  grid-template-columns: 46px 1fr;
  min-height: 72px;
  align-items: start;
}

.works-showcase-life-head b {
  grid-row: 1 / 3;
  color: #0758b1;
  font-size: 28px;
}

.works-showcase-life-head h3 {
  margin: 0;
  font-size: 18px;
}

.works-showcase-life-head p {
  margin: 8px 0 0;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.55;
}

.works-showcase-sample-placeholder {
  display: grid;
  width: 100%;
  height: 255px;
  margin: 13px 0 15px;
  place-items: center;
  border: 1px solid #dce4ec;
  background: #fff;
  color: #1d396a;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .14em;
}

.works-showcase-life-card ul,
.works-showcase-experience-list ul {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.works-showcase-life-card li,
.works-showcase-experience-list li {
  flex: 1;
  padding: 8px 4px;
  border: 1px solid #cbd8e8;
  border-radius: 6px;
  color: #12396f;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.works-showcase-life-text {
  margin: 18px 0 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
  text-align: center;
}

.works-showcase-experience {
  margin-top: 28px;
  padding: 28px 0 18px;
  background: linear-gradient(180deg, #f0f7fc, #f7fbfd);
}

.works-showcase-subheading h3 {
  color: #00205e;
  font-size: 24px;
}

.works-showcase-subheading p {
  margin: 8px 0 0;
}

.works-showcase-experience-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 18px;
}

.works-showcase-experience-list > a {
  display: grid;
  grid-template-columns: 46% 1fr;
  gap: 18px;
  min-width: 0;
  padding: 16px;
  border: 1px solid #d8e1ea;
  border-radius: 7px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.works-showcase-experience-list > a:hover,
.works-showcase-experience-list > a:focus-visible {
  border-color: #84a9d3;
  box-shadow: 0 10px 22px rgba(0, 42, 104, .12);
  transform: translateY(-4px);
}

.works-showcase-experience-list > a:focus-visible {
  outline: 3px solid rgba(11, 86, 177, .35);
  outline-offset: 3px;
}

.works-showcase-experience-list > a > img {
  width: 100%;
  height: 135px;
  border-radius: 4px;
  border: 1px solid #e1e8f0;
  background: #f5f8fb;
  object-fit: contain;
  object-position: top center;
}

.works-showcase-experience-list h4 {
  margin: 2px 0 8px;
  font-size: 18px;
  line-height: 1.4;
}

.works-showcase-experience-list p {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.65;
}

.works-showcase-experience-list li {
  padding: 5px 3px;
  font-size: 9px;
}

.works-showcase-note {
  margin: 18px 0 0;
  font-size: 12px;
  text-align: center;
}

@media (max-width: 900px) {
  .works-showcase-section {
    padding-top: 54px;
  }

  .works-showcase-inner {
    padding: 0 24px;
  }

  .works-showcase-heading > p {
    font-size: 18px;
  }

  .works-showcase-heading h2 {
    font-size: 36px;
  }

  .works-showcase-heading > div {
    font-size: 16px;
    line-height: 1.75;
  }

  .works-showcase-heading > div br,
  .works-showcase-subheading p br {
    display: none;
  }

  .works-showcase-life-list {
    grid-template-columns: 1fr;
    gap: 16px;
    border: 0;
  }

  .works-showcase-life-card {
    padding: 26px 28px;
    border: 1px solid #dce4ec;
    border-radius: 8px;
  }

  .works-showcase-life-card:last-child {
    border-right: 1px solid #dce4ec;
  }

  .works-showcase-life-head {
    grid-template-columns: 62px 1fr;
  }

  .works-showcase-life-head b {
    font-size: 34px;
  }

  .works-showcase-life-head h3 {
    font-size: 24px;
  }

  .works-showcase-life-head p {
    font-size: 15px;
  }

  .works-showcase-sample-placeholder {
    height: auto;
    min-height: 255px;
    max-height: 430px;
  }

  .works-showcase-life-card li {
    padding: 14px 5px;
    font-size: 14px;
  }

  .works-showcase-life-text {
    font-size: 17px;
    text-align: left;
  }

  .works-showcase-experience {
    padding: 42px 0 24px;
  }

  .works-showcase-subheading h3 {
    font-size: 30px;
  }

  .works-showcase-subheading p {
    font-size: 16px;
  }

  .works-showcase-experience-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }


  .works-showcase-experience-list > a {
    grid-template-columns: 34% 1fr;
    padding: 18px;
  }

  .works-showcase-experience-list > a > img {
    height: 145px;
  }

  .works-showcase-experience-list h4 {
    font-size: 21px;
  }

  .works-showcase-experience-list p {
    font-size: 14px;
  }

  .works-showcase-experience-list li {
    font-size: 12px;
  }

  .works-showcase-note {
    font-size: 14px;
  }
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  letter-spacing: 0.04em;
}

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

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

.site-header {
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 28, 87, 0.06);
}

.header-inner {
  width: min(100%, 1536px);
  height: 112px;
  margin: 0 auto;
  padding: 0 30px 0 34px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.site-logo {
  flex: 0 0 auto;
}

.site-logo img {
  width: 287px;
  height: auto;
}

.global-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 38px;
  color: #111827;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.header-cta {
  flex: 0 0 auto;
  height: 58px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  background: linear-gradient(135deg, #001c57 0%, #00256d 100%);
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(0, 28, 87, 0.2);
  font-size: 14px;
  font-weight: 700;
}

.header-cta img {
  width: 24px;
  height: 24px;
}

.header-cta .arrow {
  margin-left: 2px;
  font-size: 24px;
  line-height: 1;
}

.menu-button {
  display: none;
}

.fv {
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 28%, rgba(210, 227, 232, 0.9) 0, rgba(210, 227, 232, 0) 32%),
    linear-gradient(90deg, #fff 0%, #fff 44%, #f3f8fa 78%, #eef5f8 100%);
}

.fv-inner {
  width: min(100%, 1536px);
  margin: 0 auto;
  padding: 40px 29px 36px 60px;
  display: grid;
  grid-template-columns: minmax(520px, 0.88fr) minmax(580px, 1.12fr);
  grid-template-rows: auto auto auto;
  column-gap: 36px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
}

.eyebrow {
  margin: 0 0 34px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.eyebrow::before {
  width: 36px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, #29b674 0%, #0084ce 100%);
  border-radius: 999px;
}

.hero-copy h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px, 3.35vw, 54px);
  font-weight: 900;
  line-height: 1.42;
  letter-spacing: 0.08em;
}

.hero-copy h1 span {
  color: transparent;
  background: linear-gradient(90deg, #007bd0 0%, #1294c8 44%, #42ad75 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.lead {
  margin: 24px 0 0;
  color: #092052;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.055em;
}

.hero-visual {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: end;
  margin: -8px -4px 0 0;
}

.hero-visual img {
  width: 100%;
  max-width: 780px;
  margin-left: auto;
}

.proof-list {
  grid-column: 1;
  grid-row: 2;
  margin: 47px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: start;
  align-items: center;
  list-style: none;
}

.proof-list li {
  min-height: 44px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #061b4f;
  border-right: 1px solid var(--line);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.proof-list li:first-child {
  padding-left: 0;
}

.proof-list li:last-child {
  border-right: 0;
}

.proof-list img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.hero-actions {
  grid-column: 1;
  grid-row: 3;
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn {
  height: 68px;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.btn img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.btn .arrow {
  margin-left: auto;
  font-size: 31px;
  font-weight: 400;
  line-height: 1;
}

.btn-primary {
  width: 330px;
  padding: 0 21px 0 27px;
  gap: 15px;
  color: #fff;
  background: linear-gradient(135deg, #001c57 0%, #002a73 100%);
  box-shadow: 0 12px 28px rgba(0, 28, 87, 0.18);
}

.btn-secondary {
  width: 288px;
  padding: 0 17px 0 27px;
  gap: 14px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #c9d2df;
  box-shadow: 0 10px 22px rgba(0, 28, 87, 0.06);
}

.target-strip {
  width: min(100%, 1470px);
  margin: 0 auto 16px;
  padding: 31px 52px 36px;
  background: rgba(246, 249, 252, 0.92);
}

.target-inner h2 {
  margin: 0 0 27px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-align: center;
}

.target-inner h2::before,
.target-inner h2::after {
  width: 88px;
  height: 1px;
  content: "";
  background: #31446e;
}

.target-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.target-card {
  min-height: 134px;
  padding: 3px 26px 0;
  border-right: 1px solid var(--line);
}

.target-card:last-child {
  border-right: 0;
}

.target-card img {
  width: 42px;
  height: 42px;
  margin-bottom: 13px;
  object-fit: contain;
}

.target-card h3 {
  margin: 0 0 13px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.58;
  letter-spacing: 0.06em;
}

.target-card p {
  margin: 0;
  color: #25395f;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.82;
  letter-spacing: 0.045em;
}

@media (max-width: 1180px) {
  .header-inner {
    height: 98px;
  }

  .global-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    width: 52px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    background: transparent;
    border: 0;
  }

  .menu-button span {
    width: 46px;
    height: 4px;
    background: var(--navy);
    border-radius: 999px;
  }

  .fv-inner {
    padding: 48px 42px 54px;
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-visual,
  .proof-list,
  .hero-actions {
    grid-column: 1;
  }

  .hero-copy {
    grid-row: 1;
  }

  .hero-visual {
    grid-row: 2;
    margin: 42px auto 0;
  }

  .hero-visual img {
    max-width: 780px;
    margin: 0 auto;
  }

  .proof-list {
    grid-row: 3;
  }

  .hero-actions {
    grid-row: 4;
  }

  .target-strip {
    display: none;
  }
}

@media (max-width: 767px) {
  .site-header {
    border-bottom: 1px solid rgba(0, 28, 87, 0.08);
  }

  .header-inner {
    height: 112px;
    padding: 0 34px 0 35px;
  }

  .site-logo img {
    width: 255px;
  }

  .menu-button {
    width: 50px;
    height: 50px;
    gap: 7px;
  }

  .menu-button span {
    width: 45px;
    height: 4px;
  }

  .fv {
    background:
      radial-gradient(circle at 93% 48%, rgba(210, 229, 233, 0.74) 0, rgba(210, 229, 233, 0) 33%),
      linear-gradient(180deg, #fff 0%, #fff 55%, #f4f8fa 100%);
  }

  .fv-inner {
    padding: 54px 32px;
  }

  .eyebrow {
    margin-bottom: 34px;
    gap: 18px;
    font-size: 18px;
    line-height: 1.65;
    letter-spacing: 0.045em;
  }

  .eyebrow::before {
    width: 38px;
    height: 3px;
    flex: 0 0 auto;
  }

  .hero-copy h1 {
    font-size: clamp(39px, 8.9vw, 55px);
    line-height: 1.46;
    letter-spacing: 0.07em;
  }

  .lead {
    margin-top: 28px;
    font-size: clamp(19px, 3.7vw, 25px);
    line-height: 1.82;
    letter-spacing: 0.08em;
  }

  .lead br {
    display: none;
  }

  .hero-visual {
    margin-top: 45px;
  }

  .hero-visual img {
    width: 100%;
    max-width: 700px;
  }

  .proof-list {
    margin-top: 43px;
    padding: 31px 8px 27px;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 36px rgba(0, 28, 87, 0.07);
  }

  .proof-list li {
    min-height: 121px;
    padding: 0 10px;
    flex-direction: column;
    justify-content: center;
    gap: 13px;
    font-size: clamp(14px, 3.35vw, 20px);
    line-height: 1.55;
    text-align: center;
    white-space: normal;
  }

  .proof-list li:first-child {
    padding-left: 10px;
  }

  .proof-list img {
    width: 43px;
    height: 43px;
  }

  .hero-actions {
    margin-top: 34px;
    flex-direction: column;
    gap: 20px;
  }

  .btn {
    width: 100%;
    height: 108px;
    border-radius: 9px;
    font-size: clamp(21px, 4.4vw, 28px);
  }

  .btn img {
    width: 38px;
    height: 38px;
  }

  .btn .arrow {
    font-size: 43px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0 28px 0 55px;
    gap: 34px;
  }

  .btn-secondary {
    background: rgba(255, 255, 255, 0.97);
  }
}

@media (max-width: 480px) {
  .header-inner {
    height: 86px;
    padding: 0 22px;
  }

  .site-logo img {
    width: 208px;
  }

  .menu-button span {
    width: 34px;
    height: 3px;
  }

  .fv-inner {
    padding: 40px 22px 42px;
  }

  .eyebrow {
    font-size: 14px;
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .lead {
    font-size: 17px;
  }

  .proof-list {
    padding-right: 0;
    padding-left: 0;
  }

  .proof-list li {
    padding-right: 6px;
    padding-left: 6px;
    font-size: 13px;
  }

  .btn {
    height: 86px;
    font-size: 19px;
  }

  .btn-primary,
  .btn-secondary {
    padding-left: 32px;
    gap: 22px;
  }
}

.h1-nowrap {
  white-space: nowrap;
}

@media (min-width: 1280px) {
  .header-inner {
    padding-right: 30px;
    padding-left: 60px;
  }

  .site-logo img {
    width: 255px;
  }

  .global-nav {
    gap: 34px;
    font-size: 14px;
  }

  .header-cta {
    width: 268px;
    justify-content: center;
  }

  .fv-inner {
    padding: 40px 30px 30px 60px;
    grid-template-columns: minmax(650px, 0.95fr) minmax(560px, 1.05fr);
    column-gap: 26px;
  }

  .eyebrow {
    margin-bottom: 32px;
  }

  .hero-copy h1 {
    font-size: 48px;
    line-height: 1.42;
    letter-spacing: 0.055em;
  }

  .lead {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.75;
  }

  .hero-visual {
    margin: 16px 0 0;
    align-self: center;
  }

  .hero-visual img {
    max-width: 720px;
  }

  .proof-list {
    margin-top: 34px;
  }

  .proof-list li {
    padding: 0 20px;
    font-size: 13px;
  }

  .proof-list img {
    width: 28px;
    height: 28px;
  }

  .hero-actions {
    margin-top: 26px;
    gap: 18px;
  }

  .btn {
    font-size: 15px;
  }

  .btn-secondary {
    width: 280px;
  }

  .target-strip {
    padding-top: 30px;
    padding-bottom: 32px;
  }
}

@media (max-width: 900px) {
  .site-header {
    border-bottom: 1px solid rgba(0, 28, 87, 0.08);
  }

  .header-inner {
    height: 122px;
    padding: 0 42px;
  }

  .site-logo img {
    width: 260px;
  }

  .global-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    width: 54px;
    height: 54px;
    margin-left: auto;
    padding: 0;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    background: transparent;
    border: 0;
  }

  .menu-button span {
    width: 47px;
    height: 4px;
    background: var(--navy);
    border-radius: 999px;
  }

  .fv {
    background:
      radial-gradient(circle at 94% 46%, rgba(210, 229, 233, 0.82) 0, rgba(210, 229, 233, 0) 35%),
      linear-gradient(180deg, #fff 0%, #fff 50%, #f4f9fb 100%);
  }

  .fv-inner {
    padding: 52px 41px 50px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-visual,
  .proof-list,
  .hero-actions {
    grid-column: 1;
  }

  .hero-copy {
    grid-row: 1;
  }

  .hero-visual {
    grid-row: 2;
    margin: 48px auto 0;
  }

  .proof-list {
    grid-row: 3;
  }

  .hero-actions {
    grid-row: 4;
  }

  .eyebrow {
    margin-bottom: 35px;
    gap: 18px;
    font-size: 17px;
    line-height: 1.6;
    letter-spacing: 0.04em;
  }

  .eyebrow::before {
    width: 37px;
    height: 3px;
    flex: 0 0 auto;
  }

  .hero-copy h1 {
    font-size: 50px;
    line-height: 1.45;
    letter-spacing: 0.055em;
  }

  .lead {
    margin-top: 28px;
    font-size: 19px;
    line-height: 1.8;
    letter-spacing: 0.055em;
  }

  .lead br {
    display: none;
  }

  .hero-visual img {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
  }

  .proof-list {
    margin-top: 36px;
    padding: 28px 0 26px;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 36px rgba(0, 28, 87, 0.07);
  }

  .proof-list li {
    min-height: 132px;
    padding: 0 12px;
    flex-direction: column;
    justify-content: center;
    gap: 13px;
    border-right: 1px solid var(--line);
    font-size: 18px;
    line-height: 1.45;
    text-align: center;
    white-space: normal;
  }

  .proof-list li:first-child {
    padding-left: 12px;
  }

  .proof-list li:last-child {
    border-right: 0;
  }

  .proof-list img {
    width: 43px;
    height: 43px;
  }

  .hero-actions {
    margin-top: 34px;
    flex-direction: column;
    gap: 20px;
  }

  .btn {
    width: 100%;
    height: 112px;
    border-radius: 9px;
    font-size: 25px;
  }

  .btn img {
    width: 38px;
    height: 38px;
  }

  .btn .arrow {
    font-size: 43px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0 30px 0 55px;
    gap: 34px;
  }

  .target-strip {
    display: none;
  }
}

@media (min-width: 901px) {
  .profile-section {
    padding-top: 58px;
    padding-bottom: 78px;
  }

  .profile-section__inner {
    width: min(100%, 1430px);
  }

  .profile-section__main {
    grid-template-columns: minmax(720px, 0.98fr) minmax(560px, 1.02fr);
    column-gap: 28px;
  }

  .profile-section__title {
    width: 760px;
    max-width: none;
    font-size: 40px;
    line-height: 1.43;
    letter-spacing: 0.052em;
    white-space: nowrap;
  }

  .profile-section__role {
    margin-top: 27px;
    margin-bottom: 8px;
    font-size: 14px;
  }

  .profile-section__person-row {
    gap: 38px;
  }

  .profile-section__name {
    font-size: 32px;
  }

  .profile-section__meta {
    font-size: 13px;
    line-height: 1.65;
  }

  .profile-section__divider {
    margin-top: 20px;
    margin-bottom: 24px;
  }

  .profile-section__text {
    font-size: 15px;
    line-height: 1.72;
  }

  .profile-section__text p + p {
    margin-top: 22px;
  }

  .profile-section__visual {
    min-height: 545px;
  }

  .profile-section__photo {
    top: -38px;
    right: -6px;
    width: 660px;
    height: 650px;
  }

  .profile-section__photo img {
    object-fit: cover;
    object-position: center top;
  }

  .profile-section__hexagons {
    top: 74px;
    right: -26px;
  }

  .profile-section__cards {
    margin-top: -18px;
  }

  .profile-section__card {
    min-height: 190px;
    padding: 31px 34px 28px 38px;
    grid-template-columns: 92px 1fr;
    column-gap: 28px;
  }

  .profile-section__card-icon {
    width: 84px;
    height: 84px;
  }

  .profile-section__card-icon img {
    width: 52px;
    height: 52px;
  }

  .profile-section__card h3 {
    margin-bottom: 9px;
    font-size: 19px;
    line-height: 1.45;
  }

  .profile-section__card p {
    font-size: 13px;
    line-height: 1.75;
  }

  .profile-section__card-body::after {
    margin-top: 22px;
  }
}

/* Embedded contact form */
.contact-form-layout {
  display: grid;
  width: min(1120px, 100%);
  margin: 42px auto 0;
  grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr);
  gap: 28px;
  align-items: start;
}

.contact-form-guide,
.contact-form {
  border: 1px solid rgba(142, 165, 198, .45);
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 45px rgba(0, 38, 100, .1);
}

.contact-form-guide {
  padding: 36px 32px;
}

.contact-form-guide__label {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  color: #0755b5;
  background: #eaf3ff;
  font-size: 12px;
  font-weight: 800;
}

.contact-form-guide h3 {
  margin: 20px 0 28px;
  color: #05245e;
  font-size: 22px;
  line-height: 1.65;
}

.contact-form-guide ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-form-guide li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
}

.contact-form-guide li img {
  width: 46px;
  height: 46px;
  padding: 9px;
  border-radius: 50%;
  background: #f0f5fc;
  object-fit: contain;
}

.contact-form-guide li span {
  color: #52637c;
  font-size: 13px;
  line-height: 1.6;
}

.contact-form-guide li b {
  display: block;
  margin-bottom: 2px;
  color: #073578;
  font-size: 15px;
}

.contact-form-guide > p {
  margin: 30px 0 0;
  padding-top: 20px;
  border-top: 1px solid #dce5ef;
  color: #52637c;
  font-size: 13px;
  text-align: center;
}

.contact-form {
  display: grid;
  gap: 20px;
  padding: 36px 40px;
}

.contact-form__row {
  display: grid;
  gap: 9px;
}

.contact-form__row label {
  color: #102c5c;
  font-size: 14px;
  font-weight: 800;
}

.contact-form__row label span,
.contact-form__row label em {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 10px;
  font-style: normal;
}

.contact-form__row label span {
  color: #52637c;
  background: #edf1f5;
}

.contact-form__row label em {
  color: #fff;
  background: #0755b5;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #c8d5e5;
  border-radius: 8px;
  color: #132b52;
  background: #fff;
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input,
.contact-form select {
  min-height: 52px;
  padding: 0 15px;
}

.contact-form textarea {
  min-height: 148px;
  padding: 14px 15px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #0869c9;
  outline: 0;
  box-shadow: 0 0 0 4px rgba(8, 105, 201, .12);
}

.contact-form__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #465b78;
  font-size: 13px;
  line-height: 1.6;
  cursor: pointer;
}

.contact-form__consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 1px;
  accent-color: #0755b5;
}

.contact-form__submit {
  display: grid;
  min-height: 68px;
  grid-template-columns: 1fr 24px;
  align-items: center;
  padding: 0 24px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #075bd7, #06318e);
  box-shadow: 0 12px 24px rgba(0, 55, 150, .2);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .06em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
  box-shadow: 0 16px 30px rgba(0, 55, 150, .28);
  transform: translateY(-2px);
}

.contact-form__submit:focus-visible {
  outline: 3px solid rgba(8, 105, 201, .32);
  outline-offset: 3px;
}

.contact-form__submit b {
  font-size: 22px;
  transition: transform .2s ease;
}

.contact-form__submit:hover b {
  transform: translateX(4px);
}

.contact-form__note,
.contact-form__status {
  margin: 0;
  font-size: 12px;
  text-align: center;
}

.contact-form__note {
  color: #667792;
}

.contact-form__status {
  min-height: 1.6em;
  color: #0755b5;
  font-weight: 700;
}

@media (max-width: 900px) {
  .contact-form-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
  }

  .contact-form-guide,
  .contact-form {
    border-radius: 14px;
  }

  .contact-form-guide {
    padding: 28px 24px;
  }

  .contact-form-guide h3 {
    font-size: 20px;
  }

  .contact-form {
    gap: 18px;
    padding: 28px 24px;
  }
}

@media (max-width: 600px) {
  .contact-form-guide,
  .contact-form {
    padding: 24px 18px;
  }

  .contact-form-guide h3 {
    font-size: 18px;
  }

  .contact-form__submit {
    min-height: 62px;
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-form input,
  .contact-form select,
  .contact-form textarea,
  .contact-form__submit,
  .contact-form__submit b {
    transition: none;
  }
}

/* Thanks page */
.thanks-page {
  display: grid;
  min-height: 100vh;
  grid-template-rows: auto 1fr auto;
  margin: 0;
  color: #061d50;
  background:
    linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,255,255,.78)),
    url("Images/final-contact-background.png") center / cover fixed no-repeat;
}

.thanks-header {
  display: flex;
  min-height: 88px;
  align-items: center;
  padding: 16px clamp(22px, 5vw, 72px);
  border-bottom: 1px solid rgba(184, 199, 219, .65);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(8px);
}

.thanks-header img {
  display: block;
  width: min(245px, 62vw);
  height: auto;
}

.thanks-main {
  display: grid;
  padding: clamp(50px, 8vw, 100px) 20px;
  place-items: center;
}

.thanks-card {
  width: min(760px, 100%);
  padding: clamp(38px, 6vw, 68px);
  border: 1px solid rgba(159, 180, 207, .55);
  border-radius: 22px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 24px 60px rgba(0, 38, 100, .12);
  text-align: center;
}

.thanks-card__icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
}

.thanks-card__icon svg {
  width: 100%;
  height: 100%;
  fill: #edf5ff;
  stroke: #0755b5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.thanks-card__eyebrow {
  margin: 0 0 14px;
  color: #0755b5;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
}

.thanks-card h1 {
  margin: 0;
  color: #001d57;
  font-size: clamp(27px, 4vw, 40px);
  line-height: 1.45;
  letter-spacing: .04em;
}

.thanks-card__lead {
  margin: 22px 0 0;
  color: #435875;
  font-size: 15px;
  line-height: 1.9;
}

.thanks-card__notice {
  margin-top: 30px;
  padding: 24px 26px;
  border-radius: 12px;
  background: #f4f8fd;
  text-align: left;
}

.thanks-card__notice h2 {
  margin: 0 0 12px;
  color: #073578;
  font-size: 17px;
}

.thanks-card__notice p {
  margin: 8px 0 0;
  color: #536680;
  font-size: 13px;
  line-height: 1.75;
}

.thanks-card__back {
  display: grid;
  width: min(360px, 100%);
  min-height: 62px;
  margin: 32px auto 0;
  grid-template-columns: 1fr 24px;
  align-items: center;
  padding: 0 22px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #075bd7, #06318e);
  box-shadow: 0 12px 24px rgba(0, 55, 150, .2);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .06em;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.thanks-card__back:hover,
.thanks-card__back:focus-visible {
  box-shadow: 0 16px 30px rgba(0, 55, 150, .28);
  transform: translateY(-2px);
}

.thanks-card__back:focus-visible {
  outline: 3px solid rgba(8, 105, 201, .32);
  outline-offset: 3px;
}

.thanks-card__back b {
  font-size: 21px;
}

.thanks-footer {
  padding: 22px;
  color: #536680;
  background: rgba(255, 255, 255, .86);
  font-size: 12px;
  text-align: center;
}

@media (max-width: 600px) {
  .thanks-header {
    min-height: 72px;
  }

  .thanks-main {
    padding: 36px 16px 54px;
  }

  .thanks-card {
    padding: 34px 20px;
    border-radius: 16px;
  }

  .thanks-card__icon {
    width: 66px;
    height: 66px;
  }

  .thanks-card__lead br {
    display: none;
  }

  .thanks-card__notice {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .thanks-card__back {
    transition: none;
  }
}

@media (max-width: 900px) {
  .profile-section__visual {
    top: 74px;
    right: -54px;
    width: 440px;
    height: 520px;
  }

  .profile-section__photo {
    right: 0;
    width: 424px;
    height: 505px;
  }

  .profile-section__photo img {
    object-fit: cover;
    object-position: center top;
  }

  .profile-section__hexagons {
    top: 26px;
    right: -12px;
    transform: scale(0.86);
  }

  .profile-section__title {
    max-width: 540px;
  }

  .profile-section__meta {
    max-width: 300px;
  }

  .profile-section__text {
    position: relative;
    z-index: 3;
  }

  .profile-section__cards {
    margin-top: 50px;
  }

  .profile-section__card {
    min-height: 202px;
    padding: 29px 34px 28px 31px;
    grid-template-columns: 128px 1fr;
    column-gap: 38px;
  }

  .profile-section__card-icon {
    width: 120px;
    height: 120px;
  }

  .profile-section__card-icon img {
    width: 72px;
    height: 72px;
  }

  .profile-section__card h3 {
    font-size: 27px;
  }

  .profile-section__card p {
    font-size: 17px;
    line-height: 1.78;
  }
}

.profile-section {
  --profile-navy: #001c57;
  --profile-blue: #007dcc;
  --profile-green: #8bcf7d;
  --profile-text: #071f50;
  position: relative;
  overflow: hidden;
  padding: 62px 0 88px;
  color: var(--profile-text);
  background:
    radial-gradient(circle at 77% 18%, rgba(204, 229, 236, 0.78) 0, rgba(204, 229, 236, 0) 30%),
    linear-gradient(120deg, #f8fbfd 0%, #f0f7fb 52%, #eaf4f8 100%);
}

.profile-section::before {
  position: absolute;
  top: 118px;
  right: 42px;
  width: 190px;
  height: 210px;
  content: "";
  background-image: radial-gradient(rgba(0, 28, 87, 0.14) 1px, transparent 1px);
  background-size: 13px 13px;
  opacity: 0.3;
}

.profile-section::after {
  position: absolute;
  bottom: -94px;
  left: -5%;
  z-index: 0;
  width: 110%;
  height: 142px;
  content: "";
  background: var(--profile-navy);
  transform: skewY(-2.6deg);
  transform-origin: left top;
}

.profile-section__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1402px);
  margin: 0 auto;
  padding: 0 34px;
}

.profile-section__main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(620px, 0.98fr) minmax(520px, 1.02fr);
  column-gap: 44px;
  align-items: start;
}

.profile-section__content {
  position: relative;
  z-index: 2;
}

.profile-section__eyebrow {
  margin: 0 0 27px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--profile-navy);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.055em;
}

.profile-section__eyebrow-line {
  width: 1px;
  height: 18px;
  background: var(--profile-navy);
  opacity: 0.72;
}

.profile-section__title {
  margin: 0;
  color: var(--profile-navy);
  font-size: 43px;
  font-weight: 900;
  line-height: 1.48;
  letter-spacing: 0.08em;
}

.profile-section__title span {
  color: var(--profile-blue);
}

.profile-section__sp-br {
  display: none;
}

.profile-section__role {
  margin: 30px 0 12px;
  color: var(--profile-navy);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.profile-section__person-row {
  display: flex;
  align-items: center;
  gap: 42px;
}

.profile-section__name {
  margin: 0;
  color: var(--profile-navy);
  font-size: 34px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.profile-section__meta {
  margin: 0;
  color: var(--profile-navy);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.profile-section__divider {
  width: 680px;
  height: 2px;
  margin: 23px 0 29px;
  background: linear-gradient(90deg, var(--profile-blue) 0%, var(--profile-blue) 11%, #b7d8cf 59%, var(--profile-green) 100%);
}

.profile-section__text {
  color: var(--profile-text);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.92;
  letter-spacing: 0.055em;
}

.profile-section__text p {
  margin: 0;
}

.profile-section__text p + p {
  margin-top: 30px;
}

.profile-section__text strong {
  color: var(--profile-blue);
  font-weight: 900;
}

.profile-section__visual {
  position: relative;
  min-height: 585px;
}

.profile-section__photo {
  position: absolute;
  top: -26px;
  right: 6px;
  width: 603px;
  height: 642px;
  overflow: hidden;
  background:
    radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.52) 0, rgba(255, 255, 255, 0) 38%),
    #dceef5;
  border-radius: 48% 52% 46% 54% / 39% 39% 61% 61%;
}

.profile-section__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.profile-section__hexagons {
  position: absolute;
  top: 86px;
  right: -8px;
  width: 184px;
  height: 202px;
}

.profile-section__hexagons span {
  position: absolute;
  width: 94px;
  height: 82px;
  display: block;
  border: 1px solid rgba(0, 125, 204, 0.22);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.profile-section__hexagons span:nth-child(1) {
  top: 0;
  right: 0;
}

.profile-section__hexagons span:nth-child(2) {
  top: 62px;
  left: 0;
  width: 70px;
  height: 62px;
}

.profile-section__hexagons span:nth-child(3) {
  top: 104px;
  right: 0;
  width: 98px;
  height: 86px;
}

.profile-section__cards {
  position: relative;
  z-index: 3;
  margin-top: -7px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.profile-section__card {
  min-height: 204px;
  padding: 36px 30px 32px 36px;
  display: grid;
  grid-template-columns: 96px 1fr;
  column-gap: 24px;
  align-items: start;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(0, 28, 87, 0.07);
}

.profile-section__card-icon {
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  background: #eef4f8;
  border-radius: 50%;
}

.profile-section__card-icon img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.profile-section__card h3 {
  margin: 0 0 12px;
  color: var(--profile-navy);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: 0.06em;
}

.profile-section__card p {
  margin: 0;
  color: var(--profile-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.85;
}

.profile-section__card-body::after {
  width: 46px;
  height: 3px;
  margin-top: 28px;
  display: block;
  content: "";
  background: var(--profile-blue);
  border-radius: 999px;
}

@media (max-width: 900px) {
  .profile-section {
    padding: 55px 0 64px;
  }

  .profile-section::after {
    display: none;
  }

  .profile-section__inner {
    width: 100%;
    padding: 0 30px;
  }

  .profile-section__main {
    display: block;
  }

  .profile-section__eyebrow {
    margin-bottom: 31px;
    gap: 19px;
    font-size: 16px;
  }

  .profile-section__title {
    max-width: 560px;
    font-size: 46px;
    line-height: 1.52;
    letter-spacing: 0.075em;
  }

  .profile-section__sp-br {
    display: inline;
  }

  .profile-section__person {
    max-width: 510px;
  }

  .profile-section__role {
    margin-top: 37px;
    font-size: 18px;
  }

  .profile-section__person-row {
    gap: 34px;
  }

  .profile-section__name {
    font-size: 34px;
    letter-spacing: 0.13em;
  }

  .profile-section__divider {
    width: 490px;
    max-width: 64vw;
    height: 3px;
    margin: 23px 0 32px;
  }

  .profile-section__text {
    font-size: 19px;
    line-height: 1.92;
  }

  .profile-section__visual {
    position: absolute;
    top: 20px;
    right: -18px;
    z-index: 1;
    width: 385px;
    height: 500px;
    min-height: 0;
    pointer-events: none;
  }

  .profile-section__photo {
    top: 0;
    right: 0;
    width: 374px;
    height: 460px;
  }

  .profile-section__hexagons {
    top: 18px;
    right: -22px;
    transform: scale(0.82);
    transform-origin: top right;
  }

  .profile-section__cards {
    margin-top: 58px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .profile-section__card {
    min-height: 205px;
    padding: 31px 36px 29px 33px;
    grid-template-columns: 132px 1fr;
    column-gap: 40px;
    align-items: center;
    border-radius: 11px;
  }

  .profile-section__card-icon {
    width: 124px;
    height: 124px;
  }

  .profile-section__card-icon img {
    width: 74px;
    height: 74px;
  }

  .profile-section__card h3 {
    font-size: 28px;
  }

  .profile-section__card p {
    font-size: 18px;
  }
}

@media (min-width: 901px) {
  .hero-visual {
    margin-top: 0;
    transform: translateY(-70px);
  }

  .hero-visual img {
    max-width: 760px;
  }
}

@media (max-width: 900px) {
  .lead {
    max-width: 720px;
    font-size: 23px;
    line-height: 1.78;
  }

  .lead br {
    display: block;
  }

  .hero-visual {
    margin-top: 66px;
  }

  .hero-visual img {
    width: 108%;
    max-width: 735px;
    margin-right: auto;
    margin-left: -4%;
  }

  .proof-list {
    margin-top: 74px;
    padding-top: 36px;
    padding-bottom: 34px;
  }
}

/* Profile section final adjustment */
@media (min-width: 901px) {
  .profile-section {
    padding-top: 60px;
    padding-bottom: 70px;
  }

  .profile-section__divider {
    margin-top: 19px;
    margin-bottom: 23px;
  }

  .profile-section__text {
    max-width: 690px;
    font-size: 15px;
    line-height: 1.78;
    letter-spacing: 0.052em;
  }

  .profile-section__text p + p {
    margin-top: 20px;
  }

  .profile-section__cards {
    margin-top: -42px;
  }

  .profile-section__card {
    min-height: 184px;
    padding: 28px 34px 26px 38px;
    grid-template-columns: 90px 1fr;
    column-gap: 26px;
  }

  .profile-section__card-icon {
    width: 82px;
    height: 82px;
  }

  .profile-section__card-icon img {
    width: 50px;
    height: 50px;
  }

  .profile-section__card h3 {
    margin-bottom: 8px;
    font-size: 19px;
    line-height: 1.42;
  }

  .profile-section__card p {
    font-size: 13px;
    line-height: 1.68;
  }

  .profile-section__card-body::after {
    margin-top: 20px;
  }
}

@media (max-width: 900px) {
  .profile-section {
    padding-bottom: 44px;
  }

  .profile-section__cards {
    margin-top: 94px;
    gap: 14px;
  }

  .profile-section__card {
    min-height: 192px;
    padding: 27px 34px 26px 31px;
    grid-template-columns: 124px 1fr;
    column-gap: 36px;
  }

  .profile-section__card-icon {
    width: 116px;
    height: 116px;
  }

  .profile-section__card-icon img {
    width: 70px;
    height: 70px;
  }

  .profile-section__card h3 {
    margin-bottom: 9px;
    font-size: 26px;
    line-height: 1.4;
  }

  .profile-section__card p {
    font-size: 17px;
    line-height: 1.72;
  }

  .profile-section__card-body::after {
    margin-top: 20px;
  }
}

@media (max-width: 600px) {
  .profile-section__cards {
    margin-top: 58px;
  }

  .profile-section__card {
    min-height: 164px;
  }
}

/* Researcher insight section */
.researcher-insight-section {
  --ris-navy: #001d59;
  --ris-blue: #087bc9;
  --ris-green: #83cc7b;
  --ris-line: #d8e4ed;
  --ris-sheet: url("Images/researcher-insight-icons-sheet.png");
  position: relative;
  overflow: hidden;
  padding: 72px 0 68px;
  color: var(--ris-navy);
  background:
    radial-gradient(circle at 88% 18%, rgba(202, 228, 236, 0.6), transparent 31%),
    linear-gradient(120deg, #f7fbfd, #eef6fa);
}

.researcher-insight-section__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1398px);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: minmax(420px, 0.78fr) minmax(620px, 1fr);
  gap: 48px;
  align-items: center;
}

.researcher-insight-section__eyebrow {
  margin: 0 0 24px;
  color: #167963;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.07em;
}

.researcher-insight-section__title {
  margin: 0;
  font-size: 43px;
  font-weight: 900;
  line-height: 1.43;
  letter-spacing: 0.09em;
}

.researcher-insight-section__title span,
.researcher-insight-section__lead strong,
.researcher-insight-section__message strong {
  color: var(--ris-blue);
}

.researcher-insight-section__accent {
  width: 88px;
  height: 3px;
  margin: 22px 0 28px;
  background: linear-gradient(90deg, var(--ris-blue) 55%, var(--ris-green));
}

.researcher-insight-section__lead {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: 0.055em;
}

.researcher-insight-section__message {
  width: 500px;
  margin-top: 38px;
  padding: 29px 34px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 26px;
  align-items: center;
  border-radius: 9px;
  background: linear-gradient(100deg, #e8f7df, #e1f0fa);
}

.researcher-insight-section__message p {
  margin: 0;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.72;
  letter-spacing: 0.055em;
}

.researcher-insight-section__icon {
  width: 45px;
  height: 45px;
  display: inline-block;
  flex: 0 0 auto;
  background-image: var(--ris-sheet);
  background-repeat: no-repeat;
  background-size: 900% 100%;
}

.researcher-insight-section__message .researcher-insight-section__icon {
  width: 58px;
  height: 58px;
}

.researcher-insight-section__icon--message { background-position: 0% 50%; }
.researcher-insight-section__icon--scope { background-position: 12.5% 50%; }
.researcher-insight-section__icon--technique { background-position: 25% 50%; }
.researcher-insight-section__icon--result { background-position: 37.5% 50%; }
.researcher-insight-section__icon--price { background-position: 50% 50%; }
.researcher-insight-section__icon--deadline { background-position: 62.5% 50%; }
.researcher-insight-section__icon--flow { background-position: 75% 50%; }
.researcher-insight-section__icon--faq { background-position: 87.5% 50%; }
.researcher-insight-section__icon--nda { background-position: 100% 50%; }

.researcher-insight-section__table {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(0, 28, 87, 0.1);
}

.researcher-insight-section__table-head {
  min-height: 57px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-align: center;
}

.researcher-insight-section__table-head > div {
  display: grid;
  place-items: center;
}

.researcher-insight-section__table-head > div:first-child {
  background: var(--ris-navy);
}

.researcher-insight-section__table-head > div:last-child {
  background: linear-gradient(100deg, #0877ce, var(--ris-green));
}

.researcher-insight-section__row {
  display: grid;
  grid-template-columns: minmax(245px, 0.48fr) 24px minmax(270px, 0.52fr);
  align-items: center;
  min-height: 75px;
  background: linear-gradient(90deg, #fff 48.5%, #f5faf7 48.6%);
}

.researcher-insight-section__row + .researcher-insight-section__row {
  border-top: 1px solid var(--ris-line);
}

.researcher-insight-section__info-cell {
  padding: 0 24px 0 45px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  align-items: center;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.45;
}

.researcher-insight-section__arrow {
  width: 0;
  height: 0;
  justify-self: center;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 9px solid var(--ris-blue);
}

.researcher-insight-section__mind-cell {
  padding: 0 32px 0 28px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0.045em;
}

@media (max-width: 900px) {
  .researcher-insight-section {
    padding: 30px 0 42px;
  }

  .researcher-insight-section__inner {
    width: 100%;
    padding: 0 36px;
    display: block;
  }

  .researcher-insight-section__eyebrow {
    margin-bottom: 18px;
    font-size: 16px;
  }

  .researcher-insight-section__title {
    font-size: 42px;
    line-height: 1.36;
    letter-spacing: 0.075em;
  }

  .researcher-insight-section__lead {
    font-size: 17px;
    line-height: 1.75;
  }

  .researcher-insight-section__message {
    width: 100%;
    margin-top: 28px;
    padding: 25px 34px;
    grid-template-columns: 82px 1fr;
    gap: 28px;
  }

  .researcher-insight-section__message .researcher-insight-section__icon {
    width: 66px;
    height: 66px;
  }

  .researcher-insight-section__message p {
    font-size: 19px;
  }

  .researcher-insight-section__table-wrap {
    margin-top: 28px;
  }

  .researcher-insight-section__row {
    grid-template-columns: minmax(260px, 0.47fr) 23px minmax(310px, 0.53fr);
    min-height: 82px;
  }

  .researcher-insight-section__info-cell {
    padding-left: 36px;
    font-size: 17px;
  }

  .researcher-insight-section__mind-cell {
    padding: 0 24px 0 26px;
    font-size: 16px;
  }
}

/* Information gap section */
.info-gap-section {
  --igs-navy: #001d59;
  --igs-blue: #087bcc;
  --igs-green: #78ca70;
  --igs-line: #dbe6ee;
  --igs-sheet: url("Images/info-gap-icons-sheet.png");
  position: relative;
  overflow: hidden;
  padding: 58px 0 46px;
  color: var(--igs-navy);
  background:
    radial-gradient(circle at 84% 12%, rgba(207, 231, 239, 0.7), transparent 30%),
    linear-gradient(120deg, #f8fbfd, #eef6fa);
}

.info-gap-section__inner {
  width: min(100%, 1398px);
  margin: 0 auto;
  padding: 0 44px;
  display: grid;
  grid-template-columns: minmax(470px, 0.74fr) minmax(285px, 0.48fr) minmax(420px, 0.78fr);
  grid-template-rows: auto auto auto;
  gap: 0 36px;
  align-items: start;
}

.info-gap-section__lead-area {
  grid-column: 1;
}

.info-gap-section__eyebrow {
  margin: 0 0 22px;
  color: #178066;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.07em;
}

.info-gap-section__title {
  margin: 0;
  font-size: 41px;
  font-weight: 900;
  line-height: 1.36;
  letter-spacing: 0.08em;
}

.info-gap-section__title span,
.info-gap-section strong,
.info-gap-section__check-list span,
.info-gap-section__loss-card span:not(.info-gap-section__icon) {
  color: var(--igs-blue);
}

.info-gap-section__title::after {
  width: 90px;
  height: 3px;
  margin: 22px 0 25px;
  display: block;
  content: "";
  background: linear-gradient(90deg, var(--igs-blue) 56%, var(--igs-green));
}

.info-gap-section__text {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.86;
  letter-spacing: 0.055em;
}

.info-gap-section__visual {
  grid-column: 2;
  width: 350px;
  margin-top: 34px;
  justify-self: center;
}

.info-gap-section__visual img {
  width: 100%;
  display: block;
}

.info-gap-section__receptacle {
  grid-column: 1 / span 2;
  grid-row: 2;
  margin-top: 38px;
  display: grid;
  grid-template-columns: minmax(310px, 0.84fr) minmax(390px, 1fr);
  overflow: hidden;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 28, 87, 0.08);
}

.info-gap-section__receptacle-head {
  padding: 31px 34px;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 25px;
  align-items: center;
  background: linear-gradient(100deg, #e9f8e0, #e2f1fa);
}

.info-gap-section__receptacle-head p {
  margin: 0;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.74;
}

.info-gap-section__check-list {
  margin: 0;
  padding: 26px 28px 24px 30px;
  display: grid;
  gap: 11px;
  list-style: none;
  border-left: 1px solid var(--igs-line);
}

.info-gap-section__check-list li {
  position: relative;
  padding-left: 32px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.58;
}

.info-gap-section__check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  content: "✓";
  color: var(--igs-blue);
  border: 1px solid #c8d9e7;
  border-radius: 50%;
}

.info-gap-section__loss {
  grid-column: 3;
  grid-row: 1 / span 2;
}

.info-gap-section__loss-title {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 17px;
  font-weight: 900;
  white-space: nowrap;
}

.info-gap-section__loss-title::before,
.info-gap-section__loss-title::after {
  height: 1px;
  flex: 1;
  content: "";
  background: #197bb5;
}

.info-gap-section__loss-cards {
  display: grid;
  gap: 17px;
}

.info-gap-section__loss-card {
  position: relative;
  min-height: 100px;
  padding: 22px 28px 22px 88px;
  display: flex;
  align-items: center;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(0, 28, 87, 0.07);
}

.info-gap-section__loss-card p {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.72;
}

.info-gap-section__icon {
  display: inline-block;
  background-image: var(--igs-sheet);
  background-repeat: no-repeat;
  background-size: 500% 100%;
}

.info-gap-section__icon--receptacle {
  width: 62px;
  height: 62px;
  background-position: 0 50%;
}

.info-gap-section__loss-card .info-gap-section__icon {
  position: absolute;
  top: 50%;
  left: 28px;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
}

.info-gap-section__icon--card01 { background-position: 25% 50%; }
.info-gap-section__icon--card02 { background-position: 50% 50%; }
.info-gap-section__icon--card03 { background-position: 75% 50%; }
.info-gap-section__icon--card04 { background-position: 100% 50%; }

.info-gap-section__bottom {
  grid-column: 1 / -1;
  grid-row: 3;
  margin-top: 28px;
  text-align: center;
}

.info-gap-section__down {
  position: relative;
  width: 44px;
  height: 34px;
  margin: 0 auto 22px;
}

.info-gap-section__down span {
  position: absolute;
  left: 50%;
  width: 24px;
  height: 24px;
  border-right: 3px solid var(--igs-navy);
  border-bottom: 3px solid var(--igs-navy);
  transform: translateX(-50%) rotate(45deg);
}

.info-gap-section__down span:last-child {
  top: 13px;
}

.info-gap-section__bottom p {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.7;
  letter-spacing: 0.07em;
}

@media (max-width: 900px) {
  .info-gap-section {
    padding: 48px 0;
  }

  .info-gap-section__inner {
    width: 100%;
    padding: 0 30px;
    display: block;
  }

  .info-gap-section__lead-area {
    position: relative;
    z-index: 2;
  }

  .info-gap-section__eyebrow {
    font-size: 16px;
  }

  .info-gap-section__title {
    max-width: 500px;
    font-size: 42px;
    line-height: 1.42;
  }

  .info-gap-section__text {
    max-width: 540px;
    font-size: 17px;
    line-height: 1.76;
  }

  .info-gap-section__visual {
    position: absolute;
    top: 94px;
    right: 12px;
    z-index: 1;
    width: 330px;
    margin: 0;
  }

  .info-gap-section__receptacle {
    margin-top: 38px;
    display: block;
  }

  .info-gap-section__receptacle-head {
    grid-template-columns: 94px 1fr;
  }

  .info-gap-section__icon--receptacle {
    width: 78px;
    height: 78px;
  }

  .info-gap-section__receptacle-head p {
    font-size: 21px;
  }

  .info-gap-section__check-list {
    padding: 23px 26px 25px;
    gap: 13px;
    border-top: 1px solid var(--igs-line);
    border-left: 0;
  }

  .info-gap-section__check-list li {
    padding-left: 36px;
    font-size: 17px;
  }

  .info-gap-section__loss {
    margin-top: 34px;
  }

  .info-gap-section__loss-title {
    font-size: 20px;
  }

  .info-gap-section__loss-card {
    min-height: 104px;
    padding-left: 164px;
  }

  .info-gap-section__loss-card .info-gap-section__icon {
    left: 55px;
    width: 76px;
    height: 76px;
  }

  .info-gap-section__loss-card p {
    font-size: 18px;
  }

  .info-gap-section__bottom {
    margin-top: 42px;
  }

  .info-gap-section__bottom p {
    padding: 28px;
    font-size: 21px;
    border-radius: 10px;
    background: linear-gradient(100deg, #e5f1fb, #edf7f0);
  }
}

/* Web foundation section */
.web-foundation-section {
  --wfs-navy: #001d59;
  --wfs-blue: #087bcc;
  --wfs-green: #65bb65;
  --wfs-line: #dce7ee;
  --wfs-sheet: url("Images/web-foundation-icons-sheet.png");
  padding: 52px 0 48px;
  overflow: hidden;
  color: var(--wfs-navy);
  background: linear-gradient(120deg, #f9fcfd, #eef6fa);
}

.web-foundation-section__inner {
  width: min(100%, 1398px);
  margin: 0 auto;
  padding: 0 42px;
}

.web-foundation-section__hero {
  display: grid;
  grid-template-columns: minmax(560px, 0.88fr) minmax(520px, 1fr);
  gap: 50px;
}

.web-foundation-section__eyebrow {
  margin: 0 0 22px;
  color: #168465;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.07em;
}

.web-foundation-section__title {
  margin: 0;
  font-size: 39px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.web-foundation-section__title span {
  color: var(--wfs-blue);
  background: linear-gradient(90deg, var(--wfs-blue), var(--wfs-green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.web-foundation-section__accent {
  width: 88px;
  height: 3px;
  margin: 21px 0 25px;
  background: linear-gradient(90deg, var(--wfs-blue) 55%, var(--wfs-green));
}

.web-foundation-section__lead {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.86;
  letter-spacing: 0.055em;
}

.web-foundation-section__photo {
  width: 650px;
  height: 316px;
  margin-top: -10px;
  overflow: hidden;
  justify-self: end;
}

.web-foundation-section__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.web-foundation-section__flow {
  margin-top: 42px;
}

.web-foundation-section__flow-title {
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 22px;
  font-weight: 900;
}

.web-foundation-section__flow-title::before,
.web-foundation-section__flow-title::after {
  width: 110px;
  height: 1px;
  content: "";
  background: #197bb5;
}

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

.web-foundation-section__step {
  position: relative;
  min-height: 158px;
  padding: 0 28px 0 30px;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 22px;
  border-right: 1px solid var(--wfs-line);
}

.web-foundation-section__step:last-child {
  border-right: 0;
}

.web-foundation-section__step:not(:last-child)::after {
  position: absolute;
  top: 62px;
  right: -8px;
  width: 14px;
  height: 14px;
  content: "";
  border-right: 3px solid var(--wfs-blue);
  border-bottom: 3px solid var(--wfs-blue);
  transform: rotate(-45deg);
}

.web-foundation-section__step-icon,
.web-foundation-section__result-icon {
  display: block;
  background: var(--wfs-sheet) no-repeat;
  background-size: 400% 100%;
}

.web-foundation-section__step-icon {
  width: 68px;
  height: 68px;
}

.web-foundation-section__step-icon--traffic { background-position: 0 50%; }
.web-foundation-section__step-icon--information { background-position: 33.333% 50%; }
.web-foundation-section__step-icon--path { background-position: 66.666% 50%; }
.web-foundation-section__step-icon--sales { background-position: 100% 50%; }

.web-foundation-section__step h4 {
  margin: 0 0 9px;
  font-size: 20px;
  line-height: 1.4;
}

.web-foundation-section__step p {
  margin: 0 0 13px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
}

.web-foundation-section__step ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  list-style: none;
}

.web-foundation-section__step li {
  font-size: 13px;
  font-weight: 700;
}

.web-foundation-section__step li::before {
  content: "・";
}

.web-foundation-section__result {
  position: relative;
  min-height: 76px;
  margin-top: 45px;
  padding: 22px 126px 22px 118px;
  display: flex;
  align-items: center;
  border-radius: 6px;
  background: #e7f0f9;
}

.web-foundation-section__check {
  position: absolute;
  top: 50%;
  left: 48px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  transform: translateY(-50%);
}

.web-foundation-section__check::after {
  position: absolute;
  top: 13px;
  left: 12px;
  width: 15px;
  height: 8px;
  content: "";
  border-left: 4px solid var(--wfs-blue);
  border-bottom: 4px solid var(--wfs-blue);
  transform: rotate(-45deg);
}

.web-foundation-section__result p {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.75;
}

.web-foundation-section__result p span {
  color: var(--wfs-blue);
}

.web-foundation-section__result p strong {
  color: var(--wfs-green);
}

.web-foundation-section__result-icon {
  position: absolute;
  right: 30px;
  bottom: 10px;
  width: 86px;
  height: 66px;
  background-position: 100% 50%;
}

@media (max-width: 900px) {
  .web-foundation-section {
    padding: 34px 0 44px;
  }

  .web-foundation-section__inner {
    padding: 0 30px;
  }

  .web-foundation-section__hero {
    position: relative;
    display: block;
  }

  .web-foundation-section__copy {
    position: relative;
    z-index: 2;
  }

  .web-foundation-section__eyebrow {
    font-size: 16px;
  }

  .web-foundation-section__title {
    max-width: 555px;
    font-size: 38px;
    line-height: 1.42;
  }

  .web-foundation-section__lead {
    max-width: 430px;
    font-size: 17px;
    line-height: 1.78;
  }

  .web-foundation-section__photo {
    position: absolute;
    top: 58px;
    right: -30px;
    z-index: 1;
    width: 365px;
    height: 270px;
    margin: 0;
  }

  .web-foundation-section__flow {
    margin-top: 54px;
  }

  .web-foundation-section__flow-title {
    font-size: 24px;
  }

  .web-foundation-section__steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .web-foundation-section__step {
    min-height: 112px;
    padding: 24px 72px 24px 28px;
    grid-template-columns: 96px 1fr;
    align-items: center;
    border: 0;
    border-radius: 8px;
    background: #fff;
  }

  .web-foundation-section__step:not(:last-child)::after {
    top: 50%;
    right: 25px;
    transform: translateY(-50%) rotate(-45deg);
  }

  .web-foundation-section__step-icon {
    width: 78px;
    height: 78px;
  }

  .web-foundation-section__step h4 {
    font-size: 26px;
  }

  .web-foundation-section__step p {
    font-size: 16px;
  }

  .web-foundation-section__step li {
    font-size: 15px;
  }

  .web-foundation-section__result {
    min-height: 118px;
    margin-top: 25px;
    padding: 29px 130px 29px 120px;
  }

  .web-foundation-section__check {
    left: 38px;
    width: 62px;
    height: 62px;
  }

  .web-foundation-section__check::after {
    top: 20px;
    left: 18px;
    width: 21px;
    height: 12px;
  }

  .web-foundation-section__result p {
    font-size: 21px;
  }
}

/* Support process section */
.support-process-section {
  --sps-navy: #001d59;
  --sps-blue: #087bcc;
  --sps-green: #51b665;
  --sps-sheet: url("Images/support-process-icons-sheet.png");
  padding: 58px 0 52px;
  color: var(--sps-navy);
  background: #fff;
}

.support-process-section__inner {
  width: min(100%, 1398px);
  margin: 0 auto;
  padding: 0 42px;
}

.support-process-section__head {
  text-align: center;
}

.support-process-section__head > p {
  margin: 0;
  color: #168465;
  font-size: 15px;
  font-weight: 900;
}

.support-process-section__head > p::after {
  width: 92px;
  height: 3px;
  margin: 17px auto 23px;
  display: block;
  content: "";
  background: linear-gradient(90deg, var(--sps-blue), var(--sps-green));
}

.support-process-section__head h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.48;
  letter-spacing: 0.09em;
}

.support-process-section__head h2 span {
  color: var(--sps-blue);
  background: linear-gradient(90deg, var(--sps-blue), var(--sps-green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.support-process-section__lead {
  margin-top: 25px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.88;
}

.support-process-section__flow-title {
  margin: 46px 0 34px;
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 24px;
  font-weight: 900;
}

.support-process-section__flow-title::before,
.support-process-section__flow-title::after {
  height: 1px;
  flex: 1;
  content: "";
  background: #85abc8;
}

.support-process-section__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.support-process-section__steps article {
  position: relative;
  min-height: 145px;
  padding: 0 28px 0 30px;
  border-right: 1px solid #dce6ef;
}

.support-process-section__steps article:last-child {
  border-right: 0;
}

.support-process-section__steps article:not(:last-child)::after {
  position: absolute;
  top: 70px;
  right: -9px;
  width: 13px;
  height: 13px;
  content: "";
  border-right: 3px solid var(--sps-blue);
  border-bottom: 3px solid var(--sps-blue);
  transform: rotate(-45deg);
}

.support-process-section__steps b {
  display: block;
  margin-bottom: 19px;
  color: var(--sps-green);
  font-size: 25px;
  text-align: center;
}

.support-process-section__steps i,
.support-process-section__cta > i {
  display: none;
  background: var(--sps-sheet) no-repeat;
  background-size: 600% 100%;
}

.support-process-section__icon--1 { background-position: 0 50% !important; }
.support-process-section__icon--2 { background-position: 20% 50% !important; }
.support-process-section__icon--3 { background-position: 40% 50% !important; }
.support-process-section__icon--4 { background-position: 60% 50% !important; }
.support-process-section__icon--5 { background-position: 80% 50% !important; }
.support-process-section__icon--6 { background-position: 100% 50% !important; }

.support-process-section__steps h4 {
  margin: 0 0 13px;
  font-size: 17px;
  line-height: 1.5;
}

.support-process-section__steps p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.78;
}

.support-process-section__cta {
  margin-top: 48px;
  padding: 29px 40px 29px 47px;
  display: grid;
  grid-template-columns: 82px 1fr 330px;
  gap: 32px;
  align-items: center;
  border-radius: 8px;
  background: #eff5fb;
}

.support-process-section__cta > i {
  width: 66px;
  height: 66px;
  display: block;
}

.support-process-section__cta strong {
  font-size: 20px;
}

.support-process-section__cta p {
  margin: 7px 0 0;
  font-size: 15px;
  font-weight: 700;
}

.support-process-section__cta a {
  height: 58px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  border-radius: 5px;
  background: #002268;
  font-size: 15px;
  font-weight: 800;
}

.support-process-section__cta a img {
  width: 25px;
}

.support-process-section__cta a span {
  margin-left: auto;
  font-size: 25px;
}

.reveal-enabled .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .7s cubic-bezier(.22, 1, .36, 1),
    transform .7s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}

.reveal-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-enabled .reveal-stagger > .reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .62s cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0ms),
    transform .62s cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-enabled .reveal-stagger.is-visible > .reveal-item {
  opacity: 1;
  transform: translateY(0);
}

.header-cta,
.btn,
.pricing-plans-cta a,
.support-process-section__cta a,
.faq-section-action a,
.final-contact-main a,
.mobile-menu__cta {
  transition:
    transform .24s ease,
    box-shadow .24s ease,
    background .24s ease,
    border-color .24s ease;
}

.header-cta .arrow,
.btn .arrow,
.pricing-plans-cta a b,
.support-process-section__cta a span,
.faq-section-action a b,
.final-contact-main a strong,
.mobile-menu__cta b {
  transition: transform .24s ease;
}

.header-cta:hover,
.header-cta:focus-visible,
.btn:hover,
.btn:focus-visible,
.pricing-plans-cta a:hover,
.pricing-plans-cta a:focus-visible,
.support-process-section__cta a:hover,
.support-process-section__cta a:focus-visible,
.faq-section-action a:hover,
.faq-section-action a:focus-visible,
.final-contact-main a:hover,
.final-contact-main a:focus-visible,
.mobile-menu__cta:hover,
.mobile-menu__cta:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(0, 28, 87, .18);
}

.header-cta:hover .arrow,
.header-cta:focus-visible .arrow,
.btn:hover .arrow,
.btn:focus-visible .arrow,
.pricing-plans-cta a:hover b,
.pricing-plans-cta a:focus-visible b,
.support-process-section__cta a:hover span,
.support-process-section__cta a:focus-visible span,
.faq-section-action a:hover b,
.faq-section-action a:focus-visible b,
.final-contact-main a:hover strong,
.final-contact-main a:focus-visible strong,
.mobile-menu__cta:hover b,
.mobile-menu__cta:focus-visible b {
  transform: translateX(5px);
}

@media (max-width: 900px) {
  .support-process-section {
    padding: 50px 0 52px;
  }

  .support-process-section__inner {
    padding: 0 30px;
  }

  .support-process-section__head > p {
    font-size: 17px;
  }

  .support-process-section__head h2 {
    font-size: 42px;
    line-height: 1.52;
  }

  .support-process-section__lead {
    font-size: 18px;
    text-align: left;
  }

  .support-process-section__lead br {
    display: none;
  }

  .support-process-section__flow-title {
    margin: 48px 0 23px;
    font-size: 25px;
  }

  .support-process-section__steps {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .support-process-section__steps article {
    min-height: 116px;
    padding: 22px 66px 22px 24px;
    display: grid;
    grid-template-columns: 66px 82px 1fr;
    gap: 19px;
    align-items: center;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 28, 87, 0.055);
  }

  .support-process-section__steps article:not(:last-child)::after {
    top: 50%;
    right: 25px;
    transform: translateY(-50%) rotate(-45deg);
  }

  .support-process-section__steps b {
    margin: 0;
    font-size: 34px;
    text-align: left;
  }

  .support-process-section__steps i {
    width: 76px;
    height: 76px;
    display: block;
  }

  .support-process-section__steps h4 {
    margin-bottom: 8px;
    font-size: 22px;
  }

  .support-process-section__steps p {
    font-size: 15px;
  }

  .support-process-section__cta {
    margin-top: 28px;
    padding: 30px 28px 28px;
    grid-template-columns: 94px 1fr;
    row-gap: 24px;
  }

  .support-process-section__cta > i {
    width: 84px;
    height: 84px;
  }

  .support-process-section__cta strong {
    font-size: 24px;
  }

  .support-process-section__cta p {
    font-size: 18px;
  }

  .support-process-section__cta a {
    grid-column: 1 / -1;
    height: 82px;
    font-size: 22px;
  }
}

/* Icon correction pass */
.pricing-plans-cta-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.pricing-plans-calendar,
.faq-section-action a > img,
.final-contact-main a > img {
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.pricing-plans-calendar {
  width: 27px;
  height: 27px;
}

.faq-section-chat img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.faq-section-benefits span > img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.faq-section-clock,
.final-contact-clock {
  position: relative;
  display: block;
  border: 3px solid #07388b;
  border-radius: 50%;
}

.faq-section-clock {
  width: 34px;
  height: 34px;
}

.faq-section-clock::before,
.final-contact-clock::before {
  content: "";
  position: absolute;
  top: 19%;
  left: 50%;
  width: 3px;
  height: 34%;
  border-radius: 2px;
  background: #07388b;
  transform: translateX(-50%);
}

.faq-section-clock::after,
.final-contact-clock::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28%;
  height: 3px;
  border-radius: 2px;
  background: #07388b;
  transform: rotate(35deg);
  transform-origin: left center;
}

.faq-section-yen {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 3px solid #07388b;
  border-radius: 50%;
  color: #07388b;
  font-size: 24px;
  font-style: normal;
  line-height: 1;
}

.faq-section-action a > img {
  width: 30px;
  height: 30px;
}

.final-contact-main a > img {
  width: 54px;
  height: 54px;
}

.final-contact-features article > b img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.final-contact-clock {
  width: 48px;
  height: 48px;
}

@media (max-width: 900px) {
  .pricing-plans-cta-icon img {
    width: 48px;
    height: 48px;
  }

  .pricing-plans-calendar,
  .faq-section-action a > img {
    width: 32px;
    height: 32px;
  }

  .final-contact-main a > img {
    width: 50px;
    height: 50px;
  }

  .final-contact-features article > b img {
    width: 66px;
    height: 66px;
  }

  .final-contact-clock {
    width: 62px;
    height: 62px;
  }
}

/* Header navigation and mobile drawer */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body.menu-open {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

main section[id] {
  scroll-margin-top: 0;
}

.global-nav a {
  position: relative;
  padding: 10px 0;
  transition: color .2s ease;
}

.global-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, #0b78cf, #58b96c);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.global-nav a:hover,
.global-nav a:focus-visible {
  color: #0874bc;
}

.global-nav a:hover::after,
.global-nav a:focus-visible::after {
  transform: scaleX(1);
}

.mobile-menu,
.mobile-menu-overlay {
  display: none;
}

@media (min-width: 1181px) {
  .header-inner {
    gap: 24px;
  }

  .global-nav {
    gap: 25px;
    font-size: 13px;
  }

  .header-cta {
    width: 268px;
  }
}

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

  main section[id] {
    scroll-margin-top: 0;
  }

  .mobile-menu-overlay {
    position: fixed;
    z-index: 1090;
    inset: 0;
    display: block;
    visibility: hidden;
    background: rgba(1, 18, 48, .55);
    opacity: 0;
    transition: opacity .28s ease, visibility .28s ease;
  }

  .mobile-menu {
    position: fixed;
    z-index: 1100;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    width: min(88vw, 620px);
    padding: 28px 34px 40px;
    flex-direction: column;
    overflow-y: auto;
    background: #fff;
    box-shadow: -18px 0 45px rgba(0, 28, 87, .14);
    transform: translateX(104%);
    transition: transform .3s ease;
  }

  .menu-open .mobile-menu-overlay {
    visibility: visible;
    opacity: 1;
  }

  .menu-open .mobile-menu {
    transform: translateX(0);
  }

  .mobile-menu__head {
    display: flex;
    min-height: 88px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e1e7ee;
  }

  .mobile-menu__logo img {
    width: 245px;
  }

  .mobile-menu__close {
    position: relative;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .mobile-menu__close::before,
  .mobile-menu__close::after {
    content: "";
    position: absolute;
    top: 25px;
    left: 8px;
    width: 38px;
    height: 3px;
    border-radius: 3px;
    background: #001c57;
  }

  .mobile-menu__close::before {
    transform: rotate(45deg);
  }

  .mobile-menu__close::after {
    transform: rotate(-45deg);
  }

  .mobile-menu__nav {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu__nav a {
    display: grid;
    min-height: 92px;
    grid-template-columns: 58px 1fr 28px;
    gap: 18px;
    align-items: center;
    border-bottom: 1px solid #e1e7ee;
    color: #061d50;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .05em;
  }

  .mobile-menu__nav img,
  .mobile-menu__nav i {
    justify-self: center;
  }

  .mobile-menu__nav img {
    width: 40px;
    height: 40px;
    object-fit: contain;
  }

  .mobile-menu__nav b {
    color: #002e76;
    font-size: 34px;
    font-weight: 400;
    line-height: 1;
  }

  .mobile-menu__yen,
  .mobile-menu__question {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 2px solid #082f75;
    border-radius: 50%;
    color: #082f75;
    font-size: 23px;
    font-style: normal;
    line-height: 1;
  }

  .mobile-menu__trend {
    position: relative;
    width: 38px;
    height: 30px;
  }

  .mobile-menu__trend::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 4px;
    width: 27px;
    height: 18px;
    border-top: 3px solid #082f75;
    border-right: 3px solid #082f75;
    transform: skewY(-36deg);
  }
}

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

  main section[id] {
    scroll-margin-top: 0;
  }

  .mobile-menu {
    width: 91vw;
    padding: 20px 24px 30px;
  }

  .mobile-menu__head {
    min-height: 74px;
  }

  .mobile-menu__logo img {
    width: 205px;
  }

  .mobile-menu__close {
    width: 44px;
    height: 44px;
  }

  .mobile-menu__close::before,
  .mobile-menu__close::after {
    top: 21px;
    left: 7px;
    width: 32px;
  }

  .mobile-menu__nav a {
    min-height: 78px;
    grid-template-columns: 48px 1fr 22px;
    gap: 13px;
    font-size: 17px;
  }

  .mobile-menu__nav img {
    width: 34px;
    height: 34px;
  }

  .mobile-menu__nav b {
    font-size: 29px;
  }
}

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

  main section[id] {
    scroll-margin-top: 0;
  }
}

/* Compact smartphone layout */
@media (max-width: 480px) {
  html {
    scroll-padding-top: 78px;
  }

  .header-inner {
    height: 78px;
    padding: 0 18px;
  }

  .site-logo img {
    width: 188px;
  }

  .menu-button {
    width: 38px;
    height: 38px;
    gap: 6px;
  }

  .menu-button span {
    width: 34px;
    height: 3px;
  }

  .fv-inner {
    padding: 36px 20px 40px;
  }

  .hero-copy,
  .hero-visual,
  .proof-list,
  .hero-actions {
    min-width: 0;
  }

  .eyebrow {
    margin-bottom: 22px;
    gap: 12px;
    font-size: 13px;
  }

  .hero-copy h1 {
    font-size: clamp(27px, 7.7vw, 32px);
    line-height: 1.45;
    letter-spacing: .045em;
  }

  .h1-nowrap {
    white-space: normal;
  }

  .lead {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.8;
  }

  .hero-visual {
    margin-top: 34px;
  }

  .hero-visual img {
    width: 100%;
    margin-left: 0;
  }

  .proof-list {
    margin-top: 34px;
    padding: 12px 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-list li {
    min-height: 104px;
    padding: 12px 8px;
    font-size: 13px;
  }

  .proof-list li:nth-child(2) {
    border-right: 0;
  }

  .proof-list li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .hero-actions {
    margin-top: 26px;
    gap: 14px;
  }

  .btn {
    height: 76px;
    font-size: 16px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0 20px;
    gap: 14px;
  }

  .profile-section,
  .researcher-insight-section,
  .info-gap-section,
  .web-foundation-section,
  .support-process-section,
  .pricing-plans-section,
  .faq-section-root,
  .final-contact-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .profile-section__inner,
  .researcher-insight-section__inner,
  .info-gap-section__inner,
  .web-foundation-section__inner,
  .support-process-section__inner,
  .pricing-plans-inner,
  .faq-section-inner,
  .final-contact-inner {
    padding-right: 20px;
    padding-left: 20px;
  }

  .profile-section__eyebrow,
  .researcher-insight-section__eyebrow,
  .info-gap-section__eyebrow,
  .web-foundation-section__eyebrow,
  .pricing-plans-eyebrow {
    font-size: 13px;
  }

  .profile-section__title,
  .researcher-insight-section__title,
  .info-gap-section__title,
  .web-foundation-section__title,
  .support-process-section__head h2,
  .pricing-plans-heading h2,
  .works-showcase-heading h2,
  .final-contact-heading h2 {
    font-size: 28px;
    line-height: 1.48;
    letter-spacing: .045em;
  }

  .profile-section__role {
    margin-top: 26px;
    font-size: 14px;
  }

  .profile-section__person-row {
    gap: 16px;
    align-items: center;
  }

  .profile-section__name {
    font-size: 25px;
  }

  .profile-section__meta {
    font-size: 11px;
  }

  .profile-section__divider {
    width: 100%;
    max-width: none;
    margin: 18px 0 22px;
  }

  .profile-section__text {
    font-size: 15px;
    line-height: 1.8;
  }

  .profile-section__visual {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: 350px;
    margin-top: 26px;
  }

  .profile-section__photo {
    width: 100%;
    height: 350px;
  }

  .profile-section__hexagons {
    display: none;
  }

  .profile-section__cards {
    margin-top: 26px;
    gap: 12px;
  }

  .profile-section__card {
    min-height: 0;
    padding: 22px 18px;
    grid-template-columns: 68px 1fr;
    column-gap: 16px;
  }

  .profile-section__card-icon {
    width: 64px;
    height: 64px;
  }

  .profile-section__card-icon img {
    width: 40px;
    height: 40px;
  }

  .profile-section__card h3 {
    font-size: 18px;
  }

  .profile-section__card p {
    font-size: 13px;
  }

  .researcher-insight-section__lead,
  .info-gap-section__text,
  .web-foundation-section__lead,
  .support-process-section__lead,
  .pricing-plans-lead {
    font-size: 14px;
  }

  .researcher-insight-section__message {
    padding: 18px;
    grid-template-columns: 52px 1fr;
    gap: 14px;
  }

  .researcher-insight-section__message .researcher-insight-section__icon {
    width: 48px;
    height: 48px;
  }

  .researcher-insight-section__message p {
    font-size: 15px;
  }

  .researcher-insight-section__table-head {
    grid-template-columns: 1fr 1fr;
    font-size: 13px;
  }

  .researcher-insight-section__row {
    grid-template-columns: 108px 16px minmax(0, 1fr);
  }

  .researcher-insight-section__row {
    min-height: 76px;
  }

  .researcher-insight-section__info-cell {
    padding-left: 10px;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 8px;
    font-size: 12px;
  }

  .researcher-insight-section__info-cell .researcher-insight-section__icon {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
  }

  .researcher-insight-section__mind-cell {
    min-width: 0;
    padding: 10px;
    font-size: 12px;
  }

  .info-gap-section__visual,
  .web-foundation-section__photo {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    margin: 24px 0 0;
  }

  .web-foundation-section__photo {
    height: 205px;
  }

  .info-gap-section__receptacle {
    margin-top: 24px;
  }

  .info-gap-section__receptacle-head {
    padding: 22px 18px;
    grid-template-columns: 58px 1fr;
    gap: 14px;
  }

  .info-gap-section__icon--receptacle {
    width: 52px;
    height: 52px;
  }

  .info-gap-section__receptacle-head p {
    font-size: 16px;
  }

  .info-gap-section__check-list {
    padding: 20px 18px;
  }

  .info-gap-section__check-list li {
    padding-left: 30px;
    font-size: 14px;
  }

  .info-gap-section__loss-title {
    gap: 10px;
    font-size: 16px;
    white-space: normal;
    text-align: center;
  }

  .info-gap-section__loss-card {
    min-height: 92px;
    padding: 18px 16px 18px 82px;
  }

  .info-gap-section__loss-card .info-gap-section__icon {
    left: 20px;
    width: 52px;
    height: 52px;
  }

  .info-gap-section__loss-card p {
    font-size: 14px;
  }

  .info-gap-section__bottom p {
    padding: 20px 16px;
    font-size: 17px;
  }

  .web-foundation-section__flow {
    margin-top: 34px;
  }

  .web-foundation-section__flow-title,
  .support-process-section__flow-title {
    gap: 14px;
    font-size: 19px;
  }

  .web-foundation-section__step {
    min-height: 0;
    padding: 20px 42px 20px 18px;
    grid-template-columns: 58px 1fr;
    gap: 14px;
  }

  .web-foundation-section__step-icon {
    width: 52px;
    height: 52px;
  }

  .web-foundation-section__step h4 {
    font-size: 18px;
  }

  .web-foundation-section__step p,
  .web-foundation-section__step li {
    font-size: 13px;
  }

  .web-foundation-section__result {
    min-height: 0;
    padding: 22px 18px 22px 66px;
  }

  .web-foundation-section__check {
    left: 18px;
    width: 38px;
    height: 38px;
  }

  .web-foundation-section__check::after {
    top: 12px;
    left: 11px;
    width: 13px;
    height: 8px;
  }

  .web-foundation-section__result p {
    font-size: 15px;
  }

  .web-foundation-section__result-icon {
    display: none;
  }

  .support-process-section__head > p {
    font-size: 14px;
  }

  .support-process-section__lead {
    font-size: 14px;
  }

  .support-process-section__steps article {
    min-height: 0;
    padding: 18px 38px 18px 14px;
    grid-template-columns: 38px 52px minmax(0, 1fr);
    gap: 10px;
  }

  .support-process-section__steps b {
    font-size: 22px;
  }

  .support-process-section__steps i {
    width: 48px;
    height: 48px;
  }

  .support-process-section__steps h4 {
    font-size: 16px;
  }

  .support-process-section__steps p {
    font-size: 12px;
  }

  .support-process-section__cta {
    padding: 22px 18px;
    grid-template-columns: 58px 1fr;
    gap: 14px;
  }

  .support-process-section__cta > i {
    width: 54px;
    height: 54px;
  }

  .support-process-section__cta strong {
    font-size: 17px;
  }

  .support-process-section__cta p {
    font-size: 13px;
  }

  .support-process-section__cta a {
    height: 66px;
    padding: 0 14px;
    font-size: 15px;
  }

  .pricing-plans-card {
    padding: 24px 18px 20px;
  }

  .pricing-plans-card h3 {
    font-size: 24px;
  }

  .pricing-plans-description,
  .pricing-plans-card li {
    font-size: 14px;
  }

  .pricing-plans-price strong {
    font-size: 31px;
  }

  .pricing-plans-cta {
    padding: 20px 18px;
    grid-template-columns: 58px 1fr;
    gap: 14px;
  }

  .pricing-plans-cta-icon {
    width: 54px;
    height: 54px;
  }

  .pricing-plans-cta strong {
    font-size: 17px;
  }

  .pricing-plans-cta p {
    font-size: 13px;
  }

  .pricing-plans-cta a {
    height: 66px;
    padding: 0 14px;
    font-size: 14px;
  }

  .works-showcase-section {
    padding-top: 42px;
  }

  .works-showcase-inner {
    padding: 0 20px;
  }

  .works-showcase-heading > p {
    font-size: 14px;
  }

  .works-showcase-heading > div,
  .works-showcase-subheading p {
    font-size: 14px;
  }

  .works-showcase-life-card {
    padding: 22px 18px;
  }

  .works-showcase-life-head {
    grid-template-columns: 44px 1fr;
  }

  .works-showcase-life-head b {
    font-size: 27px;
  }

  .works-showcase-life-head h3 {
    font-size: 18px;
  }

  .works-showcase-life-head p {
    font-size: 13px;
  }

  .works-showcase-life-card ul {
    flex-wrap: wrap;
  }

  .works-showcase-life-card li {
    min-width: calc(50% - 4px);
    padding: 10px 4px;
    font-size: 12px;
  }

  .works-showcase-life-text {
    font-size: 14px;
  }

  .works-showcase-subheading h3 {
    font-size: 23px;
  }

  .works-showcase-experience-list > a {
    grid-template-columns: 1fr;
  }

  .works-showcase-experience-list > a > img {
    height: 180px;
  }

  .faq-section-heading h2 {
    font-size: 38px;
  }

  .faq-section-heading > div,
  .faq-section-note {
    font-size: 14px;
  }

  .faq-section-list > div {
    min-height: 82px;
    padding: 14px;
    grid-template-columns: 46px 1fr 34px;
  }

  .faq-section-list b {
    width: 38px;
    height: 38px;
    font-size: 21px;
  }

  .faq-section-list p {
    font-size: 15px;
  }

  .faq-section-cta {
    padding: 22px 18px;
    grid-template-columns: 58px 1fr;
    gap: 14px;
  }

  .faq-section-chat {
    width: 54px;
    height: 54px;
  }

  .faq-section-chat img {
    width: 38px;
    height: 38px;
  }

  .faq-section-cta h3 {
    font-size: 18px;
  }

  .faq-section-cta-copy p {
    font-size: 13px;
  }

  .faq-section-benefits {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .faq-section-benefits span {
    min-height: 66px;
    border-right: 0;
  }

  .faq-section-benefits b {
    font-size: 14px;
  }

  .faq-section-action a {
    height: 66px;
    padding: 0 14px;
    font-size: 14px;
  }

  .faq-section-action p {
    font-size: 12px;
  }

  .final-contact-heading > p {
    margin-bottom: 18px;
    font-size: 15px;
  }

  .final-contact-heading > div {
    font-size: 14px;
  }

  .final-contact-main {
    margin-top: 28px;
  }

  .final-contact-main a {
    min-height: 108px;
    padding: 18px;
    grid-template-columns: 48px 1fr 24px;
    border-radius: 12px;
  }

  .final-contact-main a > img {
    width: 38px;
    height: 38px;
  }

  .final-contact-main a span,
  .final-contact-main a strong {
    font-size: 22px;
  }

  .final-contact-main a small,
  .final-contact-main > p {
    font-size: 12px;
  }

  .final-contact-features {
    margin-top: 26px;
  }

  .final-contact-features article {
    min-height: 0;
    padding: 20px 18px;
    grid-template-columns: 72px 1fr;
  }

  .final-contact-features article > b {
    width: 64px;
    height: 64px;
    font-size: 32px;
  }

  .final-contact-features article > b img,
  .final-contact-clock {
    width: 40px;
    height: 40px;
  }

  .final-contact-features h3 {
    font-size: 17px;
  }

  .final-contact-features p {
    font-size: 13px;
  }

  .mobile-menu {
    padding: 16px 20px 24px;
  }

  .mobile-menu__logo img {
    width: 180px;
  }

  .mobile-menu__nav a {
    min-height: 68px;
    grid-template-columns: 42px 1fr 20px;
    font-size: 15px;
  }
}

/* Mobile menu CTA */
.mobile-menu__cta {
  display: none;
}

@media (max-width: 1180px) {
  .mobile-menu__cta {
    min-height: 74px;
    margin-top: 24px;
    padding: 0 22px;
    display: grid;
    grid-template-columns: 34px 1fr 24px;
    gap: 14px;
    align-items: center;
    color: #fff;
    border-radius: 7px;
    background: linear-gradient(135deg, #001c57, #003083);
    box-shadow: 0 12px 28px rgba(0, 28, 87, .2);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: .04em;
  }

  .mobile-menu__cta img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
  }

  .mobile-menu__cta b {
    font-size: 24px;
    font-weight: 500;
    text-align: right;
  }
}

@media (max-width: 480px) {
  .mobile-menu__cta {
    min-height: 66px;
    margin-top: 18px;
    padding: 0 16px;
    grid-template-columns: 28px 1fr 20px;
    gap: 10px;
    font-size: 14px;
  }

  .mobile-menu__cta img {
    width: 26px;
    height: 26px;
  }
}

/* FAQ accordion */
.faq-item {
  align-self: start;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 30, 80, .07);
}

.faq-question {
  width: 100%;
  min-height: 116px;
  padding: 18px 20px 18px 30px;
  display: grid;
  grid-template-columns: 62px 1fr 72px;
  align-items: center;
  color: inherit;
  border: 0;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.faq-question b {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  color: #033b94;
  background: #f0f4fb;
  font-family: Georgia, serif;
  font-size: 26px;
}

.faq-question > span {
  color: #00236b;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.faq-question i {
  position: relative;
  height: 48px;
  border-left: 1px solid #d9e2ed;
}

.faq-question i::before,
.faq-question i::after {
  position: absolute;
  top: 23px;
  right: 10px;
  width: 23px;
  height: 2px;
  content: "";
  background: #0450b2;
  transition: transform .22s ease;
}

.faq-question i::after {
  transform: rotate(90deg);
}

.faq-question[aria-expanded="true"] i::after {
  transform: rotate(0);
}

.faq-question:focus-visible {
  outline: 3px solid rgba(8, 123, 204, .35);
  outline-offset: -3px;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  border-top: 1px solid transparent;
  transition:
    grid-template-rows .38s cubic-bezier(.22, 1, .36, 1),
    opacity .24s ease,
    border-color .24s ease;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
  border-top-color: #e2e9f0;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  padding: 0 28px 0 92px;
  overflow: hidden;
  color: #31476d;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.85;
  transition: padding .38s cubic-bezier(.22, 1, .36, 1);
}

.faq-question[aria-expanded="true"] + .faq-answer p {
  padding-top: 22px;
  padding-bottom: 26px;
}

@media (max-width: 900px) {
  .faq-question {
    min-height: 100px;
    padding: 16px 18px 16px 28px;
    grid-template-columns: 64px 1fr 50px;
  }

  .faq-question > span {
    font-size: 19px;
  }

  .faq-answer p {
    padding-right: 24px;
    padding-left: 92px;
    font-size: 16px;
  }

  .faq-question[aria-expanded="true"] + .faq-answer p {
    padding-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .faq-question {
    min-height: 82px;
    padding: 14px;
    grid-template-columns: 46px 1fr 34px;
  }

  .faq-question b {
    width: 38px;
    height: 38px;
    font-size: 21px;
  }

  .faq-question > span {
    font-size: 15px;
  }

  .faq-question i {
    height: 38px;
  }

  .faq-question i::before,
  .faq-question i::after {
    top: 18px;
    right: 4px;
    width: 18px;
  }

  .faq-answer p {
    padding-right: 16px;
    padding-left: 60px;
    font-size: 13px;
    line-height: 1.75;
  }

  .faq-question[aria-expanded="true"] + .faq-answer p {
    padding-top: 16px;
    padding-bottom: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-enabled .reveal,
  .reveal-enabled .reveal-stagger > .reveal-item,
  .header-cta,
  .header-cta .arrow,
  .btn,
  .btn .arrow,
  .pricing-plans-cta a,
  .pricing-plans-cta a b,
  .support-process-section__cta a,
  .support-process-section__cta a span,
  .faq-section-action a,
  .faq-section-action a b,
  .final-contact-main a,
  .final-contact-main a strong,
  .mobile-menu__cta,
  .mobile-menu__cta b,
  .faq-answer,
  .faq-answer p,
  .faq-question i::after {
    transition: none;
  }
}

/* PC first-view visual precision */
@media (min-width: 901px) {
  .fv-inner {
    padding-right: 20px;
    grid-template-columns: minmax(600px, 0.9fr) minmax(720px, 1.1fr);
    column-gap: 12px;
  }

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

  .hero-copy h1 {
    width: 690px;
    max-width: none;
  }

  .hero-visual {
    margin: 0 -18px 0 -10px;
    align-self: center;
    transform: translateY(-36px);
  }

  .hero-visual img {
    width: 100%;
    max-width: 850px;
  }
}
