:root {
  --ajs-navy: #082565;
  --ajs-blue: #0d55d9;
  --ajs-sky: #eaf5ff;
  --ajs-cyan: #38bdf8;
  --ajs-green: #008b79;
  --ajs-ink: #10213f;
  --ajs-muted: #53627a;
  --ajs-line: #d8e4f2;
  --ajs-white: #fff;
}

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

body.ai-josys-page {
  margin: 0;
  color: var(--ajs-ink);
  background: var(--ajs-white);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  overflow-x: hidden;
}

body.ai-josys-page.menu-open,
body.ai-josys-page.ajs-lightbox-open {
  overflow: hidden;
}

.ai-josys-page *,
.ai-josys-page *::before,
.ai-josys-page *::after {
  box-sizing: border-box;
}

.ai-josys-page img {
  display: block;
  max-width: 100%;
  height: auto;
}

.ai-josys-page a {
  color: inherit;
}

.ajs-shell {
  width: min(1220px, calc(100% - 48px));
  margin-inline: auto;
}

.ajs-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: 82px;
  background: rgb(255 255 255 / 94%);
  border-bottom: 1px solid rgb(8 37 101 / 8%);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease;
}

.ajs-header.is-scrolled {
  box-shadow: 0 12px 35px rgb(11 40 92 / 10%);
}

.ajs-header__inner {
  width: min(1360px, calc(100% - 40px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ajs-brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--ajs-navy);
}

.ajs-brand img {
  width: 96px;
  height: auto;
}

.ajs-brand > span {
  width: 1px;
  height: 28px;
  background: var(--ajs-line);
}

.ajs-brand strong {
  font-size: 16px;
  letter-spacing: .02em;
  white-space: nowrap;
}

.ajs-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 1.75vw, 30px);
}

.ajs-nav > a:not(.ajs-button) {
  position: relative;
  padding: 29px 0;
  color: #17233a;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.ajs-nav > a:not(.ajs-button)::after {
  content: "";
  position: absolute;
  inset: auto 0 20px;
  height: 2px;
  background: var(--ajs-blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}

.ajs-nav > a:not(.ajs-button):hover::after,
.ajs-nav > a:not(.ajs-button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.ajs-menu-toggle {
  display: none;
}

.ajs-button {
  min-height: 54px;
  padding: 14px 24px;
  border: 0;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #fff !important;
  background: linear-gradient(135deg, #0a2f86, #0d55d9);
  box-shadow: 0 12px 26px rgb(13 85 217 / 22%);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.ajs-button:hover,
.ajs-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgb(13 85 217 / 30%);
}

.ajs-button--header {
  min-height: 44px;
  padding: 10px 19px;
  border-radius: 8px;
  font-size: 13px;
}

.ajs-main {
  padding-top: 82px;
}

.ajs-hero {
  position: relative;
  background: #eef7ff;
  overflow: hidden;
}

.ajs-hero::before,
.ajs-hero::after {
  display: none;
}

.ajs-hero__picture,
.ajs-hero__picture img {
  display: block;
  width: 100%;
}

.ajs-hero__picture img {
  height: auto;
  max-width: 1120px;
  margin-inline: auto;
}

.ajs-kicker,
.ajs-eyebrow {
  margin: 0 0 18px;
  color: var(--ajs-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.ajs-hero h1 {
  margin: 0;
  color: var(--ajs-navy);
  font-size: clamp(40px, 3.8vw, 58px);
  line-height: 1.22;
  letter-spacing: -.035em;
}

.ajs-hero h1 span {
  display: block;
  white-space: nowrap;
}

.ajs-hero__lead {
  margin: 26px 0 0;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.9;
}

.ajs-price-inline {
  margin-top: 26px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--ajs-navy);
}

.ajs-price-inline span {
  padding: 5px 10px;
  border-radius: 5px;
  color: #fff;
  background: var(--ajs-navy);
  font-size: 13px;
  font-weight: 800;
}

.ajs-price-inline strong {
  font-size: clamp(36px, 3.8vw, 56px);
  line-height: 1;
  letter-spacing: -.04em;
}

.ajs-price-inline small {
  font-size: 12px;
}

.ajs-hero__note {
  max-width: 380px;
  margin: 14px 0 0;
  color: var(--ajs-muted);
  font-size: 14px;
  line-height: 1.75;
}

.ajs-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.ajs-text-link {
  color: var(--ajs-navy) !important;
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.ajs-hero__visual {
  position: relative;
}

.ajs-hero__visual::before {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgb(13 85 217 / 18%), rgb(0 139 121 / 10%));
}

.ajs-hero__visual img {
  position: relative;
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 28px 70px rgb(21 56 112 / 22%);
}

.ajs-section {
  position: relative;
  padding-block: clamp(92px, 9vw, 132px);
}

.ajs-section--soft {
  background: linear-gradient(180deg, #f6fbff, #edf6ff);
}

.ajs-section--deep {
  color: #fff;
  background:
    radial-gradient(circle at 10% 10%, rgb(56 189 248 / 20%), transparent 28%),
    radial-gradient(circle at 90% 90%, rgb(0 139 121 / 18%), transparent 28%),
    #061d53;
}

.ajs-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.ajs-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.ajs-heading h2 {
  margin: 0;
  color: var(--ajs-navy);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.3;
  letter-spacing: -.035em;
}

.ajs-heading > p:last-child:not(.ajs-eyebrow) {
  margin: 22px 0 0;
  color: var(--ajs-muted);
  font-size: 17px;
  line-height: 1.9;
}

.ajs-heading--light h2,
.ajs-heading--light > p:last-child:not(.ajs-eyebrow) {
  color: #fff;
}

.ajs-problems {
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(44px, 6vw, 86px);
}

.ajs-check-list,
.ajs-dual-cards ul,
.ajs-support-list,
.ajs-price-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.ajs-check-list li {
  position: relative;
  padding: 15px 18px 15px 52px;
  border: 1px solid #dce8f6;
  border-radius: 12px;
  background: rgb(255 255 255 / 88%);
  box-shadow: 0 8px 26px rgb(10 47 134 / 5%);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

.ajs-check-list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 14px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--ajs-blue);
  font-size: 13px;
}

.ajs-image-button {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 22px;
  display: block;
  background: #fff;
  box-shadow: 0 22px 60px rgb(10 47 134 / 12%);
  cursor: zoom-in;
  overflow: hidden;
}

.ajs-image-button img {
  width: 100%;
  border-radius: inherit;
  transition: transform .28s ease;
}

.ajs-image-button > span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgb(8 37 101 / 82%);
  font-size: 11px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease;
}

.ajs-image-button:hover img,
.ajs-image-button:focus-visible img {
  transform: scale(1.01);
}

.ajs-image-button:hover > span,
.ajs-image-button:focus-visible > span {
  opacity: 1;
  transform: translateY(0);
}

.ajs-image-button--wide {
  max-width: 1080px;
  margin-inline: auto;
}

.ajs-image-button--feature {
  max-width: 1100px;
  margin-inline: auto;
}

.ajs-three-grid {
  max-width: 1080px;
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ajs-three-grid article {
  position: relative;
  min-height: 160px;
  padding: 26px;
  border: 1px solid var(--ajs-line);
  border-radius: 16px;
  background: #fff;
}

.ajs-three-grid article > span {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #8bb9f8;
  font-size: 13px;
  font-weight: 900;
}

.ajs-three-grid h3,
.ajs-dual-cards h3,
.ajs-case h3,
.ajs-flow h3,
.ajs-price-card h3 {
  margin: 0;
  color: var(--ajs-navy);
}

.ajs-three-grid p {
  margin: 14px 0 0;
  color: var(--ajs-muted);
  line-height: 1.75;
}

.ajs-dual-cards {
  max-width: 1080px;
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.ajs-dual-cards article {
  padding: 30px;
  border: 1px solid #cee0f5;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 38px rgb(10 47 134 / 7%);
}

.ajs-card-label {
  width: fit-content;
  margin: 0 0 16px;
  padding: 6px 13px;
  border-radius: 999px;
  color: #fff;
  background: var(--ajs-blue);
  font-size: 12px;
  font-weight: 900;
}

.ajs-card-label--green {
  background: var(--ajs-green);
}

.ajs-dual-cards h3 {
  font-size: 21px;
}

.ajs-dual-cards ul {
  margin-top: 18px;
  display: grid;
  gap: 8px;
}

.ajs-dual-cards li {
  position: relative;
  padding-left: 18px;
  color: var(--ajs-muted);
  line-height: 1.6;
}

.ajs-dual-cards li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ajs-cyan);
}

.ajs-center-action {
  margin-top: 34px;
  text-align: center;
}

.ajs-step-strip {
  max-width: 1100px;
  margin: 30px auto 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.ajs-step-strip li {
  position: relative;
  padding: 18px 12px;
  border-radius: 12px;
  color: var(--ajs-navy);
  background: var(--ajs-sky);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.ajs-step-strip span {
  display: block;
  margin-bottom: 5px;
  color: var(--ajs-blue);
  font-size: 11px;
}

.ajs-knowledge {
  display: grid;
  grid-template-columns: minmax(310px, .82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(44px, 7vw, 92px);
}

.ajs-knowledge .ajs-heading {
  margin-bottom: 0;
}

.ajs-compare {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}

.ajs-compare p {
  margin: 0;
  padding: 15px 17px;
  border: 1px solid var(--ajs-line);
  border-radius: 11px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  background: #fff;
  font-size: 14px;
}

.ajs-compare p:last-child {
  color: #fff;
  background: var(--ajs-navy);
  border-color: var(--ajs-navy);
}

.ajs-compare span {
  text-align: right;
}

.ajs-case-list {
  display: grid;
  gap: 42px;
}

.ajs-case {
  padding: clamp(24px, 4vw, 54px);
  border: 1px solid var(--ajs-line);
  border-radius: 24px;
  display: grid;
  grid-template-columns: minmax(340px, .72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
  background: linear-gradient(135deg, #fff, #f5faff);
  box-shadow: 0 20px 52px rgb(9 43 111 / 8%);
}

.ajs-case--reverse > div {
  order: 2;
}

.ajs-case--reverse {
  grid-template-columns: minmax(0, 1.28fr) minmax(340px, .72fr);
}

.ajs-case--reverse > .ajs-image-button {
  order: 1;
}

.ajs-case__number {
  margin: 0 0 16px;
  color: var(--ajs-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
}

.ajs-case h3 {
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.45;
  line-break: strict;
}

.ajs-case h3 span {
  display: block;
  white-space: nowrap;
}

.ajs-case--reverse h3 {
  font-size: clamp(25px, 2.35vw, 30px);
}

.ajs-case > div > p:last-child {
  margin: 20px 0 0;
  color: var(--ajs-muted);
  line-height: 1.85;
}

.ajs-scope-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ajs-scope-grid > div {
  min-height: 154px;
  padding: 24px 18px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 16px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  background: rgb(255 255 255 / 8%);
  text-align: center;
}

.ajs-scope-grid span {
  min-width: 54px;
  height: 44px;
  padding-inline: 10px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--ajs-navy);
  background: #fff;
  box-shadow: 0 8px 24px rgb(56 189 248 / 15%);
  font-size: 13px;
  font-weight: 900;
}

.ajs-scope-grid p {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

.ajs-human-support {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(46px, 7vw, 96px);
}

.ajs-human-support .ajs-heading {
  margin-bottom: 0;
}

.ajs-support-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.ajs-support-list li,
.ajs-price-card li {
  position: relative;
  padding: 15px 16px 15px 43px;
  border: 1px solid var(--ajs-line);
  border-radius: 11px;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
}

.ajs-support-list li::before,
.ajs-price-card li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  color: var(--ajs-green);
  font-weight: 900;
}

.ajs-boundary-note {
  margin-top: 34px;
  padding: 18px 22px;
  border-radius: 12px;
  color: var(--ajs-muted);
  background: #f4f7fb;
  font-size: 13px;
  text-align: center;
}

.ajs-price-card {
  max-width: 1060px;
  margin-inline: auto;
  border-radius: 26px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  background: #fff;
  box-shadow: 0 28px 70px rgb(9 43 111 / 13%);
  overflow: hidden;
}

.ajs-price-card__main {
  padding: clamp(34px, 5vw, 66px);
  color: #fff;
  background: linear-gradient(145deg, #061d53, #0d55d9);
}

.ajs-price-card__main .ajs-eyebrow {
  color: #8fdcff;
}

.ajs-price-card__main h2 {
  margin: 0;
  font-size: 22px;
}

.ajs-price-card__main h2 strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.15;
}

.ajs-price-card__main h2 small {
  font-size: 12px;
  font-weight: 500;
}

.ajs-price-card__main > p {
  margin: 24px 0 28px;
  color: rgb(255 255 255 / 80%);
  line-height: 1.85;
}

.ajs-price-card__main .ajs-button {
  color: var(--ajs-navy) !important;
  background: #fff;
  box-shadow: none;
}

.ajs-price-card__details {
  padding: clamp(34px, 5vw, 66px);
}

.ajs-price-card__details h3 {
  margin-bottom: 24px;
  font-size: 22px;
}

.ajs-price-card__details ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

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

.ajs-flow li {
  position: relative;
  min-height: 245px;
  padding: 30px;
  border: 1px solid var(--ajs-line);
  border-radius: 17px;
  background: #fff;
}

.ajs-flow li:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--ajs-blue);
  font-weight: 900;
  transform: translateY(-50%);
}

.ajs-flow li > span {
  display: block;
  margin-bottom: 42px;
  color: var(--ajs-blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
}

.ajs-flow h3 {
  font-size: 19px;
  line-height: 1.5;
}

.ajs-flow p {
  margin: 14px 0 0;
  color: var(--ajs-muted);
  font-size: 14px;
  line-height: 1.75;
}

.ajs-faq-wrap {
  max-width: 970px;
}

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

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

.ajs-faq summary {
  position: relative;
  padding: 24px 68px 24px 62px;
  color: var(--ajs-navy);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.65;
  cursor: pointer;
  list-style: none;
}

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

.ajs-faq summary::before {
  content: "Q";
  position: absolute;
  left: 24px;
  color: var(--ajs-blue);
  font-size: 19px;
  font-weight: 900;
}

.ajs-faq summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  font-size: 26px;
  font-weight: 400;
  transform: translateY(-50%);
}

.ajs-faq details[open] summary::after {
  content: "−";
}

.ajs-faq details p {
  margin: 0;
  padding: 0 68px 26px 62px;
  color: var(--ajs-muted);
  line-height: 1.85;
}

.ajs-final-cta {
  padding-block: clamp(76px, 9vw, 118px);
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgb(56 189 248 / 22%), transparent 24%),
    linear-gradient(135deg, #031743, #063397 70%, #0d55d9);
  text-align: center;
}

.ajs-final-cta .ajs-eyebrow {
  color: #8fdcff;
}

.ajs-final-cta h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.4;
  letter-spacing: -.03em;
}

.ajs-final-cta p:not(.ajs-eyebrow) {
  margin: 24px 0 32px;
  color: rgb(255 255 255 / 82%);
  font-size: 17px;
}

.ajs-button--yellow {
  color: #10213f !important;
  background: linear-gradient(135deg, #ffd52e, #ffbd21);
  box-shadow: 0 14px 30px rgb(255 196 32 / 22%);
}

.ajs-footer {
  padding: 58px 0 22px;
  color: #dfe8fb;
  background: #03102f;
}

.ajs-footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}

.ajs-footer__brand img {
  width: 105px;
  filter: brightness(0) invert(1);
}

.ajs-footer__brand p {
  margin: 18px 0 0;
  color: #aebcda;
  font-size: 13px;
}

.ajs-footer nav {
  max-width: 640px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 13px 28px;
}

.ajs-footer nav a {
  color: #dfe8fb;
  font-size: 13px;
  text-decoration: none;
}

.ajs-footer__bottom {
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid rgb(255 255 255 / 12%);
  color: #8293b7;
}

.ajs-lightbox[hidden] {
  display: none;
}

.ajs-lightbox {
  position: fixed;
  z-index: 3000;
  inset: 0;
  padding: 70px 24px 24px;
  display: grid;
  place-items: center;
  background: rgb(2 12 38 / 94%);
}

.ajs-lightbox img {
  max-width: min(1500px, 96vw);
  max-height: calc(100vh - 100px);
  object-fit: contain;
  border-radius: 14px;
}

.ajs-lightbox__close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 30%);
  border-radius: 50%;
  color: #fff;
  background: rgb(255 255 255 / 10%);
  font-size: 29px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1120px) {
  .ajs-header__inner {
    width: min(100% - 28px, 1360px);
  }

  .ajs-nav {
    gap: 14px;
  }

  .ajs-nav > a:not(.ajs-button) {
    font-size: 12px;
  }

  .ajs-button--header {
    padding-inline: 14px;
  }
}

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

  .ajs-header,
  .ajs-main {
    height: 70px;
  }

  .ajs-main {
    height: auto;
    padding-top: 70px;
  }

  .ajs-case,
  .ajs-case--reverse {
    grid-template-columns: 1fr;
  }

  .ajs-case--reverse > div,
  .ajs-case--reverse > .ajs-image-button {
    order: initial;
  }

  .ajs-menu-toggle {
    position: relative;
    z-index: 2;
    width: 48px;
    height: 48px;
    margin-left: auto;
    padding: 13px 10px;
    border: 0;
    border-radius: 9px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: var(--ajs-navy);
    cursor: pointer;
  }

  .ajs-menu-toggle > span:not(.screen-reader-text) {
    width: 24px;
    height: 2px;
    margin-inline: auto;
    background: #fff;
    transition: transform .2s ease, opacity .2s ease;
  }

  .ajs-menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .ajs-menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .ajs-menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .ajs-nav {
    position: fixed;
    inset: 70px 0 auto;
    width: 100vw;
    height: calc(100dvh - 70px);
    padding: 24px 22px 36px;
    display: none;
    align-content: start;
    justify-content: stretch;
    gap: 0;
    background: #fff;
    overflow-y: auto;
  }

  .ajs-nav.is-open {
    display: grid;
  }

  .ajs-nav > a:not(.ajs-button) {
    padding: 18px 4px;
    border-bottom: 1px solid var(--ajs-line);
    font-size: 15px;
  }

  .ajs-nav > a:not(.ajs-button)::after {
    display: none;
  }

  .ajs-nav .ajs-button {
    margin-top: 24px;
  }

  .ajs-hero {
    min-height: auto;
  }

  .ajs-hero__grid {
    grid-template-columns: 1fr;
    padding-block: 64px 84px;
  }

  .ajs-hero__copy {
    max-width: 680px;
  }

  .ajs-problems,
  .ajs-knowledge,
  .ajs-human-support {
    grid-template-columns: 1fr;
  }

  .ajs-problems .ajs-image-button {
    max-width: 760px;
    margin-inline: auto;
  }

  .ajs-human-support {
    gap: 40px;
  }

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

  .ajs-flow li:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 700px) {
  .ajs-shell {
    width: min(100% - 32px, 1220px);
  }

  .ajs-header__inner {
    width: calc(100% - 24px);
  }

  .ajs-brand {
    gap: 10px;
  }

  .ajs-brand img {
    width: 78px;
  }

  .ajs-brand > span {
    height: 24px;
  }

  .ajs-brand strong {
    font-size: 13px;
  }

  .ajs-hero {
    background: linear-gradient(180deg, #fff, #edf7ff);
  }

  .ajs-hero__picture img {
    max-width: 100%;
  }

  .ajs-hero__grid {
    gap: 44px;
    padding-block: 54px 72px;
  }

  .ajs-kicker,
  .ajs-eyebrow {
    margin-bottom: 14px;
    font-size: 10px;
  }

  .ajs-hero h1 {
    font-size: clamp(35px, 10.5vw, 47px);
    line-height: 1.3;
  }

  .ajs-hero__lead {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.8;
  }

  .ajs-price-inline {
    flex-wrap: wrap;
    gap: 8px;
  }

  .ajs-price-inline strong {
    font-size: 42px;
  }

  .ajs-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .ajs-button {
    width: 100%;
    min-height: 58px;
    padding-inline: 18px;
  }

  .ajs-text-link {
    text-align: center;
  }

  .ajs-hero__visual::before {
    inset: 12px -10px -12px 10px;
  }

  .ajs-hero__visual img {
    border-radius: 17px;
  }

  .ajs-section {
    padding-block: 76px;
  }

  .ajs-heading {
    margin-bottom: 34px;
  }

  .ajs-heading h2 {
    font-size: clamp(30px, 8.8vw, 40px);
    line-height: 1.38;
  }

  .ajs-heading > p:last-child:not(.ajs-eyebrow) {
    margin-top: 17px;
    font-size: 15px;
    line-height: 1.8;
  }

  .ajs-problems {
    gap: 34px;
  }

  .ajs-check-list li {
    padding: 14px 14px 14px 48px;
    font-size: 14px;
  }

  .ajs-image-button {
    width: 100%;
    margin-left: 0;
    border-radius: 14px;
  }

  .ajs-image-button > span {
    right: 10px;
    bottom: 10px;
    opacity: 1;
    transform: none;
  }

  .ajs-three-grid,
  .ajs-dual-cards,
  .ajs-price-card,
  .ajs-scope-grid,
  .ajs-support-list,
  .ajs-price-card__details ul,
  .ajs-flow {
    grid-template-columns: 1fr;
  }

  .ajs-three-grid article {
    min-height: auto;
  }

  .ajs-dual-cards article {
    padding: 24px;
  }

  .ajs-step-strip {
    grid-template-columns: 1fr;
  }

  .ajs-step-strip li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    text-align: left;
  }

  .ajs-step-strip span {
    margin: 0;
  }

  .ajs-compare p {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .ajs-compare span {
    text-align: left;
  }

  .ajs-case {
    padding: 26px 18px 22px;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .ajs-case--reverse {
    grid-template-columns: 1fr;
  }

  .ajs-case--reverse > div,
  .ajs-case--reverse > .ajs-image-button {
    order: initial;
  }

  .ajs-case h3 {
    font-size: 27px;
  }

  .ajs-case--reverse h3 {
    font-size: clamp(21px, 6.65vw, 25px);
  }

  .ajs-scope-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .ajs-scope-grid > div {
    min-height: 138px;
    padding: 20px 12px;
  }

  .ajs-scope-grid p {
    font-size: 13px;
  }

  .ajs-boundary-note {
    text-align: left;
    line-height: 1.75;
  }

  .ajs-price-card {
    border-radius: 19px;
  }

  .ajs-price-card__main,
  .ajs-price-card__details {
    padding: 32px 24px;
  }

  .ajs-price-card__main h2 strong {
    font-size: 46px;
  }

  .ajs-flow li {
    min-height: auto;
    padding: 25px;
  }

  .ajs-flow li > span {
    margin-bottom: 24px;
  }

  .ajs-faq summary {
    padding: 20px 48px 20px 48px;
    font-size: 14px;
  }

  .ajs-faq summary::before {
    left: 18px;
  }

  .ajs-faq summary::after {
    right: 17px;
  }

  .ajs-faq details p {
    padding: 0 20px 22px 48px;
    font-size: 14px;
  }

  .ajs-final-cta p:not(.ajs-eyebrow) {
    font-size: 15px;
    line-height: 1.8;
  }

  .ajs-footer__inner {
    flex-direction: column;
  }

  .ajs-footer nav {
    justify-content: flex-start;
  }

  .ajs-lightbox {
    padding: 64px 8px 12px;
    overflow: auto;
  }

  .ajs-lightbox img {
    max-width: none;
    width: max(100%, 980px);
    max-height: none;
    align-self: start;
  }
}

@media (max-width: 340px) {
  .ajs-case {
    padding-inline: 14px;
  }

  .ajs-case h3,
  .ajs-case--reverse h3 {
    font-size: clamp(20px, 6.6vw, 22px);
  }
}

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

  .ajs-button,
  .ajs-image-button img,
  .ajs-menu-toggle span {
    transition: none;
  }
}
