/* ============================================
   TELEMATICS AUSTRALIA — Global Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0A1628;
  --navy-mid: #111D30;
  --navy-light: #1A2840;
  --gold: #96D219;
  --gold-hover: #A8E52E;
  --gold-light: #D4F5A0;
  --gold-bg: #F2FCE4;
  --white: #FFFFFF;
  --off-white: #F7F8FA;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  --green: #16A34A;
  --red: #DC2626;
  --font-display: 'Libre Baskerville', Georgia, serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
  --section-pad: 100px;
  --section-pad-mobile: 60px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes goldLine {
  from { width: 0; }
  to { width: 60px; }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s, box-shadow 0.3s;
}
.site-nav.scrolled {
  background: rgba(10, 22, 40, 0.98);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 34px;
  width: auto;
}
.nav-logo .logo-text {
  display: none; /* hidden — logo image contains the text */
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--gray-300);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 10px 22px !important;
  border-radius: 8px;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover {
  background: var(--gold-hover) !important;
  transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    border-bottom: 2px solid var(--gold);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links a::after { display: none; }
  .nav-cta {
    text-align: center;
    margin-top: 12px;
    display: block !important;
  }
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  background: var(--navy);
  padding: 160px 0 var(--section-pad);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(150,210,25,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(150,210,25,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 720px; }
.hero-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  animation: fadeUp 0.6s ease both;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero .hero-sub {
  font-size: 1.2rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 600px;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero .hero-credibility {
  font-size: 0.92rem;
  color: var(--gray-500);
  margin-bottom: 36px;
  animation: fadeUp 0.6s 0.25s ease both;
}
.hero .hero-credibility strong { color: var(--gray-300); }
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}

@media (max-width: 768px) {
  .hero { padding: 130px 0 var(--section-pad-mobile); }
  .hero h1 { font-size: 2.2rem; }
  .hero .hero-sub { font-size: 1.05rem; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 10px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(150,210,25,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--gray-500);
}
.btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,22,40,0.3);
}
.btn-sm { padding: 10px 22px; font-size: 0.88rem; }

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: var(--section-pad) 0;
}
.section-dark {
  background: var(--navy);
  color: var(--white);
}
.section-alt {
  background: var(--off-white);
}
.section-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #7AB815 100%);
}

.section-header {
  margin-bottom: 56px;
}
.section-header .label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}
.section-dark .section-header .label { color: var(--gold-light); }
.section-header h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 16px;
}
.section-dark .section-header h2 { color: var(--white); }
.section-header p {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 640px;
}
.section-dark .section-header p { color: var(--gray-400); }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

@media (max-width: 768px) {
  .section { padding: var(--section-pad-mobile) 0; }
  .section-header h2 { font-size: 1.8rem; }
  .section-header { margin-bottom: 40px; }
}

/* ============================================
   CREDENTIAL BAR
   ============================================ */
.cred-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 28px 0;
}
.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.cred-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.cred-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(150,210,25,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.cred-item span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .cred-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* ============================================
   CARDS
   ============================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .card-grid { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 32px 28px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: var(--gold);
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gold-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.card h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.card p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* Dark section cards */
.section-dark .card {
  background: var(--navy-light);
  border-color: rgba(255,255,255,0.08);
}
.section-dark .card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.section-dark .card h3 { color: var(--white); }
.section-dark .card p { color: var(--gray-400); }

/* ============================================
   PAIN POINTS SECTION
   ============================================ */
.pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.6;
}
.pain-list .pain-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #FEE2E2;
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 2px;
}
.pain-closer {
  margin-top: 28px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  font-family: var(--font-display);
  font-style: italic;
}

/* ============================================
   INDUSTRY TABS / CARDS
   ============================================ */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .industry-grid { grid-template-columns: 1fr; }
}

.industry-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 28px 24px;
  transition: all 0.3s;
  cursor: pointer;
}
.industry-card:hover {
  border-color: var(--gold);
  background: rgba(150,210,25,0.08);
  transform: translateY(-3px);
}
.industry-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.industry-card p {
  font-size: 0.85rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ============================================
   DIFFERENTIATOR / ABOUT SECTION
   ============================================ */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) {
  .diff-grid { grid-template-columns: 1fr; gap: 32px; }
}

.diff-photo {
  aspect-ratio: 4/5;
  border-radius: 16px;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 0.9rem;
  border: 2px solid var(--gray-200);
  overflow: hidden;
  position: relative;
}
.diff-photo .placeholder-text {
  text-align: center;
  padding: 20px;
  color: var(--gray-400);
  font-style: italic;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 28px 0;
}
.stat-item {
  flex: 1;
  min-width: 140px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-top: 4px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 32px 28px;
  position: relative;
}
.testimonial::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  position: absolute;
  top: 20px;
  left: 24px;
  opacity: 0.3;
}
.testimonial blockquote {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  font-style: italic;
}
.testimonial cite {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
}

/* ============================================
   CTA SECTIONS
   ============================================ */
.cta-section {
  padding: 80px 0;
  text-align: center;
}
.cta-section.gold-bg {
  background: linear-gradient(135deg, var(--gold) 0%, #7AB815 100%);
  position: relative;
  overflow: hidden;
}
.cta-section.gold-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 12px;
  position: relative;
}
.cta-section p {
  font-size: 1.1rem;
  color: rgba(10,22,40,0.7);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta-section .btn { position: relative; }

/* ============================================
   FORMS
   ============================================ */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(150,210,25,0.15);
}
.form-textarea {
  min-height: 120px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy);
  padding: 60px 0 32px;
  border-top: 1px solid rgba(150,210,25,0.2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-top: 12px;
}
.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 0.88rem;
  color: var(--gray-400);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--gray-500);
}
.footer-badges {
  display: flex;
  gap: 16px;
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* ============================================
   SERVICE PAGE SPECIFICS
   ============================================ */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding: 60px 0;
  border-bottom: 1px solid var(--gray-200);
}
.service-block:last-child { border-bottom: none; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
@media (max-width: 768px) {
  .service-block { grid-template-columns: 1fr; gap: 32px; }
  .service-block.reverse { direction: ltr; }
}

.service-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 8px;
}
.service-content h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.service-content p {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 14px;
}
.service-features {
  list-style: none;
  margin: 20px 0;
}
.service-features li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.92rem;
  color: var(--gray-700);
}
.service-features .check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-bg);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2px;
}
.service-features strong {
  color: var(--gray-900);
}
.service-pricing-note {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 20px;
  font-size: 0.88rem;
  color: var(--gray-600);
}
.service-pricing-note strong { color: var(--navy); }

.service-visual {
  background: var(--off-white);
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-style: italic;
  font-size: 0.9rem;
}

/* ============================================
   COMPARISON BOX
   ============================================ */
.compare-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
@media (max-width: 600px) {
  .compare-box { grid-template-columns: 1fr; }
}
.compare-side {
  padding: 32px 28px;
}
.compare-side.self {
  background: #FEF2F2;
}
.compare-side.managed {
  background: #F0FDF4;
}
.compare-side h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.compare-side.self h4 { color: var(--red); }
.compare-side.managed h4 { color: var(--green); }
.compare-side p {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.65;
}

/* ============================================
   AUDIT PAGE SPECIFICS
   ============================================ */
.audit-hero {
  background: var(--navy);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.audit-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(150,210,25,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.audit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 768px) {
  .audit-layout { grid-template-columns: 1fr; }
}

.audit-form-box {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.audit-form-box h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 24px;
}

/* ============================================
   UTILITY
   ============================================ */
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
