:root {
  --bg: #ffffff;
  --bg-soft: #f4f5f6;
  --bg-dark: #111317;
  --text: #17191d;
  --text-soft: #5f6670;
  --line: #dfe2e6;
  --accent: #d4142a;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}
a { color: inherit; }
.container {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  text-decoration: none;
  font-size: 24px;
  letter-spacing: .02em;
  font-weight: 700;
}
.brand-divider { font-weight: 300; color: #8b9096; }
.brand-media { font-weight: 400; }
.main-nav { display: flex; gap: 28px; font-size: 14px; }
.main-nav a { text-decoration: none; color: #373b41; }
.main-nav a:hover { color: var(--accent); }

.hero {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #222;
}
.hero-image {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/axis-reception.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,10,13,.88) 0%, rgba(8,10,13,.68) 48%, rgba(8,10,13,.20) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 90px 0;
}
.eyebrow,
.section-label {
  margin: 0 0 16px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .16em;
  font-weight: 700;
}
.eyebrow { color: #e7e8ea; }
.section-label { color: var(--accent); }
.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.03;
  letter-spacing: -.035em;
}
.hero-copy {
  max-width: 720px;
  margin: 28px 0 0;
  font-size: 20px;
  color: #e4e6e8;
}
.hero-actions { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  padding: 13px 20px;
  border: 1px solid rgba(255,255,255,.7);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}
.button.primary { background: white; color: #111; border-color: white; }
.button.secondary { color: white; }

.section { padding: 95px 0; }
.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: start;
}
h2 {
  margin: 0;
  font-size: clamp(34px, 4.5vw, 55px);
  line-height: 1.08;
  letter-spacing: -.025em;
}
h3 { margin-top: 0; }
.prose { font-size: 18px; color: #40454d; }
.prose p:first-child { margin-top: 0; }
.prose p:last-child { margin-bottom: 0; }
.section-intro {
  max-width: 850px;
  font-size: 19px;
  color: var(--text-soft);
  margin: 24px 0 42px;
}
.platform-section { background: var(--bg-soft); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: white;
  border: 1px solid var(--line);
  padding: 28px;
  min-height: 210px;
}
.card p { color: var(--text-soft); margin-bottom: 0; }

.dr-section { background: var(--bg-dark); color: white; }
.dr-section .prose { color: #d4d7db; }
.dr-section .section-label { color: #ff6475; }

.service-list { margin-top: 44px; border-top: 1px solid var(--line); }
.service-list > div {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.service-list span { color: var(--text-soft); }

.global-section { background: #f8f8f8; }
.country-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}
.country-grid article {
  background: white;
  border: 1px solid var(--line);
  padding: 28px;
}
.country-grid p { color: var(--text-soft); margin-bottom: 8px; }
.country-grid a { text-decoration: none; font-weight: 700; }

.site-footer {
  background: #0e1013;
  color: white;
  padding: 38px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-inner p { margin: 0; color: #b7bcc2; font-size: 14px; }

@media (max-width: 900px) {
  .main-nav { display: none; }
  .hero { min-height: 610px; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .card-grid, .country-grid { grid-template-columns: 1fr 1fr; }
  .service-list > div { grid-template-columns: 1fr; gap: 6px; }
}
@media (max-width: 620px) {
  .container { width: min(calc(100% - 30px), var(--max)); }
  .header-inner { min-height: 68px; }
  .hero h1 { font-size: 44px; }
  .hero-copy { font-size: 17px; }
  .section { padding: 70px 0; }
  .card-grid, .country-grid { grid-template-columns: 1fr; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}
