:root {
  --navy: #17365d;
  --navy-deep: #0c2340;
  --blue: #2e74b5;
  --blue-bright: #4b93cf;
  --ice: #eaf2f8;
  --mist: #f4f7fa;
  --ink: #172332;
  --slate: #536171;
  --line: #d9e2ea;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.site-header {
  height: 86px;
  padding: 0 clamp(24px, 5vw, 82px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.22);
}

.brand img { width: 248px; display: block; filter: brightness(0) invert(1); }
nav { display: flex; align-items: center; gap: 34px; font-size: 13px; font-weight: 700; letter-spacing: .04em; }
nav a { opacity: .9; transition: opacity .2s ease; }
nav a:hover { opacity: 1; }
.nav-cta { border: 1px solid rgba(255,255,255,.55); padding: 13px 18px; }

.hero {
  min-height: 760px;
  height: min(900px, 100vh);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
  color: white;
}
.hero-media {
  position: absolute;
  inset: 0;
  background: url("/images/axis-hero.jpg") center / cover no-repeat;
  transform: scale(1.01);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,25,47,.96) 0%, rgba(10,39,72,.82) 44%, rgba(10,39,72,.20) 75%),
    linear-gradient(0deg, rgba(6,25,47,.62), transparent 48%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 76vw);
  margin-left: clamp(24px, 8vw, 130px);
  padding-top: 46px;
}
.eyebrow, .section-kicker {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow { color: #a9d4f5; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(50px, 6vw, 88px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 500;
}
h1 span { color: #8fc9f1; }
.hero-lead {
  max-width: 690px;
  color: rgba(255,255,255,.82);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 14px; margin-top: 40px; }
.button { padding: 17px 24px; font-size: 13px; font-weight: 800; letter-spacing: .025em; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--blue); color: white; }
.button-primary:hover { background: var(--blue-bright); }
.button-ghost { border: 1px solid rgba(255,255,255,.48); }
.hero-proof {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 5vw, 80px);
  bottom: 0;
  background: rgba(12,35,64,.9);
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 220px));
  border-top: 3px solid var(--blue);
}
.hero-proof div { padding: 24px 26px; border-left: 1px solid rgba(255,255,255,.16); }
.hero-proof strong { display: block; margin-bottom: 7px; font-size: 14px; }
.hero-proof span { display: block; color: rgba(255,255,255,.65); font-size: 11px; line-height: 1.45; }

.section { padding: 112px clamp(24px, 8vw, 130px); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9vw; align-items: start; }
h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 500;
}
.intro-grid p, .section-heading > p {
  color: var(--slate);
  font-size: 16px;
  line-height: 1.75;
}
.intro-grid .large-copy { margin-bottom: 18px; color: var(--ink); font-size: 22px; line-height: 1.55; }

.services { background: var(--mist); }
.section-heading { display: grid; grid-template-columns: 1.7fr .8fr; gap: 8vw; align-items: end; margin-bottom: 58px; }
.section-heading h2 { max-width: 780px; margin-bottom: 0; }
.section-heading > p { margin-bottom: 4px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card {
  position: relative;
  min-height: 320px;
  padding: 34px;
  background: white;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { z-index: 2; transform: translateY(-5px); box-shadow: 0 24px 60px rgba(14,42,70,.12); }
.service-card > span { color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .15em; }
.service-card h3 { max-width: 260px; margin: 58px 0 16px; color: var(--navy); font-size: 22px; line-height: 1.2; }
.service-card p { color: var(--slate); font-size: 14px; line-height: 1.7; }
.card-line { position: absolute; left: 34px; bottom: 0; width: 0; height: 4px; background: var(--blue); transition: width .25s ease; }
.service-card:hover .card-line { width: calc(100% - 68px); }

.quality { display: grid; grid-template-columns: 1fr 1fr; min-height: 720px; background: var(--navy-deep); color: white; }
.quality-image { background: url("/images/axis-quality.jpg") center / cover no-repeat; min-height: 640px; }
.quality-content { padding: clamp(68px, 8vw, 120px); align-self: center; }
.section-kicker.light { color: #83bce6; }
.quality h2 { color: white; }
.quality-content > p:not(.section-kicker) { color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.75; }
.quality ul { list-style: none; padding: 0; margin: 30px 0 36px; }
.quality li { padding: 12px 0 12px 28px; position: relative; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 14px; }
.quality li::before { content: ""; position: absolute; left: 0; top: 17px; width: 10px; height: 3px; background: var(--blue-bright); }
.quality-content > a { color: #a9d4f5; font-size: 13px; font-weight: 800; }
.quality-content > a span { margin-left: 10px; font-size: 20px; }

.values-heading { margin-bottom: 30px; }
.value-list { border-top: 1px solid var(--line); }
.value-list article {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}
.value-list span { color: var(--blue); font-size: 11px; font-weight: 800; }
.value-list h3 { margin: 0; color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: 25px; font-weight: 500; }
.value-list p { margin: 0; color: var(--slate); font-size: 14px; line-height: 1.6; }

.delivery { background: var(--ice); }
.delivery > h2 { max-width: 740px; margin-bottom: 55px; }
.process { display: grid; grid-template-columns: repeat(5, 1fr); }
.process article { position: relative; padding: 30px 25px 22px 0; border-top: 2px solid var(--blue); }
.process article:not(:last-child) { margin-right: 20px; }
.process span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-top: -46px;
  margin-bottom: 26px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 11px;
  font-weight: 800;
}
.process h3 { color: var(--navy); font-size: 18px; }
.process p { color: var(--slate); font-size: 13px; line-height: 1.65; }

.contact {
  padding: 100px clamp(24px, 8vw, 130px);
  display: grid;
  grid-template-columns: 1.55fr .75fr;
  gap: 10vw;
  align-items: end;
  background: var(--blue);
  color: white;
}
.contact h2 { color: white; margin: 0; }
.contact-action p { color: rgba(255,255,255,.75); line-height: 1.65; }
.contact-action a { display: inline-flex; gap: 12px; align-items: center; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.7); font-size: 20px; font-weight: 800; }

footer {
  padding: 50px clamp(24px, 8vw, 130px) 28px;
  display: grid;
  grid-template-columns: 260px 1fr auto;
  gap: 40px;
  align-items: center;
  background: var(--white);
  color: var(--slate);
  font-size: 12px;
}
footer img { width: 225px; }
footer p { margin: 0; }
footer > div { display: flex; gap: 24px; color: var(--navy); font-weight: 700; }
footer small { grid-column: 1 / -1; padding-top: 24px; border-top: 1px solid var(--line); color: #7d8997; }

@media (max-width: 1000px) {
  nav a:not(.nav-cta) { display: none; }
  .hero-proof { left: 24px; right: 24px; grid-template-columns: repeat(3, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .quality { grid-template-columns: 1fr; }
  .quality-image { min-height: 520px; }
  .process { grid-template-columns: repeat(2, 1fr); gap: 34px 20px; }
  .contact { grid-template-columns: 1fr; align-items: start; }
  footer { grid-template-columns: 1fr 1fr; }
  footer > div { justify-self: end; }
  footer p { display: none; }
}

@media (max-width: 680px) {
  .site-header { height: 74px; padding: 0 20px; }
  .brand img { width: 190px; }
  .nav-cta { padding: 10px 12px; font-size: 11px; }
  .hero { min-height: 800px; height: auto; padding: 130px 0 230px; }
  .hero-shade { background: linear-gradient(90deg, rgba(6,25,47,.96), rgba(10,39,72,.65)); }
  .hero-content { width: auto; margin: 0 22px; padding: 0; }
  h1 { font-size: 48px; }
  .hero-actions { align-items: stretch; flex-direction: column; max-width: 290px; }
  .hero-proof { left: 0; right: 0; grid-template-columns: 1fr; }
  .hero-proof div { padding: 13px 22px; }
  .hero-proof span { display: none; }
  .section { padding: 78px 22px; }
  .intro-grid, .section-heading { grid-template-columns: 1fr; gap: 25px; }
  h2 { font-size: 40px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 280px; }
  .quality-image { min-height: 380px; }
  .quality-content { padding: 72px 22px; }
  .value-list article { grid-template-columns: 45px 1fr; gap: 12px; }
  .value-list p { grid-column: 2; }
  .process { grid-template-columns: 1fr; gap: 30px; }
  .contact { padding: 78px 22px; }
  .contact-action a { font-size: 17px; }
  footer { padding: 42px 22px 24px; grid-template-columns: 1fr; }
  footer > div { justify-self: start; flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
