/* Axios Technologies — site styles */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --blue: #2AA9F2;
  --blue-deep: #0B3C91;
  --navy: #232B39;
  --navy-soft: #5B6472;
  --silver-light: #D7DCE3;
  --silver-deep: #8B94A3;
  --paper: #FFFFFF;
  --bg: #F5F6F8;
  --wedge: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: var(--navy);
  background: var(--paper);
  line-height: 1.6;
}

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

a { color: inherit; }

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--navy);
}

h1 { font-weight: 700; }
h2 { font-weight: 600; font-size: 30px; }
h3 { font-weight: 600; font-size: 19px; }

p { margin: 0 0 16px; color: var(--navy-soft); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--wedge);
  color: #fff;
}

.btn-primary:hover { filter: brightness(1.06); }

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.45);
}

.btn-outline:hover { background: rgba(255,255,255,.1); }

.btn-navy {
  background: var(--navy);
  color: #fff;
}

.btn-navy:hover { background: #1a2029; }

/* Header */
header.site {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid #E2E5EA;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 46px; width: auto; }

nav.primary { display: flex; align-items: center; gap: 6px; }

nav.primary a {
  text-decoration: none;
  color: var(--navy);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 6px;
}

nav.primary a:hover { background: var(--bg); }

.has-dropdown { position: relative; }

.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 300px;
  background: #fff;
  border: 1px solid #E2E5EA;
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(35,43,57,.12);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
}

.dropdown a span {
  display: block;
  font-size: 12.5px;
  color: var(--navy-soft);
  font-weight: 400;
  margin-top: 2px;
}

.dropdown a:hover { background: var(--bg); }

.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-cta .btn { padding: 10px 20px; font-size: 14px; }
.nav-cta .btn-primary { color: #fff; }

/* Mobile nav toggle (kept simple — no JS build step) */
.nav-toggle { display: none; }

@media (max-width: 880px) {
  nav.primary, .nav-cta .btn-outline-nav { display: none; }
  .nav-toggle { display: block; }
}

/* Hero */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 96px 0 88px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -12%;
  top: -30%;
  width: 620px;
  height: 620px;
  background: var(--wedge);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  opacity: 0;
  transform: rotate(18deg);
}

.hero .inner { position: relative; z-index: 1; }
.hero .inner > * { max-width: 560px; }

.hero.small { padding: 64px 0 60px; }
.hero.small .inner > * { max-width: 600px; }

.hero p.eyebrow-free { color: var(--silver-light); font-size: 17px; margin-bottom: 26px; }

.hero h1 { color: #fff; font-size: 44px; max-width: 560px; }
.hero.small h1 { font-size: 36px; }

.hero .cta-row { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

/* Sections */
section { padding: 76px 0; }
section.tight { padding: 56px 0; }
section + section.on-bg { background: var(--bg); }

.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Service grid */
.grid-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: #fff;
  border: 1px solid #E2E5EA;
  border-radius: 12px;
  padding: 30px 28px;
  text-decoration: none;
  display: block;
  transition: border-color .15s ease, transform .15s ease;
}

.service-card:hover { border-color: var(--blue); transform: translateY(-2px); }

.service-mark {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--wedge);
  margin-bottom: 20px;
  position: relative;
}

.service-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  transform: translate(-50%, -50%);
  background-color: #fff;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.icon-support::after {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2a8 8 0 0 0-8 8v6a3 3 0 0 0 3 3h1v-7H5v-2a7 7 0 0 1 14 0v2h-3v7h1a3 3 0 0 0 3-3v-6a8 8 0 0 0-8-8z'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2a8 8 0 0 0-8 8v6a3 3 0 0 0 3 3h1v-7H5v-2a7 7 0 0 1 14 0v2h-3v7h1a3 3 0 0 0 3-3v-6a8 8 0 0 0-8-8z'/></svg>");
}

.icon-msp::after {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M19.4 13a7.6 7.6 0 0 0 .1-1 7.6 7.6 0 0 0-.1-1l2.1-1.6a.5.5 0 0 0 .1-.7l-2-3.5a.5.5 0 0 0-.6-.2l-2.5 1a7.4 7.4 0 0 0-1.7-1L14.3 2a.5.5 0 0 0-.5-.4h-4a.5.5 0 0 0-.5.4l-.5 2.6a7.4 7.4 0 0 0-1.7 1l-2.5-1a.5.5 0 0 0-.6.2l-2 3.5a.5.5 0 0 0 .1.7L3.6 11a7.6 7.6 0 0 0 0 2l-2.1 1.6a.5.5 0 0 0-.1.7l2 3.5a.5.5 0 0 0 .6.2l2.5-1a7.4 7.4 0 0 0 1.7 1l.5 2.6a.5.5 0 0 0 .5.4h4a.5.5 0 0 0 .5-.4l.5-2.6a7.4 7.4 0 0 0 1.7-1l2.5 1a.5.5 0 0 0 .6-.2l2-3.5a.5.5 0 0 0-.1-.7L19.4 13zM12 15.5A3.5 3.5 0 1 1 12 8.5a3.5 3.5 0 0 1 0 7z'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M19.4 13a7.6 7.6 0 0 0 .1-1 7.6 7.6 0 0 0-.1-1l2.1-1.6a.5.5 0 0 0 .1-.7l-2-3.5a.5.5 0 0 0-.6-.2l-2.5 1a7.4 7.4 0 0 0-1.7-1L14.3 2a.5.5 0 0 0-.5-.4h-4a.5.5 0 0 0-.5.4l-.5 2.6a7.4 7.4 0 0 0-1.7 1l-2.5-1a.5.5 0 0 0-.6.2l-2 3.5a.5.5 0 0 0 .1.7L3.6 11a7.6 7.6 0 0 0 0 2l-2.1 1.6a.5.5 0 0 0-.1.7l2 3.5a.5.5 0 0 0 .6.2l2.5-1a7.4 7.4 0 0 0 1.7 1l.5 2.6a.5.5 0 0 0 .5.4h4a.5.5 0 0 0 .5-.4l.5-2.6a7.4 7.4 0 0 0 1.7-1l2.5 1a.5.5 0 0 0 .6-.2l2-3.5a.5.5 0 0 0-.1-.7L19.4 13zM12 15.5A3.5 3.5 0 1 1 12 8.5a3.5 3.5 0 0 1 0 7z'/></svg>");
}

.icon-security::after {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2 4 5v6c0 5 3.4 8.7 8 10 4.6-1.3 8-5 8-10V5l-8-3zm-1.2 13.5L7.5 12.2l1.4-1.4 1.9 1.9 4.3-4.3 1.4 1.4-5.7 5.7z'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2 4 5v6c0 5 3.4 8.7 8 10 4.6-1.3 8-5 8-10V5l-8-3zm-1.2 13.5L7.5 12.2l1.4-1.4 1.9 1.9 4.3-4.3 1.4 1.4-5.7 5.7z'/></svg>");
}

.icon-hardware::after {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M3 4h18a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1h-7v2h3v2H7v-2h3v-2H3a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1zm1 2v9h16V6H4z'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M3 4h18a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1h-7v2h3v2H7v-2h3v-2H3a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1zm1 2v9h16V6H4z'/></svg>");
}

.icon-hosting::after {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M4 3h16a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1zm3 3.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2zM4 14h16a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-5a1 1 0 0 1 1-1zm3 3.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2z'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M4 3h16a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1zm3 3.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2zM4 14h16a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-5a1 1 0 0 1 1-1zm3 3.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2z'/></svg>");
}

.service-card h3 { margin-bottom: 8px; }
.service-card p { margin-bottom: 14px; }
.service-card .go { color: var(--blue-deep); font-weight: 600; font-size: 14px; }

/* Simple list (not a numbered sequence) */
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 14px;
  color: var(--navy);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--wedge);
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: start;
}

@media (max-width: 800px) {
  .two-col { grid-template-columns: 1fr; }
}

/* Values / about grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.value-card { border-left: 3px solid var(--blue); padding-left: 20px; }

/* CTA band */
.cta-band {
  background: var(--wedge);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 480px; margin: 0 auto 28px; }
.cta-band .btn-navy:hover { background: #1a2029; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--bg);
  border-radius: 14px;
  padding: 36px;
}

.contact-line { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.contact-line .dot {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--wedge); flex: 0 0 auto;
}
.contact-line a, .contact-line span.value { font-weight: 600; color: var(--navy); text-decoration: none; }
.contact-line .label { display: block; font-size: 13px; color: var(--navy-soft); margin-bottom: 2px; }

/* Footer */
footer.site {
  background: var(--navy);
  color: var(--silver-light);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

footer.site img.brand-mark { height: 40px; width: auto; margin-bottom: 14px; }
footer.site p { color: var(--silver-deep); font-size: 14px; max-width: 260px; }
footer.site h4 { color: #fff; font-size: 14px; letter-spacing: .3px; margin-bottom: 16px; }
footer.site ul { list-style: none; padding: 0; margin: 0; }
footer.site li { margin-bottom: 10px; }
footer.site a { color: var(--silver-light); text-decoration: none; font-size: 14px; }
footer.site a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 13px;
  color: var(--navy-soft);
  flex-wrap: wrap;
  gap: 10px;
}

/* Photography */
.hero-photo {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 52%;
  background-size: cover;
  background-position: center;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy) 0%, rgba(35,43,57,.72) 38%, rgba(35,43,57,.28) 100%);
}
@media (max-width: 800px) {
  .hero-photo { width: 100%; opacity: .28; }
}

img.photo {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(35,43,57,.16);
}
.photo-strip { padding: 0 0 76px; }
.photo-strip img.photo { aspect-ratio: 21 / 9; }
