/* ============================================
   Voyager Systems — base tokens
   ============================================ */
:root {
  --navy-950: #050e22;
  --navy-900: #0a1a38;
  --navy-800: #122a52;
  --blue-500: #2f6ff0;
  --blue-400: #5b8cf5;
  --ink: #0c1830;
  --slate-600: #4d5872;
  --slate-400: #8791a8;
  --line: #e2e6f0;
  --paper: #ffffff;
  --fog: #f4f6fb;

  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: "Albert Sans", Arial, Helvetica, sans-serif;

  --radius: 10px;
  --wrap: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--navy-900);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 350;
  font-size: 2.3rem;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0 0 1em;
  color: var(--slate-600);
  color: #555;
  line-height: 125%;
}

a {
  color: var(--blue-500);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 10px 24px;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.accent {
  color: var(--blue-500);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--blue-500);
  color: #fff;
  padding: 10px 16px;
  z-index: 100;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

/* Focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--blue-400);
  outline-offset: 2px;
}

/* @media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
} */

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--blue-500);
  color: #fff;
}

.btn-primary:hover {
  background: var(--navy-800);
}


/* ============================================
   Hero
============================================ */
.hero {
  min-height: 900px;
  background-image: url('../images/Voyager-2025-banner2-home.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-inner {
  min-height: 900px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-copy {
  display: block;
  align-self: center;
  padding: 0 2rem;
  max-width: 670px;
}

.hero-copy h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.4rem;
}

.hero-copy .btn {
  margin-top: 6px;
}

@media (max-width: 720px) {
  .hero-inner {
    justify-content: flex-start;
  }

  .hero-copy {
    text-align: left;
  }
}

.security-hero {
    min-height: 380px;
    background-image: url('../images/banner2-security.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

/* Dark overlay for better text visibility */
.security-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 14, 34, 0.35);
}

.security-hero .hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.security-hero .hero-copy {
  max-width: 650px;
  margin-left: auto;
}

.security-hero h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
}

/* Tablet */
@media (max-width: 768px) {
  .security-hero {
    min-height: 550px;
  }

  .security-hero .hero-copy {
    margin-left: 0;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .security-hero {
    min-height: 450px;
    background-position: center center;
  }

  .security-hero h1 {
    font-size: 2.2rem;
  }
}

/* ============================================
   Sections
============================================ */
.section {
  padding: 30px 0;
}

.lead {
  font-size: 1.08rem;
  width: 100%;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.eyebrow-plain {
  font-weight: 600;
  color: var(--navy-900);
  margin-top: 1.4em;
}

.section-note {
  color: var(--slate-400);
  font-size: 0.9rem;
  margin-top: 24px;
}


/* Expert Solutions */
/* .expert-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
} */

.expert-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.thumb {
  aspect-ratio: 4/3;
  border-radius: 8px;
  background: linear-gradient(150deg, var(--navy-800), var(--blue-500));
}

.thumb-a {
  background: linear-gradient(150deg, #16233f, #2f6ff0);
}

.thumb-b {
  background: linear-gradient(150deg, #0a1a38, #5b8cf5);
}

.thumb-c {
  background: linear-gradient(150deg, #122a52, #7ea3f8);
}

.expert-photo {
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  background: linear-gradient(200deg, #123059, #0a1a38 70%);
}


/* ============================================
   Responsive
   ============================================ */
@media (max-width: 860px) {
  .expert-grid {
    grid-template-columns: 1fr;
  }

  .expert-photo {
    order: -1;
    aspect-ratio: 16/9;
  }

  .reasons-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}


.page-hero h2 {
  margin: auto;
  color: #fff;
  font-family: var(--font-display);

  opacity: 0;
  transform: scale(0.6);
  animation: titlePop 1s ease forwards;
}

.page-hero .lead {
  display: block;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;

  opacity: 0;
  transform: translateY(40px);
  animation: leadUp 0.9s ease 0.4s forwards;
}

@keyframes titlePop {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }

  70% {
    opacity: 1;
    transform: scale(1.08);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes leadUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}