:root {
  --ax-navy: #0b1f3a;
  --ax-navy-deep: #0a1526;
  --ax-navy-deepest: #050b14;
  --ax-card-dark: #111f34;
  --ax-blue: #1e6bff;
  --ax-blue-light: #6da2ff;
  --ax-blue-soft: #eaf1ff;
  --ax-bg: #f4f6fa;
  --ax-line: #e2e8f1;
  --ax-muted: #51607a;
  --ax-muted-2: #8592a5;
  --ax-muted-dark: #9fb4cc;
  --ax-muted-dark-2: #c4d0e0;
  --ax-display: "Space Grotesk", sans-serif;
  --ax-heading: "IBM Plex Sans JP", sans-serif;
  --ax-sans: "Noto Sans JP", sans-serif;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family: var(--ax-sans);
  color: var(--ax-muted);
  background: var(--ax-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}

/* Disclaimer banner */
.ax-banner {
  background: var(--ax-navy-deepest);
  color: #c4cedb;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 9px 16px;
}
.ax-banner a {
  font-weight: 700;
  text-decoration: underline;
  color: #fff;
}

/* Header (permanently dark/translucent) */
.ax-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 21, 38, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ax-header-in {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ax-logo {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.ax-logo .en {
  font-family: var(--ax-display);
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.01em;
}
.ax-logo .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ax-blue);
  transform: translateY(-2px);
  flex: 0 0 auto;
}
.ax-logo .jp {
  font-family: var(--ax-heading);
  font-weight: 500;
  font-size: 12px;
  color: var(--ax-muted-dark);
  letter-spacing: 0.14em;
}
.ax-header-right {
  display: flex;
  align-items: center;
  gap: 26px;
}
.ax-nav {
  display: flex;
  gap: 22px;
  font-size: 13px;
  font-weight: 500;
  color: #cdd7e4;
}
.ax-nav a:hover {
  color: var(--ax-blue-light);
}
.ax-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--ax-blue);
  color: #fff;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: 40px;
  font-size: 13px;
  transition: background 0.2s ease;
}
.ax-cta:hover {
  background: #1657d6;
}
.ax-line-ico {
  width: 17px;
  height: 17px;
  border-radius: 5px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ax-line-ico img {
  width: 100%;
  height: 100%;
}
.ax-mobile-cta {
  display: none;
}
.ax-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
  height: 22px;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  flex: 0 0 auto;
}
.ax-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
}

/* Hero */
.ax-hero {
  position: relative;
  height: 620px;
  overflow: hidden;
  background: var(--ax-navy-deep);
}
.ax-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: axKb 20s ease-in-out infinite alternate;
}
.ax-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(10, 21, 38, 0.94) 0%,
    rgba(10, 21, 38, 0.72) 40%,
    rgba(10, 21, 38, 0.28) 75%,
    rgba(30, 107, 255, 0.22) 100%
  );
}
.ax-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 64px;
  max-width: 820px;
}
.ax-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}
.ax-eyebrow .bar {
  width: 46px;
  height: 2px;
  background: var(--ax-blue);
  flex: 0 0 auto;
}
.ax-eyebrow span:last-child {
  font-family: var(--ax-display);
  font-weight: 500;
  letter-spacing: 0.26em;
  font-size: 13px;
  color: var(--ax-blue-light);
}
.ax-hero h1 {
  margin: 0;
  font-family: var(--ax-heading);
  font-weight: 700;
  font-size: 62px;
  line-height: 1.28;
  letter-spacing: 0.01em;
  color: #fff;
}
.ax-hero h1 .accent {
  color: var(--ax-blue);
}
.ax-hero-lead {
  margin: 26px 0 40px;
  font-size: 16px;
  line-height: 2;
  color: var(--ax-muted-dark-2);
  max-width: 540px;
}
.ax-hero-cta {
  display: flex;
  gap: 14px;
}
@keyframes axKb {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.12);
  }
}

/* Buttons */
.ax-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ax-sans);
  font-size: 15px;
  padding: 17px 32px;
  border-radius: 40px;
  cursor: pointer;
  border: none;
  transition: background 0.2s ease;
}
.ax-btn-solid {
  background: var(--ax-blue);
  color: #fff;
  font-weight: 700;
}
.ax-btn-solid:hover {
  background: #1657d6;
}
.ax-btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-weight: 500;
  padding: 17px 30px;
}

/* Marquee */
.ax-marquee {
  background: var(--ax-blue);
  overflow: hidden;
  padding: 14px 0;
}
.ax-marquee-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: axMarq 24s linear infinite;
  font-family: var(--ax-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.04em;
  color: #fff;
}
.ax-marquee-track span {
  padding: 0 26px;
}
.ax-marquee-track span.sep {
  color: #bcd3ff;
}
@keyframes axMarq {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Sections */
.ax-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 64px;
}
.ax-section {
  padding: 100px 0;
}
.ax-section-dark {
  background: var(--ax-navy-deep);
  color: #fff;
}
.ax-kicker {
  margin-bottom: 44px;
}
.ax-kicker-center {
  text-align: center;
  margin-bottom: 56px;
}
.ax-kicker .en {
  font-family: var(--ax-display);
  font-weight: 500;
  letter-spacing: 0.24em;
  font-size: 13px;
  color: var(--ax-blue);
}
.ax-section-dark .ax-kicker .en {
  color: var(--ax-blue-light);
}
.ax-kicker h2 {
  margin: 12px 0 0;
  font-family: var(--ax-heading);
  font-weight: 700;
  font-size: 38px;
  letter-spacing: 0.02em;
  color: var(--ax-navy);
}
.ax-section-dark .ax-kicker h2 {
  color: #fff;
}

/* Page intro band (sub pages) */
.ax-page-intro {
  background: var(--ax-navy-deep);
  color: #fff;
  padding: 68px 0;
  text-align: center;
}
.ax-page-intro .en {
  font-family: var(--ax-display);
  font-weight: 500;
  letter-spacing: 0.24em;
  font-size: 13px;
  color: var(--ax-blue-light);
}
.ax-page-intro h1 {
  margin: 14px 0 0;
  font-family: var(--ax-heading);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.02em;
}
.ax-page-intro p {
  margin: 16px auto 0;
  max-width: 560px;
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--ax-muted-dark-2);
}

/* Stats */
.ax-stats {
  background: var(--ax-navy);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: #fff;
}
.ax-stat {
  padding: 44px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}
.ax-stat:last-child {
  border-right: none;
}
.ax-stat-num {
  font-family: var(--ax-display);
  font-weight: 700;
  font-size: 54px;
  line-height: 1;
}
.ax-stat-num .unit {
  color: var(--ax-blue-light);
}
.ax-stat-label {
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--ax-muted-dark);
  letter-spacing: 0.05em;
}

/* About */
.ax-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.ax-about-text .en {
  font-family: var(--ax-display);
  font-weight: 500;
  letter-spacing: 0.24em;
  font-size: 13px;
  color: var(--ax-blue-light);
}
.ax-about-text h2 {
  margin: 14px 0 24px;
  font-family: var(--ax-heading);
  font-weight: 700;
  font-size: 38px;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: #fff;
}
.ax-about-text p {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 2.1;
  color: #b7c4d6;
}
.ax-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.ax-tag {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 9px 16px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}
.ax-about-media {
  position: relative;
  height: 440px;
  border-radius: 12px;
  overflow: hidden;
}
.ax-about-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ax-about-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 1;
  background: rgba(30, 107, 255, 0.95);
  color: #fff;
  padding: 16px 22px;
  border-radius: 8px;
}
.ax-about-badge .t {
  font-family: var(--ax-display);
  font-weight: 700;
  font-size: 15px;
}
.ax-about-badge .s {
  font-size: 11px;
  color: #d5e2ff;
  margin-top: 2px;
}

/* Services */
.ax-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ax-service-card {
  background: #fff;
  border: 1px solid var(--ax-line);
  border-radius: 14px;
  overflow: hidden;
}
.ax-service-img {
  position: relative;
  height: 170px;
  overflow: hidden;
}
.ax-service-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ax-service-body {
  padding: 24px 22px;
}
.ax-service-num {
  font-family: var(--ax-display);
  color: var(--ax-blue);
  font-size: 13px;
  font-weight: 600;
}
.ax-service-body h3 {
  margin: 6px 0 10px;
  font-family: var(--ax-heading);
  font-weight: 600;
  font-size: 19px;
  color: var(--ax-navy);
}
.ax-service-body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  color: var(--ax-muted);
}

/* Pricing */
.ax-price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.ax-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--ax-bg);
  border: 1px solid var(--ax-line);
  border-radius: 12px;
  padding: 24px 28px;
}
.ax-price-row h3 {
  margin: 0 0 4px;
  font-family: var(--ax-heading);
  font-weight: 600;
  font-size: 17px;
  color: var(--ax-navy);
}
.ax-price-row p {
  margin: 0;
  font-size: 12px;
  color: var(--ax-muted-2);
}
.ax-price-num {
  font-family: var(--ax-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--ax-blue);
  flex: 0 0 auto;
}
.ax-price-num .t {
  font-size: 14px;
  color: var(--ax-muted-2);
}
.ax-price-note {
  text-align: center;
  margin: 24px 0 0;
  font-size: 12px;
  color: var(--ax-muted-2);
}

/* Works gallery (hstrip both breakpoints) */
.ax-works-hint {
  font-family: var(--ax-display);
  font-size: 12px;
  color: var(--ax-muted-2);
  letter-spacing: 0.1em;
}
.ax-hstrip {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 0 64px 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.ax-hstrip::-webkit-scrollbar {
  display: none;
}
.ax-gitem {
  flex: 0 0 320px;
  height: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  scroll-snap-align: start;
}
.ax-gitem.wide {
  flex-basis: 420px;
}
.ax-gitem img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ax-gitem-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 21, 38, 0.72), transparent 55%);
}
.ax-gtag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  color: #fff;
}
.ax-gtag .cat {
  background: rgba(10, 21, 38, 0.72);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 40px;
}
.ax-gitem.wide .ax-gtag .cat {
  background: var(--ax-blue);
}
.ax-gtag .cap {
  display: block;
  margin-top: 8px;
  font-weight: 600;
  font-size: 16px;
  font-family: var(--ax-heading);
}

/* Reasons + flow */
.ax-reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}
.ax-reason {
  border: 1px solid var(--ax-line);
  border-radius: 14px;
  padding: 32px 28px;
}
.ax-reason .num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--ax-blue-soft);
  color: var(--ax-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ax-display);
  font-weight: 700;
  margin-bottom: 18px;
}
.ax-reason h3 {
  margin: 0 0 10px;
  font-family: var(--ax-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--ax-navy);
}
.ax-reason p {
  margin: 0;
  font-size: 13px;
  line-height: 1.95;
  color: var(--ax-muted);
}
.ax-flow-label {
  font-family: var(--ax-display);
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 13px;
  color: var(--ax-navy);
  margin-bottom: 28px;
  display: block;
}
.ax-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.ax-step {
  background: var(--ax-bg);
  border-radius: 12px;
  padding: 24px 20px;
}
.ax-step.done {
  background: var(--ax-blue);
  color: #fff;
}
.ax-step .step-num {
  font-family: var(--ax-display);
  color: var(--ax-blue);
  font-weight: 600;
  font-size: 13px;
}
.ax-step.done .step-num {
  color: #fff;
}
.ax-step h4 {
  margin: 8px 0 6px;
  font-family: var(--ax-heading);
  font-weight: 600;
  font-size: 15px;
}
.ax-step p {
  margin: 0;
  font-size: 12px;
  color: var(--ax-muted-2);
  line-height: 1.7;
}
.ax-step.done p {
  color: #d5e2ff;
}

/* Staff */
.ax-staff {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.ax-staff-card {
  background: var(--ax-card-dark);
  border-radius: 14px;
  overflow: hidden;
}
.ax-staff-img {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.ax-staff-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ax-staff-body {
  padding: 24px 24px;
}
.ax-staff-role {
  font-family: var(--ax-display);
  color: var(--ax-blue-light);
  font-size: 12px;
  letter-spacing: 0.08em;
}
.ax-staff-body h3 {
  margin: 6px 0 8px;
  font-family: var(--ax-heading);
  font-weight: 600;
  font-size: 19px;
  color: #fff;
}
.ax-staff-body p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.85;
  color: var(--ax-muted-dark);
}

/* FAQ */
.ax-faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
details.ax-faq {
  background: #fff;
  border: 1px solid var(--ax-line);
  border-radius: 12px;
  padding: 4px 24px;
}
details.ax-faq > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-family: var(--ax-heading);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ax-navy);
}
details.ax-faq > summary::-webkit-details-marker {
  display: none;
}
.ax-faq-ic {
  font-family: var(--ax-display);
  color: var(--ax-blue);
  font-size: 22px;
  line-height: 1;
  transition: transform 0.3s ease;
  flex: 0 0 auto;
}
details.ax-faq[open] .ax-faq-ic {
  transform: rotate(45deg);
}
.ax-faq-a {
  margin: 0;
  padding: 0 0 22px;
  font-size: 13.5px;
  line-height: 2;
  color: var(--ax-muted);
}

/* Company info + contact */
.ax-company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ax-navy);
  color: #fff;
}
.ax-company-info,
.ax-contact-panel {
  padding: 84px 56px;
}
.ax-contact-panel {
  background: var(--ax-navy-deep);
}
.ax-company-info .en,
.ax-contact-panel .en {
  font-family: var(--ax-display);
  font-weight: 500;
  letter-spacing: 0.24em;
  font-size: 13px;
  color: var(--ax-blue-light);
}
.ax-company-info h2 {
  margin: 12px 0 30px;
  font-family: var(--ax-heading);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.02em;
}
.ax-contact-panel h2 {
  margin: 12px 0 8px;
  font-family: var(--ax-heading);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.02em;
}
.ax-contact-panel > p {
  margin: 0 0 28px;
  font-size: 13px;
  line-height: 1.9;
  color: var(--ax-muted-dark);
}
.ax-info-list {
  display: flex;
  flex-direction: column;
}
.ax-info-row {
  display: flex;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13.5px;
}
.ax-info-row:last-child {
  border-bottom: none;
}
.ax-info-row .label {
  width: 120px;
  color: var(--ax-muted-dark);
  flex-shrink: 0;
}
.ax-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ax-form input,
.ax-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--ax-navy);
  border-radius: 8px;
  padding: 14px 15px;
  font-size: 15px;
  font-family: inherit;
  color: #fff;
}
.ax-form textarea {
  resize: none;
}
.ax-submit {
  border: none;
  background: var(--ax-blue);
  color: #fff;
  font-weight: 700;
  padding: 16px;
  border-radius: 40px;
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s ease;
}
.ax-submit:hover {
  background: #1657d6;
}
.ax-line-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  padding: 15px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
}

/* Footer */
.ax-footer {
  background: var(--ax-navy-deepest);
  color: #7c8aa0;
  padding: 44px 0;
}
.ax-footer-in {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ax-footer-logo {
  display: flex;
  align-items: baseline;
  gap: 9px;
}
.ax-footer-logo .en {
  font-family: var(--ax-display);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}
.ax-footer-logo .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ax-blue);
  flex: 0 0 auto;
}
.ax-footer-name {
  font-size: 11px;
  letter-spacing: 0.06em;
}
.ax-footer-cp {
  font-size: 11px;
  letter-spacing: 0.06em;
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 1s cubic-bezier(0.16, 0.8, 0.3, 1),
    transform 1s cubic-bezier(0.16, 0.8, 0.3, 1);
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}
.ax-reasons .reveal:nth-child(2) {
  transition-delay: 0.12s;
}
.ax-reasons .reveal:nth-child(3) {
  transition-delay: 0.24s;
}
.ax-services .reveal:nth-child(2),
.ax-staff .reveal:nth-child(2) {
  transition-delay: 0.1s;
}
.ax-services .reveal:nth-child(3),
.ax-staff .reveal:nth-child(3) {
  transition-delay: 0.2s;
}
.ax-services .reveal:nth-child(4) {
  transition-delay: 0.3s;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .ax-hero-bg {
    animation: none;
  }
  .ax-marquee-track {
    animation: none;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */
@media (max-width: 760px) {
  .ax-banner {
    font-size: 11px;
    padding: 8px 14px;
  }

  .ax-header-in {
    padding: 14px 20px;
  }
  .ax-logo .jp {
    display: none;
  }
  .ax-logo .en {
    font-size: 19px;
  }
  .ax-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ax-navy-deep);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px 20px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 24px -18px rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
    z-index: 30;
  }
  .ax-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .ax-nav a {
    padding: 11px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
  }
  .ax-nav a:last-of-type {
    border-bottom: none;
  }
  .ax-cta {
    display: none;
  }
  .ax-mobile-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--ax-blue);
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    padding: 8px 13px;
    border-radius: 40px;
  }
  .ax-header-right {
    gap: 10px;
  }
  .ax-toggle {
    display: flex;
  }

  .ax-hero {
    height: 540px;
  }
  .ax-hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(10, 21, 38, 0.6),
      rgba(10, 21, 38, 0.35) 40%,
      rgba(10, 21, 38, 0.95)
    );
  }
  .ax-hero-content {
    justify-content: flex-end;
    padding: 0 24px 40px;
    max-width: none;
  }
  .ax-eyebrow {
    margin-bottom: 18px;
  }
  .ax-eyebrow .bar {
    width: 34px;
  }
  .ax-eyebrow span:last-child {
    font-size: 11px;
  }
  .ax-hero h1 {
    font-size: 36px;
    line-height: 1.3;
  }
  .ax-hero-lead {
    margin: 16px 0 24px;
    font-size: 13px;
    line-height: 1.95;
    max-width: none;
  }
  .ax-hero-cta a.ax-btn-outline {
    display: none;
  }
  .ax-hero-cta .ax-btn {
    width: 100%;
  }

  .ax-marquee {
    padding: 11px 0;
  }
  .ax-marquee-track {
    font-size: 15px;
  }
  .ax-marquee-track span {
    padding: 0 18px;
  }

  .ax-wrap {
    padding: 0 22px;
  }
  .ax-section {
    padding: 42px 0;
  }
  .ax-kicker,
  .ax-kicker-center {
    text-align: center;
    margin-bottom: 24px;
  }
  .ax-kicker h2 {
    margin: 8px 0 0;
    font-size: 24px;
  }

  .ax-page-intro {
    padding: 44px 0;
  }
  .ax-page-intro h1 {
    font-size: 25px;
  }

  .ax-stats {
    grid-template-columns: 1fr 1fr;
  }
  .ax-stat {
    padding: 26px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }
  .ax-stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.09);
  }
  .ax-stat:nth-child(2) {
    border-right: none;
  }
  .ax-stat:nth-last-child(-n + 2) {
    border-bottom: none;
  }
  .ax-stat-num {
    font-size: 38px;
  }

  .ax-about-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .ax-about-media {
    height: 200px;
    margin-bottom: 24px;
    order: -1;
  }
  .ax-about-badge {
    display: none;
  }
  .ax-about-text h2 {
    font-size: 25px;
  }

  .ax-services {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .ax-service-img {
    height: 96px;
  }
  .ax-service-body {
    padding: 12px 13px;
  }
  .ax-service-num {
    display: none;
  }
  .ax-service-body h3 {
    margin: 0 0 3px;
    font-size: 15px;
  }
  .ax-service-body p {
    font-size: 11px;
    line-height: 1.6;
  }

  .ax-price-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .ax-price-row {
    padding: 16px 18px;
  }
  .ax-price-row h3 {
    font-size: 14px;
  }
  .ax-price-num {
    font-size: 19px;
  }

  .ax-hstrip {
    padding: 0 22px;
    gap: 12px;
  }
  .ax-gitem {
    flex-basis: 250px;
    height: 280px;
  }
  .ax-gitem.wide {
    flex-basis: 250px;
  }
  .ax-gtag .cap {
    font-size: 14px;
  }

  .ax-reasons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
  }
  .ax-reason {
    padding: 18px 18px;
  }
  .ax-reason-head {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .ax-reason .num {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    font-size: 14px;
    margin-bottom: 0;
  }
  .ax-reason h3 {
    margin: 0;
    font-size: 15px;
  }
  .ax-reason p {
    margin: 10px 0 0;
    font-size: 12px;
    line-height: 1.85;
  }
  .ax-flow-label {
    font-size: 11px;
    margin-bottom: 14px;
  }
  .ax-flow {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .ax-step {
    padding: 16px 16px;
  }
  .ax-step h4 {
    margin: 6px 0 0;
    font-size: 14px;
  }
  .ax-step p {
    display: none;
  }

  .ax-staff {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 0 22px;
    margin: 0 -22px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .ax-staff::-webkit-scrollbar {
    display: none;
  }
  .ax-staff-card {
    flex: 0 0 210px;
    scroll-snap-align: start;
  }
  .ax-staff-img {
    height: 220px;
  }
  .ax-staff-body {
    padding: 16px 16px;
  }
  .ax-staff-body h3 {
    font-size: 16px;
  }
  .ax-staff-body p {
    font-size: 11px;
    line-height: 1.7;
  }

  details.ax-faq {
    padding: 2px 18px;
  }
  details.ax-faq > summary {
    padding: 16px 0;
    font-size: 14px;
  }
  .ax-faq-ic {
    font-size: 20px;
  }
  .ax-faq-a {
    padding: 0 0 18px;
    font-size: 12.5px;
  }

  .ax-company-grid {
    display: block;
  }
  .ax-company-info,
  .ax-contact-panel {
    padding: 42px 22px;
  }
  .ax-company-info h2 {
    font-size: 22px;
    margin-bottom: 18px;
  }
  .ax-info-row {
    padding: 11px 0;
    font-size: 12.5px;
  }
  .ax-info-row .label {
    width: 80px;
  }
  .ax-info-row.auth {
    display: none;
  }
  .ax-contact-panel {
    border-radius: 12px;
    margin: 0 22px 42px;
    padding: 24px 20px;
  }
  .ax-contact-panel h2 {
    font-size: 19px;
  }
  .ax-field-message {
    display: none;
  }
}
