:root {
  font-family:'Noto Sans TC', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif,'微軟正黑體', ;
  color-scheme: dark;
  color: #f8fafc;
  background-color: #031827;
  --bg: #031827;
  --surface: rgba(255,255,255,0.08);
  --surface-strong: rgba(255,255,255,0.14);
  --text: #eef2ff;
  --muted: #a7b5d0;
  --primary: #48a0ff;
  --primary-strong: #2c6dde;
  --border: rgba(255,255,255,0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, rgba(72, 160, 255, 0.14), transparent 28%),
              linear-gradient(180deg, #04182b 0%, #081b2f 55%, #0d2642 100%);
  color: var(--text);
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px 56px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-logos {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 56px;
  width: auto;
}

.axis-logo {
  max-height: 38px;
}
.brand-label {
  margin: 0;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
}

.brand-subtitle {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #ffffff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 1fr);
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 120px);
  padding: 60px 0 40px;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow,
.section-eyebrow {
  margin: 0;
  color: #7aa6ff;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero h1 {
  margin: 22px 0 22px;
  font-size: clamp(2.9rem, 4.4vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.hero p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 38px 0 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  box-shadow: 0 22px 45px rgba(72, 160, 255, 0.24);
}

.button.secondary {
  color: #d5e3ff;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 14px;
}

.hero-stats div {
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.04);
}

.hero-stats strong {
  display: block;
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 6px;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
}

.hero-img {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.14);
}

.section {
  padding: 80px 0;
}

.container {
  width: min(1110px, 100%);
  margin: 0 auto;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-header h2 {
  margin: 18px auto 0;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.05;
  color: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 460px);
  gap: 36px;
  align-items: center;
}

.about-copy {
  max-width: 740px;
}

.about-copy p {
  margin: 0 0 20px;
  font-size: 1.05rem;
  line-height: 1.95;
  color: var(--muted);
}

.about-visual img {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.16);
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.about-pillars article {
  padding: 22px 24px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.1);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.15rem;
  background: rgba(72, 160, 255, 0.18);
  color: #ffffff;
}

.about-pillars strong {
  display: block;
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.about-pillars p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.contact-line {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(72, 160, 255, 0.18);
  color: #ffffff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-line div span {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-line div strong {
  color: #ffffff;
  margin-top: 6px;
  display: block;
}

.services-grid,
.advantages-grid,
.tech-grid,
.cases-grid {
  display: grid;
  gap: 28px;
}

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

.service-card,
.tech-card,
.case-card,
.advantage-card,
.power-copy,
.contact-form {
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
}

.service-card {
  padding: 32px 30px;
}

.service-icon {
  width: 74px;
  height: 74px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 2rem;
  background: rgba(72, 160, 255, 0.22);
  color: #ffffff;
}

.service-card h3 {
  margin: 0 0 14px;
  font-size: 1.35rem;
  color: #ffffff;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.advantage-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 26px;
  align-items: start;
  padding: 28px;
}

.advantage-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 22px;
}

.advantage-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  color: #ffffff;
}

.advantage-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

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

.tech-card {
  padding: 30px;
}

.tech-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(72, 160, 255, 0.22);
  color: #ffffff;
  font-size: 2.2rem;
  margin-bottom: 22px;
}

.tech-card h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 1.25rem;
}

.tech-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.cases-intro p {
  margin: 0 auto 24px;
  max-width: 760px;
  color: var(--muted);
}

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

.case-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 22px;
  align-items: center;
}

.case-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 18px;
}

.case-card span {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 700;
}

.case-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.power-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  align-items: center;
}

.power-copy {
  padding: 32px;
}

.power-copy h2 {
  margin: 18px 0 16px;
  color: #ffffff;
}

.power-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.82;
}

.power-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
}

.power-logo {
  width: auto;
  max-height: 70px;
  object-fit: contain;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr;
  gap: 32px;
  align-items: start;
}

.contact-copy {
  padding: 36px 34px;
}

.contact-copy h2 {
  margin: 18px 0 16px;
  color: #ffffff;
}

.contact-copy p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.82;
}

.contact-info {
  display: grid;
  gap: 14px;
}

.contact-info div {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
}

.contact-info span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-info strong {
  display: block;
  margin-top: 8px;
  color: #ffffff;
}

.contact-info a {
  color: #90c0ff;
}

.contact-form {
  padding: 32px 34px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.contact-form span {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: #ffffff;
  padding: 16px 18px;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9fb5d6;
}

.contact-form textarea {
  min-height: 154px;
  resize: vertical;
}

.site-footer {
  padding: 24px 0 4px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .hero-visual {
    order: -1;
  }

  .services-grid,
  .advantages-grid,
  .tech-grid,
  .cases-grid,
  .about-pillars {
    grid-template-columns: 1fr;
  }

  .advantage-card,
  .case-card {
    grid-template-columns: 1fr;
  }

  .power-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page-shell {
    padding: 0 18px 40px;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .site-nav {
    gap: 14px;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .about-pillars article,
  .service-card,
  .advantage-card,
  .tech-card,
  .case-card,
  .power-copy,
  .contact-copy,
  .contact-form,
  .power-logos {
    border-radius: 22px;
  }

  .service-card,
  .tech-card,
  .case-card,
  .advantage-card,
  .contact-form,
  .power-copy,
  .contact-copy {
    padding: 24px;
  }
}

/* Responsive refinements */
:root {
  --page-gutter: clamp(18px, 3vw, 30px);
  --header-bg: rgba(3, 24, 39, 0.78);
  --header-border: rgba(255,255,255,0.11);
}

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

body {
  overflow-x: hidden;
}

section[id] {
  scroll-margin-top: 96px;
}

.page-shell {
  width: min(100%, 1280px);
  max-width: none;
  padding-inline: var(--page-gutter);
}

.site-header {
  position: sticky;
  top: 10px;
  z-index: 50;
  min-height: 78px;
  margin-top: 10px;
  padding: 12px 16px;
  border: 1px solid var(--header-border);
  border-radius: 20px;
  background: var(--header-bg);
  box-shadow: 0 14px 44px rgba(0,0,0,0.16);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.brand {
  min-width: 0;
}

.brand-logos {
  flex: 0 0 auto;
}

.brand-label,
.brand-subtitle {
  white-space: nowrap;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), #77c7ff);
  transition: right .24s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  right: 0;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  color: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform .24s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  min-height: min(820px, calc(100dvh - 110px));
  padding-top: clamp(50px, 6vw, 78px);
}

.hero h1 {
  text-wrap: balance;
}

.hero-visual {
  min-width: 0;
}

.hero-img,
.about-visual img,
.advantage-img,
.case-img {
  background: rgba(255,255,255,.035);
}

.section-header h2 {
  text-wrap: balance;
}

.service-card,
.tech-card,
.advantage-card,
.case-card,
.power-copy,
.contact-form {
  transition: transform .24s ease, border-color .24s ease, background-color .24s ease;
}

@media (hover: hover) {
  .service-card:hover,
  .tech-card:hover,
  .advantage-card:hover,
  .case-card:hover {
    transform: translateY(-4px);
    border-color: rgba(72,160,255,.34);
    background: rgba(255,255,255,.075);
  }
}

.contact-info > .contact-line {
  padding: 18px 20px;
}

.contact-info > .contact-line > div {
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.contact-line strong {
  overflow-wrap: anywhere;
}

.contact-form input,
.contact-form textarea {
  font-size: 16px; /* Prevent iOS zoom-on-focus */
}

.button,
.nav-toggle,
.site-nav a {
  -webkit-tap-highlight-color: transparent;
}

.button:focus-visible,
.nav-toggle:focus-visible,
.site-nav a:focus-visible,
.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid #8cc4ff;
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .brand-label,
  .brand-subtitle {
    display: none;
  }

  .site-nav {
    gap: 18px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(330px, .85fr);
    gap: 38px;
  }

  .hero-visual {
    order: initial;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 5vw, 4rem);
  }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 84px; }
  section[id] { scroll-margin-top: 84px; }

  .site-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 68px;
    top: 8px;
    padding: 10px 12px;
    border-radius: 18px;
  }

  .brand-logo { height: 46px; }
  .axis-logo { max-height: 31px; }

  .nav-toggle {
    display: block;
    margin-left: auto;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: rgba(3,24,39,.96);
    box-shadow: 0 22px 55px rgba(0,0,0,.28);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(.99);
    transform-origin: top center;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .site-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255,255,255,.035);
  }

  .site-nav a::after { display: none; }

  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
    padding: 62px 0 34px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    order: initial;
    width: min(100%, 700px);
    margin-inline: auto;
  }

  .hero-img {
    max-height: 620px;
    object-position: center top;
  }

  .section {
    padding: 64px 0;
  }

  .about-grid,
  .power-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    width: min(100%, 660px);
    margin-inline: auto;
  }

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

  .advantages-grid,
  .cases-grid {
    grid-template-columns: 1fr;
  }

  .advantage-card {
    grid-template-columns: minmax(180px, 34%) 1fr;
  }

  .case-card {
    grid-template-columns: 150px 1fr;
  }

  .power-logos {
    min-height: 150px;
  }
}

@media (max-width: 640px) {
  :root { --page-gutter: 14px; }

  .page-shell {
    padding-bottom: 30px;
  }

  .site-header {
    margin-top: 8px;
    padding-inline: 10px;
  }

  .brand-logos { gap: 8px; }
  .brand-logo { height: 39px; }
  .axis-logo { max-height: 26px; }
  .nav-toggle { width: 44px; height: 44px; border-radius: 13px; }

  .site-nav {
    grid-template-columns: 1fr;
    max-height: min(68vh, 430px);
    overflow-y: auto;
  }

  .hero {
    gap: 28px;
    padding: 48px 2px 24px;
  }

  .eyebrow,
  .section-eyebrow {
    font-size: .78rem;
    letter-spacing: .14em;
  }

  .hero h1 {
    margin: 16px 0 16px;
    font-size: clamp(2rem, 10.3vw, 2.55rem);
    line-height: 1.16;
    letter-spacing: -.025em;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.78;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 28px 0 24px;
  }

  .button {
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 14px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-stats div {
    display: grid;
    grid-template-columns: minmax(92px, auto) 1fr;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 15px;
  }

  .hero-stats strong { margin: 0; }
  .hero-stats span { text-align: right; font-size: .88rem; }

  .hero-img,
  .about-visual img {
    border-radius: 18px;
  }

  .section {
    padding: 48px 0;
  }

  .section-header {
    margin-bottom: 28px;
    padding-inline: 4px;
  }

  .section-header h2 {
    margin-top: 12px;
    font-size: clamp(1.65rem, 7.3vw, 2.05rem);
    line-height: 1.25;
  }

  .about-copy p {
    margin-bottom: 16px;
    font-size: .98rem;
    line-height: 1.82;
  }

  .services-grid,
  .tech-grid,
  .advantages-grid,
  .cases-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-card,
  .tech-card,
  .advantage-card,
  .case-card,
  .power-copy,
  .contact-copy,
  .contact-form,
  .power-logos {
    padding: 20px;
    border-radius: 18px;
  }

  .service-card,
  .tech-card {
    display: grid;
    grid-template-columns: 54px 1fr;
    column-gap: 14px;
    align-items: center;
  }

  .service-icon,
  .tech-icon {
    grid-row: 1 / span 2;
    width: 54px;
    height: 54px;
    margin: 0;
    border-radius: 15px;
    font-size: 1.45rem;
  }

  .service-card h3,
  .tech-card h3 {
    margin: 0 0 6px;
    font-size: 1.08rem;
  }

  .service-card p,
  .tech-card p {
    font-size: .92rem;
    line-height: 1.65;
  }

  .advantage-card,
  .case-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .advantage-img {
    height: auto;
    max-height: 250px;
    object-fit: cover;
    object-position: top;
    border-radius: 15px;
  }

  .case-img {
    height: auto;
    max-height: 220px;
    object-fit: cover;
    border-radius: 15px;
  }

  .power-copy h2,
  .contact-copy h2 {
    font-size: 1.65rem;
    line-height: 1.28;
  }

  .power-logos {
    min-height: 118px;
    gap: 16px;
  }

  .power-logo {
    max-width: calc(50% - 10px);
    max-height: 52px;
  }

  .contact-copy {
    padding-inline: 4px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .contact-info > .contact-line {
    padding: 14px;
    border-radius: 15px;
  }

  .info-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .contact-line div strong {
    font-size: .9rem;
    line-height: 1.5;
  }

  .contact-form label { margin-bottom: 15px; }

  .contact-form input,
  .contact-form textarea {
    padding: 14px 15px;
    border-radius: 13px;
  }

  .contact-form textarea { min-height: 130px; }

  .site-footer {
    padding-inline: 16px;
    font-size: .82rem;
    line-height: 1.6;
  }
}

@media (max-width: 380px) {
  .brand-logo { height: 35px; }
  .axis-logo { max-height: 23px; }
  .hero-actions { grid-template-columns: 1fr; }
  .hero-stats div { grid-template-columns: 1fr; gap: 4px; }
  .hero-stats span { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ============================================================
   Visual polish v2 — enterprise maritime / AI interface
   ============================================================ */
:root {
  --bg-deep: #031522;
  --bg-mid: #06233a;
  --panel: rgba(9, 36, 58, 0.72);
  --panel-soft: rgba(255,255,255,.045);
  --cyan: #58d8ff;
  --cyan-soft: rgba(88,216,255,.18);
  --blue-glow: rgba(72,160,255,.28);
  --line-soft: rgba(132,190,239,.14);
  --line-bright: rgba(111,202,255,.32);
  --heading: #f7fbff;
  --muted: #aebed4;
  --shadow-soft: 0 16px 50px rgba(0, 8, 20, .22);
  --shadow-card: 0 18px 50px rgba(0, 8, 20, .18), inset 0 1px rgba(255,255,255,.035);
}

body {
  background:
    radial-gradient(900px 560px at 12% -8%, rgba(48,142,232,.22), transparent 62%),
    radial-gradient(760px 500px at 88% 12%, rgba(36,197,225,.11), transparent 66%),
    linear-gradient(180deg, #031522 0%, #051b2e 38%, #08243d 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .28;
  background-image:
    linear-gradient(rgba(109,184,239,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109,184,239,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.page-shell {
  position: relative;
}

.site-header {
  border-color: rgba(126,194,244,.17);
  background:
    linear-gradient(180deg, rgba(11,42,65,.9), rgba(4,27,45,.84));
  box-shadow:
    0 18px 54px rgba(0,8,20,.26),
    inset 0 1px rgba(255,255,255,.055);
}

.site-header::before {
  content: '';
  position: absolute;
  left: 22px;
  right: 22px;
  top: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91,205,255,.58), transparent);
}

.brand-logos {
  padding-right: 14px;
  border-right: 1px solid rgba(255,255,255,.1);
}

.brand-logo {
  filter: drop-shadow(0 5px 13px rgba(0,0,0,.18));
}

.site-nav a {
  color: #aec0d6;
  font-size: .95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #f7fbff;
}

.hero {
  position: relative;
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  left: -220px;
  top: 90px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(55,146,237,.16), transparent 70%);
  filter: blur(4px);
}

.eyebrow,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #75cfff;
}

.eyebrow::before,
.section-eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #5acfff, #5688ff);
  box-shadow: 0 0 14px rgba(88,216,255,.5);
}

.hero h1 {
  max-width: 720px;
  text-shadow: 0 8px 32px rgba(0,0,0,.18);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
}

.button {
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.button.primary {
  background: linear-gradient(135deg, #4daeff 0%, #316fdf 100%);
  border-color: rgba(154,218,255,.28);
  box-shadow: 0 15px 36px rgba(43,116,221,.28), inset 0 1px rgba(255,255,255,.2);
}

.button.primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -65%;
  width: 45%;
  height: 100%;
  transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transition: left .5s ease;
}

.button.primary:hover::after { left: 120%; }

.button.secondary {
  background: rgba(9,36,58,.72);
  border-color: rgba(131,192,238,.22);
  box-shadow: inset 0 1px rgba(255,255,255,.04);
}

.hero-stats {
  gap: 12px;
}

.hero-stats div {
  position: relative;
  overflow: hidden;
  border-color: rgba(118,185,235,.18);
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  box-shadow: inset 0 1px rgba(255,255,255,.035);
}

.hero-stats div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(180deg, #5bcfff, #4f7dff);
  box-shadow: 0 0 12px rgba(91,207,255,.5);
}

.hero-stats strong {
  letter-spacing: .02em;
}

.hero-visual {
  padding: 10px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(107,195,255,.13), rgba(255,255,255,.018));
  border: 1px solid rgba(123,195,245,.15);
  box-shadow: 0 28px 80px rgba(0,9,24,.28);
}

.hero-visual::before,
.hero-visual::after {
  content: '';
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(35px);
}

.hero-visual::before {
  width: 180px;
  height: 180px;
  right: -28px;
  top: -30px;
  background: rgba(70,163,255,.19);
}

.hero-visual::after {
  width: 150px;
  height: 150px;
  left: -24px;
  bottom: -32px;
  background: rgba(74,212,230,.1);
}

.hero-img {
  border-radius: 22px;
  border-color: rgba(176,223,255,.13);
}

.section {
  position: relative;
}

.section + .section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 7%;
  right: 7%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(116,189,239,.14), transparent);
}

.section-header {
  margin-bottom: 48px;
}

.section-header h2 {
  color: var(--heading);
  letter-spacing: -.025em;
  text-shadow: 0 6px 26px rgba(0,0,0,.16);
}

.services,
.tech,
.contact {
  margin-inline: -10px;
  padding-inline: 10px;
  border-radius: 36px;
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(51,138,219,.075), transparent 72%),
    linear-gradient(180deg, rgba(255,255,255,.012), rgba(255,255,255,.025));
}

.service-card,
.tech-card,
.advantage-card,
.case-card,
.power-copy,
.contact-form,
.power-logos,
.contact-info > .contact-line {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(10,42,67,.76), rgba(5,28,47,.64));
  border-color: rgba(123,190,239,.16);
  box-shadow: var(--shadow-card);
}

.service-card::before,
.tech-card::before,
.advantage-card::before,
.case-card::before,
.contact-form::before {
  content: '';
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(95,207,255,.43), transparent);
}

.service-icon,
.tech-icon {
  color: #79d7ff;
  background:
    linear-gradient(145deg, rgba(79,172,243,.2), rgba(59,104,207,.13));
  border: 1px solid rgba(112,205,255,.18);
  box-shadow: inset 0 1px rgba(255,255,255,.055), 0 12px 28px rgba(0,12,28,.16);
}

.icon-svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.tech-card h3,
.advantage-card h3 {
  letter-spacing: -.01em;
}

.service-card p,
.tech-card p,
.advantage-card p,
.case-card p,
.about-copy p,
.power-copy p,
.contact-copy p {
  color: #afbed1;
}

.advantage-card {
  align-items: center;
  min-height: 232px;
}

.advantage-img,
.case-img {
  border: 1px solid rgba(163,213,248,.13);
  box-shadow: 0 15px 35px rgba(0,8,20,.22);
}

.advantage-card > div,
.case-card > div {
  position: relative;
  z-index: 1;
}

.case-card span {
  color: #dff5ff;
  font-size: .96rem;
}

.power-grid {
  position: relative;
}

.power-copy {
  background:
    radial-gradient(460px 240px at 10% 0%, rgba(64,147,229,.1), transparent 70%),
    linear-gradient(145deg, rgba(10,42,67,.78), rgba(5,28,47,.7));
}

.power-logos {
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.022));
  min-height: 190px;
}

.power-logo {
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.22));
}

.contact-copy h2,
.power-copy h2 {
  color: var(--heading);
  letter-spacing: -.02em;
}

.contact-info > .contact-line {
  transition: border-color .22s ease, transform .22s ease, background-color .22s ease;
}

.contact-info > .contact-line:hover {
  transform: translateX(3px);
  border-color: rgba(88,216,255,.27);
}

.info-icon {
  color: #71d6ff;
  background: rgba(74,170,241,.14);
  border: 1px solid rgba(112,205,255,.16);
}

.contact-form input,
.contact-form textarea {
  background: rgba(2,18,31,.4);
  border-color: rgba(129,189,232,.17);
  box-shadow: inset 0 1px 2px rgba(0,0,0,.12);
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(87,202,255,.65);
  background: rgba(4,25,41,.72);
  box-shadow: 0 0 0 4px rgba(82,185,247,.085);
}

.site-footer {
  border-top: 1px solid rgba(122,190,238,.1);
  margin-top: 16px;
}

@media (hover: hover) {
  .service-card:hover,
  .tech-card:hover,
  .advantage-card:hover,
  .case-card:hover {
    transform: translateY(-5px);
    border-color: rgba(92,203,255,.34);
    background: linear-gradient(145deg, rgba(12,48,76,.86), rgba(6,31,51,.74));
    box-shadow: 0 24px 58px rgba(0,8,20,.24), inset 0 1px rgba(255,255,255,.045);
  }
}

@media (max-width: 900px) {
  .site-header::before { left: 16px; right: 16px; }
  .brand-logos { border-right: 0; padding-right: 0; }
  .site-nav {
    background: linear-gradient(180deg, rgba(8,34,55,.98), rgba(3,24,39,.98));
    border-color: rgba(124,195,244,.18);
  }
  .hero {
    padding-top: 52px;
  }
  .hero-visual {
    padding: 8px;
    border-radius: 26px;
  }
}

@media (max-width: 640px) {
  body::before {
    opacity: .18;
    background-size: 42px 42px;
  }

  .site-header {
    box-shadow: 0 12px 32px rgba(0,8,20,.23), inset 0 1px rgba(255,255,255,.045);
  }

  .hero {
    padding-top: 42px;
  }

  .hero::before {
    width: 300px;
    height: 300px;
    left: -160px;
    top: 40px;
  }

  .hero h1 {
    font-weight: 750;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-stats div {
    background: linear-gradient(145deg, rgba(11,43,67,.78), rgba(5,28,47,.68));
  }

  .hero-visual {
    padding: 6px;
    border-radius: 20px;
    box-shadow: 0 20px 48px rgba(0,9,24,.24);
  }

  .hero-img { border-radius: 14px; }

  .section + .section::before {
    left: 12%;
    right: 12%;
  }

  .services,
  .tech,
  .contact {
    margin-inline: -4px;
    padding-inline: 4px;
    border-radius: 24px;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .eyebrow::before,
  .section-eyebrow::before {
    width: 18px;
  }

  .service-card::before,
  .tech-card::before,
  .advantage-card::before,
  .case-card::before,
  .contact-form::before {
    left: 16px;
    right: 16px;
  }

  .icon-svg {
    width: 25px;
    height: 25px;
  }

  .advantage-card {
    min-height: 0;
  }

  .power-logos {
    min-height: 120px;
  }
}

/* Picture wrappers for responsive image sources */
.hero-visual picture,
.about-visual picture,
.advantage-card picture,
.case-card picture {
  display: block;
  min-width: 0;
}

.hero-visual picture {
  width: 100%;
}

.advantage-card picture,
.case-card picture {
  width: 100%;
}

html,
body {
  overflow-x: clip;
}
