/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'DM Sans', sans-serif;
  color: #1a1f2e;
  background: #f8f9fc;
  -webkit-font-smoothing: antialiased;
}

/* ── Nav ── */
.nav {
  background: #fff;
  border-bottom: 0.5px solid #dde1ed;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo img { height: 38px; width: auto; display: block; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: #4a5270;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.15s;
}

.nav-links a:hover { color: #1e5cdb; }
.nav-links a.active { color: #1e5cdb; font-weight: 500; }
.nav-links a.nav-waystone { color: #b07a00; font-weight: 500; }
.nav-links a.nav-waystone:hover { color: #8a5e00; }

.nav-btn {
  background: #1e5cdb;
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
}

.nav-btn:hover { background: #1749b8; }

/* ── Hero (home) ── */
.hero {
  background: linear-gradient(160deg, #0d1d4a 0%, #0f2355 60%, #1a3a7a 100%);
  padding: 6rem 2rem 5rem;
  text-align: center;
}

.hero-logo {
  height: 180px;
  width: auto;
  display: block;
  margin: 0 auto 2rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: #7ba3f0;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  line-height: 1.13;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 em { font-style: italic; color: #7ba3f0; }

.hero-sub {
  font-size: 16px;
  line-height: 1.75;
  color: #b8c8e8;
  font-weight: 300;
  max-width: 460px;
  margin: 0 auto 2.5rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 3.5rem;
}

.hero-btn {
  background: #fff;
  color: #0f2355;
  border: none;
  padding: 13px 28px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.15s;
  text-decoration: none;
  display: inline-block;
}

.hero-btn:hover { opacity: 0.9; }

.hero-btn-ghost {
  background: transparent;
  color: #b8c8e8;
  border: 1px solid rgba(255,255,255,0.22);
  padding: 13px 28px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  text-decoration: none;
  display: inline-block;
}

.hero-btn-ghost:hover { border-color: rgba(255,255,255,0.45); color: #fff; }

.hero-pills {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-pill {
  background: rgba(255,255,255,0.07);
  border: 0.5px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  color: #c5d5f0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
}

.hero-pill i { font-size: 15px; color: #7ba3f0; }

/* ── Inner page hero (Services, About, Waystone) ── */
.page-hero {
  background: linear-gradient(160deg, #0d1d4a 0%, #0f2355 60%, #1a3a7a 100%);
  padding: 4rem 2rem 3.5rem;
  text-align: center;
}

.page-hero .hero-eyebrow { margin-bottom: 1rem; }

.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 38px;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.4px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero h1 em { font-style: italic; color: #7ba3f0; }

.page-hero p {
  font-size: 16px;
  line-height: 1.75;
  color: #b8c8e8;
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto;
}

/* ── Sections ── */
.section {
  padding: 5rem 2rem;
  background: #f8f9fc;
}

.section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #1e5cdb;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 34px;
  color: #0f2355;
  margin-bottom: 0.75rem;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.section-sub {
  font-size: 16px;
  color: #5a6380;
  line-height: 1.75;
  font-weight: 300;
  max-width: 560px;
  margin-bottom: 3rem;
}

.see-all-link {
  display: inline-block;
  margin-top: 2rem;
  font-size: 14px;
  font-weight: 500;
  color: #1e5cdb;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.see-all-link:hover { text-decoration: underline; }

/* ── Services grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: #fff;
  border: 0.5px solid #dde1ed;
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  transition: box-shadow 0.2s;
}

.service-card:hover { box-shadow: 0 4px 20px rgba(15, 35, 85, 0.08); }

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 9px;
  background: #eef3fb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.service-icon i { font-size: 22px; color: #1e5cdb; }

.service-card h3 {
  font-size: 15px;
  font-weight: 500;
  color: #0f2355;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 13.5px;
  color: #6b7492;
  line-height: 1.65;
}

/* ── Divider ── */
.divider {
  height: 0.5px;
  background: #dde1ed;
  margin: 0 3rem;
}

/* ── Why ZEVE ── */
.why-section {
  padding: 5rem 2rem;
  background: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 3rem;
}

.why-card {
  border: 0.5px solid #dde1ed;
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fafbfe;
  transition: box-shadow 0.2s;
}

.why-card:hover { box-shadow: 0 4px 20px rgba(15, 35, 85, 0.06); }

.why-num {
  font-family: 'DM Serif Display', serif;
  font-size: 30px;
  color: #c8d6f0;
  line-height: 1;
  min-width: 36px;
}

.why-card h4 {
  font-size: 15px;
  font-weight: 500;
  color: #0f2355;
  margin-bottom: 6px;
}

.why-card p {
  font-size: 13.5px;
  color: #6b7492;
  line-height: 1.65;
}

/* ── About — Mission section ── */
.mission-section {
  padding: 5rem 2rem;
  background: #f8f9fc;
}

.mission-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
  margin-top: 3rem;
}

.mission-text p {
  font-size: 15.5px;
  color: #4a5270;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.mission-callout {
  background: #fff;
  border: 0.5px solid #dde1ed;
  border-left: 3px solid #1e5cdb;
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mission-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mission-stat-value {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: #0f2355;
  line-height: 1;
}

.mission-stat-label {
  font-size: 13px;
  color: #6b7492;
  font-weight: 400;
}

/* ── CTA ── */
.cta-section {
  background: linear-gradient(135deg, #0f2355 0%, #1a3a7a 100%);
  padding: 5rem 2rem;
  text-align: center;
}

.cta-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 34px;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.3px;
}

.cta-section p {
  font-size: 16px;
  color: #b8c8e8;
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.cta-btn {
  background: #fff;
  color: #0f2355;
  border: none;
  padding: 13px 30px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.15s;
  text-decoration: none;
  display: inline-block;
}

.cta-btn:hover { opacity: 0.9; }

/* ── Waystone product section ── */
.waystone-section {
  padding: 5rem 2rem;
  background: #fff;
  border-top: 0.5px solid #dde1ed;
}

.waystone-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.waystone-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #b07a00;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.waystone-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 34px;
  color: #0f2355;
  margin-bottom: 0.75rem;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.waystone-sub {
  font-size: 16px;
  color: #5a6380;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 1.75rem;
}

.waystone-features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.waystone-features li {
  font-size: 14px;
  color: #4a5270;
  display: flex;
  align-items: center;
  gap: 10px;
}

.waystone-features li i {
  font-size: 16px;
  color: #b07a00;
  flex-shrink: 0;
}

.waystone-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.waystone-btn {
  background: #e09b10;
  color: #fff;
  border: none;
  padding: 11px 24px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s;
}

.waystone-btn:hover { background: #b07a00; }

.waystone-btn-ghost {
  background: transparent;
  color: #b07a00;
  border: 1px solid #e09b10;
  padding: 11px 24px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s, color 0.15s;
}

.waystone-btn-ghost:hover { background: #fdf3dc; }

.waystone-logo-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.waystone-logo-col img {
  max-width: 340px;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 700px;
}

.contact-card {
  background: #fff;
  border: 0.5px solid #dde1ed;
  border-radius: 12px;
  padding: 2rem 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}

.contact-card:hover { box-shadow: 0 4px 20px rgba(15, 35, 85, 0.08); }

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 9px;
  background: #eef3fb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i { font-size: 22px; color: #1e5cdb; }

.contact-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #1e5cdb;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.contact-value {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #0f2355;
  text-decoration: none;
  margin-bottom: 0.4rem;
  transition: color 0.15s;
}

.contact-value:hover { color: #1e5cdb; }

.contact-note {
  font-size: 13px;
  color: #8a93b0;
  font-weight: 300;
  line-height: 1.5;
}

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

/* ── Footer ── */
.footer {
  background: #f0f2f9;
  border-top: 0.5px solid #dde1ed;
  padding: 1.75rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo img { height: 30px; width: auto; display: block; }

.footer-copy { font-size: 12px; color: #8a93b0; }

.footer-links { display: flex; gap: 1.5rem; list-style: none; }

.footer-links a {
  font-size: 12px;
  color: #8a93b0;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover { color: #1e5cdb; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .hero { padding: 4rem 1.25rem 3.5rem; }
  .hero h1 { font-size: 34px; }
  .page-hero { padding: 3rem 1.25rem 2.5rem; }
  .page-hero h1 { font-size: 30px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .mission-inner { grid-template-columns: 1fr; }
  .waystone-inner { grid-template-columns: 1fr; }
  .waystone-logo-col { order: -1; }
  .waystone-logo-col img { max-width: 260px; }
  .footer { flex-direction: column; gap: 1rem; text-align: center; padding: 1.5rem; }
  .divider { margin: 0 1.25rem; }
}
