:root {
  --axlg-deep: #102d23;
  --axlg-deep-2: #174737;
  --axlg-ink: #26332e;
  --axlg-muted: #506059;
  --axlg-ivory: #f7f3ea;
  --axlg-cream: #fcfaf5;
  --axlg-sage: #eef2eb;
  --axlg-sand: #eee6d4;
  --axlg-line: #d9d6cd;
  --axlg-gold: #d4b66e;
  --axlg-gold-dark: #76591f;
  --axlg-white: #ffffff;
  --axlg-shadow: 0 20px 54px rgba(16, 45, 35, 0.1);
}

html {
  scroll-behavior: smooth;
}

html.axlg-nav-open,
html.axlg-nav-open body {
  overflow: hidden;
}

body.axia-legal-template {
  margin: 0;
  min-width: 320px;
  background: var(--axlg-cream);
  color: var(--axlg-ink);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.axia-legal-template.admin-bar .axlg-header {
  top: 32px;
}

body.axia-legal-template.admin-bar #axlg-main {
  padding-top: 114px;
}

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

#axlg-v2 {
  width: 100%;
  min-width: 320px;
  background: var(--axlg-cream);
  color: var(--axlg-ink);
  overflow: clip;
}

#axlg-v2 img {
  display: block;
  max-width: 100%;
  height: auto;
}

#axlg-v2 a {
  color: inherit;
  text-decoration: none;
}

#axlg-v2 button,
#axlg-v2 a {
  -webkit-tap-highlight-color: transparent;
}

#axlg-v2 p,
#axlg-v2 h1,
#axlg-v2 h2,
#axlg-v2 h3,
#axlg-v2 ul,
#axlg-v2 ol,
#axlg-v2 dl,
#axlg-v2 dd {
  margin-top: 0;
}

#axlg-v2 h1,
#axlg-v2 h2,
#axlg-v2 h3,
#axlg-v2 strong,
#axlg-v2 b {
  font-weight: 700;
}

#axlg-v2 h1,
#axlg-v2 h2 {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  letter-spacing: 0.025em;
  text-wrap: balance;
  word-break: auto-phrase;
}

#axlg-v2 :focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--axlg-deep);
}

.axlg-shell {
  width: min(1200px, calc(100% - 64px));
  margin-inline: auto;
}

.axlg-skip {
  position: fixed;
  top: 8px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 4px;
  background: var(--axlg-white);
  color: var(--axlg-deep);
  font-weight: 700;
  transition: transform 0.18s ease;
}

.axlg-skip:focus {
  transform: translateY(0);
}

.axlg-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: 82px;
  border-bottom: 1px solid rgba(16, 45, 35, 0.09);
  background: rgba(252, 250, 245, 0.97);
  backdrop-filter: blur(12px);
}

.axlg-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1280px, calc(100% - 68px));
  height: 100%;
  margin-inline: auto;
}

.axlg-logo {
  display: flex;
  align-items: center;
  width: 138px;
  flex: 0 0 auto;
}

.axlg-logo img {
  width: 138px;
}

.axlg-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  font-size: 14px;
  font-weight: 700;
  color: var(--axlg-deep);
}

.axlg-nav a {
  position: relative;
  padding-block: 11px;
  white-space: nowrap;
}

.axlg-nav a:not(.axlg-nav__contact)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--axlg-gold-dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

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

.axlg-nav__contact {
  padding: 11px 18px !important;
  background: var(--axlg-deep);
  color: var(--axlg-white) !important;
}

.axlg-menu {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(16, 45, 35, 0.22);
  background: transparent;
  color: var(--axlg-deep);
  cursor: pointer;
}

.axlg-menu span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 0.2s ease;
}

.axlg-header.is-open .axlg-menu span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.axlg-header.is-open .axlg-menu span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

#axlg-main {
  padding-top: 82px;
}

#axlg-principles,
#axlg-expression,
#axlg-sales,
#axlg-care,
#axlg-rights,
#axlg-information,
#axlg-health,
#axlg-operation,
#axlg-revision,
#axlg-contact {
  scroll-margin-top: 100px;
}

.axlg-hero {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  padding: 68px 0 64px;
  overflow: hidden;
  background:
    radial-gradient(circle at 91% 13%, rgba(212, 182, 110, 0.18), transparent 34%),
    linear-gradient(128deg, #0f2e24 0%, #12392b 57%, #1f5642 100%);
  color: var(--axlg-white);
}

.axlg-hero--terms {
  background:
    radial-gradient(circle at 90% 12%, rgba(212, 182, 110, 0.16), transparent 34%),
    linear-gradient(128deg, #122f26 0%, #183f31 62%, #2a5946 100%);
}

.axlg-hero::after {
  position: absolute;
  top: -290px;
  right: -170px;
  z-index: -1;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.axlg-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.58fr);
  align-items: center;
  gap: clamp(42px, 6vw, 78px);
}

.axlg-eyebrow,
.axlg-kicker {
  margin-bottom: 18px;
  color: #ead9aa;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.axlg-hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--axlg-white);
  font-size: clamp(40px, 4.6vw, 60px);
  line-height: 1.4;
}

.axlg-hero__title-label {
  display: block;
  margin-bottom: 14px;
  color: #ead9aa;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", Meiryo, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
}

.axlg-hero__lead {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(255, 253, 248, 0.9);
  font-size: 17px;
  line-height: 1.95;
}

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

.axlg-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.axlg-button span {
  margin-left: 26px;
}

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

.axlg-button--gold {
  background: var(--axlg-gold);
  color: var(--axlg-deep) !important;
}

.axlg-button--ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--axlg-white) !important;
}

.axlg-button--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.axlg-button--dark {
  width: 100%;
  background: var(--axlg-deep);
  color: var(--axlg-white) !important;
}

.axlg-hero__card {
  padding: 30px 32px 24px;
  border-top: 4px solid var(--axlg-gold);
  background: var(--axlg-cream);
  box-shadow: var(--axlg-shadow);
  color: var(--axlg-deep);
}

.axlg-hero__card > p {
  margin-bottom: 16px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 20px;
  font-weight: 700;
}

.axlg-hero__card ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.axlg-hero__card li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid rgba(16, 45, 35, 0.14);
}

.axlg-hero__card li span {
  color: var(--axlg-gold-dark);
  font-family: Georgia, serif;
  font-size: 13px;
}

.axlg-hero__card li strong {
  font-size: 15px;
  line-height: 1.65;
}

.axlg-section {
  padding: 88px 0;
}

.axlg-principles,
.axlg-rights {
  background: var(--axlg-cream);
}

.axlg-expression,
.axlg-care,
.axlg-operation {
  background: var(--axlg-sage);
}

.axlg-sales {
  position: relative;
  background:
    radial-gradient(circle at 96% 8%, rgba(212, 182, 110, 0.15), transparent 30%),
    var(--axlg-deep);
  color: var(--axlg-white);
}

.axlg-section-head h2 {
  margin-bottom: 18px;
  color: var(--axlg-deep);
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.5;
}

.axlg-section-head > p:last-child {
  margin-bottom: 0;
  color: var(--axlg-muted);
  font-size: 16px;
  line-height: 1.95;
}

.axlg-section-head--center {
  max-width: 810px;
  margin: 0 auto 46px;
  text-align: center;
}

.axlg-section-head--center .axlg-kicker,
.axlg-section-head .axlg-kicker {
  color: var(--axlg-gold-dark);
}

.axlg-section-head--light h2 {
  color: var(--axlg-white);
}

.axlg-section-head--light .axlg-kicker {
  color: var(--axlg-gold);
}

.axlg-section-head--light > p:last-child {
  color: rgba(255, 255, 255, 0.82);
}

.axlg-card-grid {
  display: grid;
  gap: 16px;
}

.axlg-card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.axlg-number-card,
.axlg-card-grid--dark article {
  min-height: 220px;
  padding: 28px;
}

.axlg-number-card {
  border: 1px solid var(--axlg-line);
  background: var(--axlg-white);
}

.axlg-number-card > span,
.axlg-card-grid--dark article > span {
  display: block;
  margin-bottom: 20px;
  color: var(--axlg-gold-dark);
  font-family: Georgia, serif;
  font-size: 14px;
}

.axlg-number-card h3,
.axlg-card-grid--dark h3 {
  margin-bottom: 10px;
  color: var(--axlg-deep);
  font-size: 19px;
}

.axlg-number-card p,
.axlg-card-grid--dark p {
  margin-bottom: 0;
  color: var(--axlg-muted);
  font-size: 16px;
  line-height: 1.85;
}

.axlg-card-grid--dark article {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.axlg-card-grid--dark article > span {
  color: var(--axlg-gold);
}

.axlg-card-grid--dark h3 {
  color: var(--axlg-white);
}

.axlg-card-grid--dark p {
  color: rgba(255, 255, 255, 0.82);
}

.axlg-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(52px, 7vw, 96px);
}

.axlg-split--reverse {
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.72fr);
}

.axlg-split--reverse .axlg-section-head {
  grid-column: 2;
  grid-row: 1;
}

.axlg-split--reverse > :last-child {
  grid-column: 1;
  grid-row: 1;
}

.axlg-check-panel {
  padding: 32px;
  border-top: 4px solid var(--axlg-gold);
  background: var(--axlg-white);
  box-shadow: 0 16px 42px rgba(16, 45, 35, 0.07);
}

.axlg-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.axlg-check-list li {
  position: relative;
  padding: 0 0 20px 32px;
  border-bottom: 1px solid var(--axlg-line);
  margin-bottom: 20px;
}

.axlg-check-list li::before {
  position: absolute;
  top: 7px;
  left: 2px;
  width: 12px;
  height: 7px;
  border-bottom: 2px solid var(--axlg-gold-dark);
  border-left: 2px solid var(--axlg-gold-dark);
  content: "";
  transform: rotate(-45deg);
}

.axlg-check-list li:last-child {
  margin-bottom: 22px;
}

.axlg-check-list strong {
  display: block;
  margin-bottom: 5px;
  color: var(--axlg-deep);
  font-size: 17px;
}

.axlg-check-list p {
  margin-bottom: 0;
  color: var(--axlg-muted);
  font-size: 16px;
}

.axlg-text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid currentColor;
  color: var(--axlg-deep) !important;
  font-size: 15px;
  font-weight: 700;
}

.axlg-text-link:hover {
  color: var(--axlg-gold-dark) !important;
}

.axlg-inline-link {
  border-bottom: 1px solid currentColor;
  color: var(--axlg-deep) !important;
  font-weight: 700;
}

.axlg-inline-link:hover {
  color: var(--axlg-gold-dark) !important;
}

.axlg-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.18);
  list-style: none;
}

.axlg-flow li {
  min-height: 230px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.07);
}

.axlg-flow li > span {
  display: block;
  margin-bottom: 28px;
  color: var(--axlg-gold);
  font-family: Georgia, serif;
  font-size: 14px;
}

.axlg-flow strong {
  display: block;
  margin-bottom: 10px;
  color: var(--axlg-white);
  font-size: 18px;
}

.axlg-flow p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.85;
}

.axlg-callout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 28px;
  margin-top: 20px;
  padding: 24px 28px;
}

.axlg-callout--gold {
  background: var(--axlg-gold);
  color: var(--axlg-deep);
}

.axlg-callout strong {
  font-size: 17px;
}

.axlg-callout p {
  margin-bottom: 0;
  font-size: 16px;
}

.axlg-care-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.axlg-care-grid article {
  min-height: 205px;
  padding: 26px;
  border: 1px solid var(--axlg-line);
  background: var(--axlg-white);
}

.axlg-care-grid h3 {
  margin-bottom: 10px;
  color: var(--axlg-deep);
  font-size: 18px;
}

.axlg-care-grid p {
  margin-bottom: 0;
  color: var(--axlg-muted);
  font-size: 16px;
  line-height: 1.85;
}

.axlg-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.axlg-feature-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.axlg-feature-card {
  min-height: 280px;
  padding: 32px;
  border: 1px solid var(--axlg-line);
  background: var(--axlg-white);
  box-shadow: 0 12px 34px rgba(16, 45, 35, 0.05);
}

.axlg-feature-card__label {
  margin-bottom: 14px;
  color: var(--axlg-gold-dark);
  font-size: 14px;
  font-weight: 700;
}

.axlg-feature-card h3 {
  margin-bottom: 12px;
  color: var(--axlg-deep);
  font-size: 21px;
}

.axlg-feature-card > p:not(.axlg-feature-card__label) {
  color: var(--axlg-muted);
  font-size: 16px;
  line-height: 1.9;
}

.axlg-feature-card .axlg-text-link {
  margin-top: 4px;
}

.axlg-operation-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--axlg-line);
}

.axlg-operation-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--axlg-line);
}

.axlg-operation-list article > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--axlg-deep);
  color: var(--axlg-white);
  font-family: Georgia, serif;
  font-size: 12px;
}

.axlg-operation-list h3 {
  margin-bottom: 4px;
  color: var(--axlg-deep);
  font-size: 17px;
}

.axlg-operation-list p {
  margin-bottom: 0;
  color: var(--axlg-muted);
  font-size: 16px;
}

.axlg-revision {
  padding: 68px 0;
  background: var(--axlg-cream);
}

.axlg-revision__box {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(44px, 6vw, 82px);
  padding: 46px;
  border-left: 5px solid var(--axlg-gold);
  background: var(--axlg-white);
  box-shadow: var(--axlg-shadow);
}

.axlg-revision__box h2 {
  margin-bottom: 0;
  color: var(--axlg-deep);
  font-size: clamp(29px, 3.1vw, 40px);
  line-height: 1.55;
}

.axlg-revision__box > div:last-child p {
  margin-bottom: 14px;
  color: var(--axlg-muted);
  font-size: 16px;
}

.axlg-revision__box > div:last-child p:last-child {
  margin-bottom: 0;
}

.axlg-updated {
  color: var(--axlg-gold-dark) !important;
  font-weight: 700;
}

.axlg-contact {
  background: var(--axlg-ivory);
}

.axlg-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(44px, 7vw, 88px);
}

.axlg-contact-card {
  padding: 32px;
  border-top: 4px solid var(--axlg-gold);
  background: var(--axlg-white);
  box-shadow: var(--axlg-shadow);
}

.axlg-contact-card > p:first-child {
  margin-bottom: 4px;
  color: var(--axlg-gold-dark);
  font-size: 14px;
  font-weight: 700;
}

.axlg-phone {
  display: block;
  margin-bottom: 10px;
  color: var(--axlg-deep) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 3.4vw, 42px);
  font-variant-numeric: lining-nums tabular-nums;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
  white-space: nowrap;
}

.axlg-contact-card > p:not(:first-child) {
  margin-bottom: 20px;
  color: var(--axlg-muted);
  font-size: 15px;
}

.axlg-related {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 52px;
  background: var(--axlg-line);
}

.axlg-related > a {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 90px;
  padding: 18px;
  background: var(--axlg-white);
  transition: background-color 0.18s ease;
}

.axlg-related > a:hover {
  background: var(--axlg-sage);
}

.axlg-related span {
  color: var(--axlg-gold-dark);
  font-family: Georgia, serif;
  font-size: 12px;
}

.axlg-related strong {
  color: var(--axlg-deep);
  font-size: 14px;
  line-height: 1.55;
}

.axlg-related b {
  color: var(--axlg-gold-dark);
}

.axlg-footer {
  padding: 54px 0 26px;
  background: var(--axlg-deep);
  color: var(--axlg-white);
}

.axlg-footer__grid {
  display: grid;
  grid-template-columns: minmax(200px, 0.8fr) minmax(0, 1.2fr);
  gap: 60px;
}

.axlg-logo--footer {
  width: 130px;
  padding: 8px 12px;
  background: var(--axlg-cream);
}

.axlg-logo--footer img {
  width: 106px;
}

.axlg-footer__brand p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.axlg-footer__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 22px;
  align-content: start;
}

.axlg-footer__links a {
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 14px;
}

.axlg-footer__links a:hover {
  color: var(--axlg-gold) !important;
}

.axlg-footer__bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.axlg-footer__bottom small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.axlg-mobile-actions {
  display: none;
}

@media (max-width: 1100px) {
  .axlg-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
    gap: 38px;
  }

  .axlg-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .axlg-flow li {
    min-height: 205px;
  }

  .axlg-feature-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .axlg-related {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body.axia-legal-template.admin-bar .axlg-header {
    top: 32px;
  }

  body.axia-legal-template.admin-bar #axlg-main {
    padding-top: 106px;
  }

  .axlg-shell {
    width: min(760px, calc(100% - 44px));
  }

  .axlg-header {
    height: 74px;
  }

  .axlg-header__inner {
    width: calc(100% - 40px);
  }

  .axlg-logo,
  .axlg-logo img {
    width: 124px;
  }

  #axlg-v2.is-nav-enhanced .axlg-menu {
    display: block;
  }

  #axlg-v2.is-nav-enhanced .axlg-nav {
    position: fixed;
    inset: 74px 0 auto;
    display: grid;
    gap: 0;
    max-height: calc(100vh - 74px);
    padding: 14px 22px 24px;
    overflow-y: auto;
    border-top: 1px solid var(--axlg-line);
    background: var(--axlg-cream);
    box-shadow: 0 18px 36px rgba(16, 45, 35, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  #axlg-v2.is-nav-enhanced .axlg-nav[hidden] {
    display: none !important;
  }

  body.admin-bar #axlg-v2.is-nav-enhanced .axlg-nav {
    inset: 106px 0 auto;
  }

  #axlg-v2.is-nav-enhanced .axlg-header.is-open .axlg-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  #axlg-v2.is-nav-enhanced .axlg-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--axlg-line);
  }

  #axlg-v2.is-nav-enhanced .axlg-nav__contact {
    margin-top: 12px;
    padding: 14px 18px !important;
    text-align: center;
  }

  #axlg-v2:not(.is-nav-enhanced) .axlg-header {
    position: relative;
    height: auto;
  }

  #axlg-v2:not(.is-nav-enhanced) .axlg-header__inner {
    flex-wrap: wrap;
    height: auto;
    padding-top: 12px;
  }

  #axlg-v2:not(.is-nav-enhanced) .axlg-nav {
    width: 100%;
    gap: 20px;
    padding: 8px 0 10px;
    overflow-x: auto;
  }

  #axlg-v2:not(.is-nav-enhanced) .axlg-nav__contact {
    padding: 9px 14px !important;
  }

  #axlg-v2:not(.is-nav-enhanced) #axlg-main {
    padding-top: 0;
  }

  #axlg-main {
    padding-top: 74px;
  }

  #axlg-principles,
  #axlg-expression,
  #axlg-sales,
  #axlg-care,
  #axlg-rights,
  #axlg-information,
  #axlg-health,
  #axlg-operation,
  #axlg-revision,
  #axlg-contact {
    scroll-margin-top: 90px;
  }

  .axlg-hero {
    min-height: 0;
    padding: 62px 0;
  }

  .axlg-hero__grid,
  .axlg-split,
  .axlg-split--reverse,
  .axlg-contact__grid,
  .axlg-revision__box {
    grid-template-columns: minmax(0, 1fr);
  }

  .axlg-split--reverse .axlg-section-head,
  .axlg-split--reverse > :last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .axlg-split--reverse .axlg-section-head {
    grid-row: 1;
  }

  .axlg-split--reverse > :last-child {
    grid-row: 2;
  }

  .axlg-hero__copy {
    max-width: 720px;
  }

  .axlg-hero__card {
    max-width: 620px;
  }

  .axlg-card-grid--three,
  .axlg-feature-grid,
  .axlg-feature-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .axlg-section {
    padding: 76px 0;
  }

  .axlg-section-head--center {
    margin-bottom: 40px;
  }

  .axlg-contact__grid {
    gap: 34px;
  }

  .axlg-contact-card {
    max-width: 540px;
  }

  .axlg-footer__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }
}

@media (max-width: 782px) {
  body.axia-legal-template.admin-bar .axlg-header {
    top: 46px;
  }

  body.axia-legal-template.admin-bar #axlg-main {
    padding-top: 120px;
  }

  body.admin-bar #axlg-v2.is-nav-enhanced .axlg-nav {
    inset: 120px 0 auto;
  }
}

@media (max-width: 600px) {
  body.axia-legal-template {
    font-size: 16px;
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }

  .axlg-shell {
    width: calc(100% - 34px);
  }

  .axlg-header__inner {
    width: calc(100% - 30px);
  }

  .axlg-logo,
  .axlg-logo img {
    width: 116px;
  }

  .axlg-hero {
    padding: 50px 0 48px;
  }

  .axlg-hero h1 {
    font-size: clamp(34px, 10.5vw, 44px);
    line-height: 1.48;
  }

  .axlg-hero h1 br,
  .axlg-hero__lead br,
  .axlg-section-head h2 br,
  .axlg-revision__box h2 br {
    display: none;
  }

  .axlg-hero__lead {
    font-size: 16px;
    line-height: 1.9;
  }

  .axlg-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .axlg-button {
    width: 100%;
  }

  .axlg-hero__card {
    padding: 24px 22px 18px;
  }

  .axlg-hero__card li {
    padding: 13px 0;
  }

  .axlg-section {
    padding: 64px 0;
  }

  .axlg-section-head h2 {
    font-size: clamp(29px, 9vw, 38px);
    line-height: 1.55;
  }

  .axlg-section-head--center {
    margin-bottom: 32px;
    text-align: left;
  }

  .axlg-card-grid--three,
  .axlg-feature-grid,
  .axlg-feature-grid--three,
  .axlg-care-grid,
  .axlg-flow,
  .axlg-related,
  .axlg-footer__links {
    grid-template-columns: minmax(0, 1fr);
  }

  .axlg-number-card,
  .axlg-card-grid--dark article,
  .axlg-care-grid article,
  .axlg-feature-card,
  .axlg-flow li {
    min-height: 0;
    padding: 24px 22px;
  }

  .axlg-flow li > span {
    margin-bottom: 18px;
  }

  .axlg-callout {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    padding: 22px;
  }

  .axlg-check-panel,
  .axlg-contact-card {
    padding: 26px 22px;
  }

  .axlg-revision {
    padding: 54px 0;
  }

  .axlg-revision__box {
    gap: 24px;
    padding: 28px 22px;
  }

  .axlg-phone {
    font-size: clamp(29px, 9.4vw, 39px);
  }

  .axlg-related {
    margin-top: 38px;
  }

  .axlg-related > a {
    min-height: 76px;
  }

  .axlg-footer {
    padding-bottom: 32px;
  }

  .axlg-footer__links {
    gap: 8px;
  }

  .axlg-footer__links a {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .axlg-mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 220;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: calc(66px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid rgba(16, 45, 35, 0.18);
    background: var(--axlg-white);
    box-shadow: 0 -8px 26px rgba(16, 45, 35, 0.12);
  }

  .axlg-mobile-actions a {
    display: grid;
    place-content: center;
    min-width: 0;
    padding: 8px 6px;
    text-align: center;
  }

  .axlg-mobile-actions a:first-child {
    background: var(--axlg-deep);
    color: var(--axlg-white) !important;
  }

  .axlg-mobile-actions a:last-child {
    background: var(--axlg-gold);
    color: var(--axlg-deep) !important;
  }

  .axlg-mobile-actions strong,
  .axlg-mobile-actions span {
    display: block;
    line-height: 1.35;
  }

  .axlg-mobile-actions strong {
    font-size: 14px;
  }

  .axlg-mobile-actions span {
    margin-top: 2px;
    font-size: 13px;
    font-variant-numeric: lining-nums tabular-nums;
  }
}

@media (max-width: 360px) {
  .axlg-shell {
    width: calc(100% - 28px);
  }

  .axlg-hero h1 {
    font-size: 32px;
  }

  .axlg-phone {
    font-size: 28px;
  }

  .axlg-feature-card,
  .axlg-number-card,
  .axlg-card-grid--dark article,
  .axlg-care-grid article,
  .axlg-flow li {
    padding-right: 19px;
    padding-left: 19px;
  }
}

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

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

@media print {
  body.axia-legal-template {
    padding-bottom: 0;
    background: #ffffff;
    color: #000000;
  }

  .axlg-header,
  .axlg-mobile-actions,
  .axlg-actions,
  .axlg-footer,
  .axlg-related {
    display: none !important;
  }

  #axlg-main {
    padding-top: 0;
  }

  .axlg-hero,
  .axlg-sales {
    min-height: 0;
    background: #ffffff !important;
    color: #000000;
  }

  .axlg-hero h1,
  .axlg-hero__lead,
  .axlg-section-head--light h2,
  .axlg-section-head--light > p:last-child,
  .axlg-flow strong,
  .axlg-flow p,
  .axlg-card-grid--dark h3,
  .axlg-card-grid--dark p {
    color: #000000 !important;
  }

  .axlg-section {
    padding: 28px 0;
    background: #ffffff !important;
  }

  .axlg-number-card,
  .axlg-card-grid--dark article,
  .axlg-feature-card,
  .axlg-care-grid article,
  .axlg-check-panel,
  .axlg-contact-card,
  .axlg-revision__box {
    box-shadow: none;
    break-inside: avoid;
  }
}
