/* ============================================================
   MTB – MapleTrust Books
   MNP-inspired influential design
   Clean • Spacious • Mobile-first • Authoritative
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Source+Serif+4:opsz,wght@8..60,500;8..60,600;8..60,700&display=swap');

:root {
  --navy: #0A1F44;
  --navy-dark: #061428;
  --navy-mid: #123056;
  --teal: #0d7377;
  --teal-light: #14919b;
  --white: #ffffff;
  --off-white: #f6f7f9;
  --gray-100: #eef0f4;
  --gray-200: #dce0e6;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --shadow-sm: 0 1px 3px rgba(10,31,68,0.06);
  --shadow-md: 0 8px 24px rgba(10,31,68,0.08);
  --shadow-lg: 0 20px 40px rgba(10,31,68,0.12);
  --radius: 10px;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal); }

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

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .container { padding: 0 32px; }
}

/* ========== TOP BAR ========== */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: #fff; }

/* ========== HEADER ========== */
.site-header {
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--gray-100);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

.logo-img {
  height: 64px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
@media (min-width: 768px) {
  .logo-img { height: 78px; max-width: 240px; }
}
.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.main-nav { display: none; }
@media (min-width: 900px) {
  .main-nav { display: block; }
  .main-nav ul { display: flex; list-style: none; gap: 4px; }
  .main-nav a {
    display: block;
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: 6px;
  }
  .main-nav a:hover,
  .main-nav a.active { color: var(--navy); background: var(--gray-100); }
}

.header-cta { display: none; }
@media (min-width: 900px) { .header-cta { display: inline-flex; } }

/* Mobile menu button */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  padding: 0;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--navy);
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  padding: 16px 20px 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 14px 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-900);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .btn { margin-top: 16px; width: 100%; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  line-height: 1.3;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--navy-mid);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
  color: var(--navy);
}
.btn-teal {
  background: var(--teal);
  color: var(--white);
}
.btn-teal:hover {
  background: var(--teal-light);
  color: var(--white);
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero { padding: 96px 0 100px; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--white);
  margin-bottom: 18px;
  font-weight: 600;
}

.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-ctas .btn { min-width: 160px; }

/* ========== SECTIONS ========== */
.section { padding: 64px 0; }
@media (min-width: 768px) { .section { padding: 88px 0; } }

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

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
@media (min-width: 768px) {
  .section-header { margin-bottom: 56px; }
}

.section-header .eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  margin-bottom: 14px;
}

.section-header p {
  color: var(--gray-500);
  font-size: 1.05rem;
}

/* ========== SERVICE CARDS ========== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  height: 100%;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card .icon {
  width: 48px;
  height: 48px;
  background: var(--gray-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.service-card p {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.service-card ul {
  list-style: none;
  font-size: 0.9rem;
  color: var(--gray-700);
}
.service-card ul li {
  padding: 4px 0 4px 16px;
  position: relative;
}
.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
}

/* ========== TWO COLUMN ========== */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 800px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: 56px; }
}

.two-col h2 {
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  margin-bottom: 16px;
}

.two-col p { margin-bottom: 14px; color: var(--gray-500); }

.feature-list {
  list-style: none;
  margin-top: 20px;
}
.feature-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.98rem;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

.panel {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

/* ========== WHY / STATS ========== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .why-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}

.why-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.why-item .num {
  font-family: 'Source Serif 4', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.why-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.why-item p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* ========== CTA ========== */
.cta-banner {
  background: var(--navy);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}
@media (min-width: 768px) { .cta-banner { padding: 80px 0; } }

.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}
.cta-banner p {
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin: 0 auto 28px;
  font-size: 1.05rem;
}

/* ========== PAGE HERO ========== */
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 56px 0 52px;
}
@media (min-width: 768px) { .page-hero { padding: 72px 0 64px; } }

.page-hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 12px;
}
.page-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 560px;
}

/* ========== SERVICE DETAIL ========== */
.service-detail {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition);
}
.service-detail:hover { box-shadow: var(--shadow-md); }

.service-detail h2 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.service-detail > p {
  color: var(--gray-500);
  margin-bottom: 16px;
  font-size: 0.98rem;
}
.service-detail ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}
@media (min-width: 600px) {
  .service-detail ul { grid-template-columns: 1fr 1fr; }
}
.service-detail ul li {
  padding: 5px 0 5px 20px;
  position: relative;
  font-size: 0.95rem;
}
.service-detail ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 700px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--navy);
}
.contact-card h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.contact-card .role {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 24px;
}
.contact-card .detail { margin-bottom: 14px; font-size: 0.98rem; }
.contact-card .detail strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  margin-bottom: 3px;
  font-weight: 600;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--gray-900);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  margin-bottom: 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
  -webkit-appearance: none;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10,31,68,0.1);
}
.contact-form textarea { min-height: 120px; resize: vertical; }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 28px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (min-width: 600px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
}

.footer-brand .logo-img {
  height: 64px;
  width: auto;
  max-width: 180px;
  margin-bottom: 16px;
  object-fit: contain;
  filter: none;
  opacity: 1;
}
.footer-brand .logo-img.logo-footer {
  height: 70px;
  max-width: 200px;
}
.footer-brand p { max-width: 280px; line-height: 1.6; }

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.68); }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
}
@media (min-width: 600px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ========== THANK YOU ========== */
.thank-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--navy-dark), var(--navy));
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}
.thank-card {
  max-width: 520px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 48px 32px;
  backdrop-filter: blur(16px);
}
.thank-card .check {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
}
.thank-card h1 {
  color: #fff;
  font-size: 1.9rem;
  margin-bottom: 14px;
}
.thank-card p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
  font-size: 1.05rem;
}
.thank-card .note {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin: 16px 0 28px;
}
.thank-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Utility */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ========== PREMIUM VISUAL SECTIONS (Apple / MNP inspired) ========== */

.hero-visual {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #061428;
  color: #ffffff;
}

.hero-visual .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  transform: scale(1.05);
}

.hero-visual .hero-overlay {
  position: absolute;
  inset: 0;
  /* Stronger dark overlay so white text is always readable */
  background: linear-gradient(105deg,
    rgba(4, 12, 28, 0.94) 0%,
    rgba(6, 20, 40, 0.90) 40%,
    rgba(10, 31, 68, 0.82) 100%);
}

.hero-visual .container {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (min-width: 768px) {
  .hero-visual .container {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

/* Force visible white text on hero (was matching dark background) */
.hero-visual .hero-inner,
.hero-visual .hero-inner * {
  color: #ffffff;
}
.hero-visual h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: #ffffff !important;
  margin-bottom: 18px;
  font-weight: 600;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.hero-visual .hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92) !important;
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 540px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}
.hero-visual .hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85) !important;
  margin-bottom: 16px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.hero-visual .btn-outline {
  border-color: rgba(255, 255, 255, 0.7) !important;
  color: #ffffff !important;
}
.hero-visual .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff !important;
}
.hero-visual .btn-white {
  color: var(--navy) !important;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 420px;
}
@media (min-width: 900px) {
  .split-section {
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
  }
}

.split-section .split-image {
  background-size: cover;
  background-position: center;
  min-height: 280px;
}
@media (min-width: 900px) {
  .split-section .split-image { min-height: auto; }
}

.split-section .split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 28px;
  background: var(--white);
}
@media (min-width: 900px) {
  .split-section .split-content { padding: 64px 56px; }
}

.split-section.reverse .split-image { order: 2; }
.split-section.reverse .split-content { order: 1; }
@media (max-width: 899px) {
  .split-section.reverse .split-image { order: 0; }
  .split-section.reverse .split-content { order: 0; }
}

.split-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 16px;
}
.split-content p {
  color: var(--gray-500);
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.image-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 700px) {
  .image-card-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

.image-card {
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.image-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.image-card .img-wrap {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  position: relative;
}
.image-card .img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,31,68,0.35) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.image-card:hover .img-wrap::after { opacity: 1; }
.image-card .card-body {
  padding: 22px 20px 26px;
}
.image-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.image-card p {
  font-size: 0.92rem;
  color: var(--gray-500);
  margin: 0;
}

.trust-bar {
  background: var(--off-white);
  padding: 36px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px 48px;
  text-align: center;
}
.trust-item {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.trust-item strong {
  display: block;
  font-family: 'Source Serif 4', serif;
  font-size: 1.5rem;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: none;
  margin-bottom: 4px;
}

.quote-band {
  background: var(--navy-dark);
  color: #fff;
  padding: 72px 0;
  text-align: center;
}
.quote-band blockquote {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  font-weight: 500;
  line-height: 1.5;
  max-width: 780px;
  margin: 0 auto 24px;
  color: rgba(255,255,255,0.95);
  font-style: italic;
}
.quote-band cite {
  font-style: normal;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  font-family: 'Inter', sans-serif;
}
.quote-band cite strong {
  color: #fff;
  display: block;
  margin-bottom: 2px;
  font-weight: 600;
}

.full-bleed-cta {
  position: relative;
  padding: 100px 0;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.full-bleed-cta .cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}
.full-bleed-cta .cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(4,12,28,0.94), rgba(10,31,68,0.90));
}
.full-bleed-cta h2,
.full-bleed-cta p {
  color: #ffffff !important;
  text-shadow: 0 1px 16px rgba(0,0,0,0.35);
}
.full-bleed-cta .container {
  position: relative;
  z-index: 2;
}
.full-bleed-cta h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 14px;
}
.full-bleed-cta p {
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin: 0 auto 28px;
  font-size: 1.1rem;
}

/* Content protection helpers */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
input, textarea, select, button, [contenteditable] {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}
img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: auto;
}
