:root {
  color-scheme: light;
  --ink: #151719;
  --panel: #202326;
  --paper: #f6f8fb;
  --white: #ffffff;
  --blue: #2d8ce2;
  --blue-deep: #176096;
  --cyan: #66c8ff;
  --mint: #42b883;
  --amber: #f3b544;
  --muted: #667684;
  --line: rgba(21, 23, 25, 0.12);
  --shadow: 0 22px 55px rgba(10, 22, 34, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  min-width: 320px;
}

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

.site-hero {
  background:
    linear-gradient(105deg, rgba(12, 18, 24, 0.84) 0%, rgba(12, 18, 24, 0.66) 42%, rgba(23, 96, 150, 0.42) 100%),
    url("./assets/auxilium-tech-flyer.jpeg") center / cover no-repeat;
  color: var(--white);
  min-height: min(720px, 82svh);
  overflow: hidden;
  position: relative;
}

.site-hero::after {
  background: rgba(45, 140, 226, 0.78);
  bottom: -24vh;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  content: "";
  min-height: 320px;
  pointer-events: none;
  position: absolute;
  right: 0;
  width: min(42vw, 560px);
}

.nav {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 24px clamp(18px, 5vw, 72px);
  position: relative;
  z-index: 2;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  gap: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-logo {
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  display: block;
  height: 48px;
  object-fit: cover;
  padding: 3px;
  width: 64px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.86);
}

.nav-links a:hover {
  color: var(--white);
}

.hero-content {
  display: grid;
  gap: 22px;
  max-width: 760px;
  padding: clamp(54px, 9vw, 112px) clamp(18px, 5vw, 72px) 72px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin: 0;
  text-transform: uppercase;
}

.site-hero .eyebrow {
  color: var(--cyan);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(3.2rem, 11vw, 8.6rem);
  letter-spacing: 0;
  line-height: 0.88;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: 0;
  line-height: 1;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.22;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.06rem, 2vw, 1.35rem);
  line-height: 1.55;
  max-width: 660px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.button {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
}

.button.primary {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

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

.intro-band {
  background: var(--panel);
  color: var(--white);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.intro-band > div {
  background: rgba(255, 255, 255, 0.045);
  display: grid;
  gap: 7px;
  min-height: 132px;
  padding: 28px clamp(18px, 4vw, 54px);
}

.mini-label {
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intro-band strong {
  font-size: clamp(1.18rem, 2vw, 1.65rem);
  line-height: 1.15;
}

.section {
  padding: clamp(64px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.services-section {
  background: var(--white);
}

.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 36px;
  max-width: 920px;
}

.section-heading p:last-child,
.support-copy p:last-child {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.65;
  max-width: 720px;
}

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

.service-card {
  border: 1px solid var(--line);
  display: grid;
  gap: 16px;
  min-height: 310px;
  padding: 24px;
}

.service-card.featured {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.service-number {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
}

.service-card.featured .service-number {
  color: var(--amber);
}

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

.service-card.featured p {
  color: rgba(255, 255, 255, 0.76);
}

.support-section {
  align-items: start;
  background:
    linear-gradient(90deg, rgba(246, 248, 251, 0.96), rgba(246, 248, 251, 0.74)),
    url("./assets/auxilium-tech-flyer.jpeg") left center / auto 112% no-repeat;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
}

.support-copy {
  display: grid;
  gap: 16px;
}

.support-list {
  display: grid;
  gap: 10px;
}

.support-list span {
  background: var(--white);
  border-left: 5px solid var(--blue);
  box-shadow: 0 12px 28px rgba(21, 23, 25, 0.08);
  font-weight: 800;
  line-height: 1.3;
  min-height: 58px;
  padding: 18px 20px;
}

.support-list span:nth-child(2n) {
  border-left-color: var(--mint);
}

.support-list span:nth-child(3n) {
  border-left-color: var(--amber);
}

.contact-section {
  align-items: center;
  background: var(--ink);
  color: var(--white);
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  padding: clamp(44px, 7vw, 76px) clamp(18px, 5vw, 72px);
}

.contact-section h2 {
  margin-top: 12px;
}

.contact-links {
  display: grid;
  font-style: normal;
  gap: 12px;
}

.contact-links a {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 800;
  min-height: 58px;
  padding: 16px 18px;
  overflow-wrap: anywhere;
}

.contact-links a:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  color: var(--white);
}

@media (max-width: 980px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 720px) {
  .site-hero {
    background-position: 42% center;
    min-height: 82svh;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .nav-links {
    justify-content: space-between;
    width: 100%;
  }

  .hero-content {
    padding-top: 40px;
  }

  .intro-band,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 240px;
  }
}

@media (max-width: 460px) {
  .nav-links {
    font-size: 0.86rem;
    gap: 10px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.7rem, 18vw, 4.8rem);
  }

  .contact-links a {
    font-size: 1rem;
  }
}
