﻿/*!
 * TavMind — main.css
 * Sales AI / GTM Intelligence Platform
 */

/* =========================================================
   CSS Variables
   ========================================================= */
:root {
  --bg: #0a0d1a;
  --surface: #111525;
  --surface-2: #1a2035;
  --text: #e2e8f0;
  --text-muted: #8892a4;
  --accent: #2563eb;
  --accent-light: #3b82f6;
  --accent-glow: rgba(37,99,235,0.18);
  --border: rgba(255,255,255,0.07);
  --radius: 12px;
  --gap: 2.5rem;
  --nav-height: 4.5rem;
  --funding-bar-h: 0px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
}

/* =========================================================
   Reset & Base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: #fff; }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 0.6em;
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1em; color: var(--text-muted); }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.4em; }
li { margin-bottom: 0.4em; color: var(--text-muted); }

strong { color: var(--text); font-weight: 600; }
em { font-style: italic; }

/* =========================================================
   Funding Bar
   ========================================================= */
#funding-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--accent);
  color: #fff;
  width: 100%;
  padding: 0.55em 3em 0.55em 1.5em;
  font-size: 0.82em;
  letter-spacing: 0.04em;
  box-sizing: border-box;
  text-align: center;
  z-index: 10001;
}

#funding-bar a {
  color: #fff;
  text-decoration: none;
  display: block;
  width: 100%;
}

#funding-bar a:hover { color: rgba(255,255,255,0.85); }

#funding-bar-close {
  position: absolute;
  right: 0.8em;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 0.75em;
  cursor: pointer;
  line-height: 1;
  padding: 0.15em 0.35em;
  opacity: 0.85;
}

#funding-bar-close:hover { opacity: 1; }

/* =========================================================
   Navigation
   ========================================================= */
#nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 0 2.5em;
  position: fixed;
  top: var(--funding-bar-h, 0px);
  left: 0; right: 0;
  width: 100%;
  min-height: var(--nav-height);
  z-index: 9999;
  background-color: rgba(10,13,26,0.96);
  border-bottom: 1px solid var(--border);
  box-sizing: border-box;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: top 0.3s ease;
}

#nav .logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}

#nav .logo img { height: 34px; width: auto; display: block; }

#nav > ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
  gap: 0;
}

#nav > ul > li { position: relative; }

#nav > ul > li > a {
  display: flex;
  align-items: center;
  height: var(--nav-height);
  padding: 0 1.1em;
  color: rgba(255,255,255,0.7);
  font-size: 0.72em;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s;
  text-decoration: none;
}

#nav > ul > li > a:hover,
#nav > ul > li.active > a { color: #fff; }

#nav .nav-cta {
  margin-left: 1em;
  background: var(--accent);
  color: #fff !important;
  border-radius: 6px;
  padding: 0.55em 1.3em !important;
  height: auto !important;
  font-size: 0.72em !important;
  letter-spacing: 0.1em !important;
  transition: background 0.2s;
}

#nav .nav-cta:hover { background: var(--accent-light) !important; color: #fff !important; }

/* Wrapper padding for fixed nav */
#page-wrapper {
  padding-top: calc(var(--nav-height) + var(--funding-bar-h, 0px));
}

/* =========================================================
   Hero Section
   ========================================================= */

#hero {
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  background-image: url('../images/hero-main.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(10,15,40,0.35);
  background-blend-mode: multiply;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 0;
  pointer-events: none;
}
#hero > * {
  position: relative;
  z-index: 2;
}



#hero .hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 0;
}

#hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, var(--bg) 100%);
  z-index: 1;
}

#hero .hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  padding: 6rem 2rem 4rem;
}

#hero .hero-badge {
  display: inline-block;
  background: var(--accent-glow);
  border: 1px solid rgba(37,99,235,0.35);
  color: #60a5fa;
  font-size: 0.75em;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35em 1em;
  border-radius: 20px;
  margin-bottom: 1.5em;
}

#hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, #fff 60%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#hero p {
  font-size: 1.15rem;
  color: rgba(226,232,240,0.75);
  max-width: 600px;
  margin: 0 auto 2.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.75em 2em;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92em;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-light);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,99,235,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--surface);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}

.btn-group {
  display: flex;
  gap: 1em;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================================
   Sections
   ========================================================= */
.section {
  padding: 6em 2em;
  max-width: 1100px;
  margin: 0 auto;
}

.section-full {
  padding: 6em 2em;
}

.section-alt {
  background: var(--surface);
}

.section-label {
  font-size: 0.75em;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-light);
  display: block;
  margin-bottom: 0.75em;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { font-size: 1.05rem; color: var(--text-muted); }

/* =========================================================
   Cards & Grids
   ========================================================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
  align-items: stretch;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover {
  border-color: rgba(37,99,235,0.35);
  transform: translateY(-2px);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-glow);
  border: 1px solid rgba(37,99,235,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
}

.card h3 { margin-bottom: 0.6rem; font-size: 1.1rem; }
.card p { font-size: 0.92rem; color: var(--text-muted); flex-grow: 1; }

/* =========================================================
   Stats
   ========================================================= */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-light);
  margin-bottom: 0.2em;
}

.stat-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* =========================================================
   Team
   ========================================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--gap);
  align-items: start;
}

.team-card {
  text-align: center;
}

.team-card img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 10%;
  display: block;
  margin: 0 auto 1.2rem;
}

.team-card h3 { font-size: 1.05rem; margin-bottom: 0.2em; }
.team-card .role { font-size: 0.82em; color: var(--accent-light); font-weight: 600; display: block; margin-bottom: 0.5em; }
.team-card p { font-size: 0.88rem; }

/* =========================================================
   Pricing
   ========================================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
  align-items: start;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(37,99,235,0.08) 100%);
}

.pricing-badge {
  position: absolute;
  top: -0.75em;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.7em;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25em 0.85em;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card h3 { font-size: 1.2rem; margin-bottom: 0.3em; }
.pricing-card .price { font-size: 2.4rem; font-weight: 800; color: #fff; line-height: 1; margin: 0.75em 0 0.2em; }
.pricing-card .price sup { font-size: 0.5em; vertical-align: super; color: var(--text-muted); }
.pricing-card .price-period { font-size: 0.82em; color: var(--text-muted); margin-bottom: 1.5em; }
.pricing-card .pricing-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.5em; }
.pricing-features { list-style: none; padding: 0; margin-bottom: 2em; flex-grow: 1; }
.pricing-features li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.4em 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.pricing-features li::before { content: "✓"; color: var(--accent-light); font-weight: 700; flex-shrink: 0; }

/* =========================================================
   Blog / Article Cards
   ========================================================= */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--gap);
  align-items: start;
}

.article-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}

.article-card:hover {
  border-color: rgba(37,99,235,0.3);
  transform: translateY(-2px);
}

.article-card.pinned {
  border-left: 3px solid var(--accent, #2563eb);
  background: rgba(37,99,235,0.06);
}

.article-card .tag {
  display: inline-block;
  background: var(--surface-2);
  color: var(--text-muted);
  padding: 0.2em 0.6em;
  border-radius: 4px;
  font-size: 0.72em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.9em;
}

.article-card .tag.funding {
  background: var(--accent, #2563eb);
  color: #fff;
  padding: 0.2em 0.6em;
  border-radius: 3px;
  font-size: 0.75em;
  font-weight: 700;
  text-transform: uppercase;
}

.article-card h2 {
  font-size: 1.05rem;
  line-height: 1.4;
  margin-bottom: 0.7em;
  flex-grow: 1;
}

.article-card h2 a { color: #fff; text-decoration: none; }
.article-card h2 a:hover { color: var(--accent-light); }

.article-card time {
  font-size: 0.8em;
  color: var(--text-muted);
  display: block;
  margin-top: auto;
  padding-top: 0.75em;
}

.article-card .excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.75em;
  line-height: 1.6;
}

/* =========================================================
   Article Single Page
   ========================================================= */
.article-header {
  padding: 5em 2em 3em;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.article-header .tag { margin-bottom: 1em; }
.article-header h1 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
.article-header .article-meta { font-size: 0.88em; color: var(--text-muted); }
.article-header .article-meta span { margin: 0 0.5em; }

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 2em 2em 5em;
}

.article-body h2 { font-size: 1.55rem; margin: 2em 0 0.75em; }
.article-body h3 { font-size: 1.2rem; margin: 1.5em 0 0.6em; }
.article-body p { font-size: 1rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 1.3em; }
.article-body strong { color: var(--text); }
.article-body ul, .article-body ol { margin-bottom: 1.3em; }
.article-body li { font-size: 1rem; line-height: 1.8; color: var(--text-muted); }
.article-body blockquote {
  border-left: 3px solid var(--accent);
  padding: 0.8em 1.5em;
  margin: 2em 0;
  background: var(--surface);
  border-radius: 0 8px 8px 0;
  font-style: italic;
}
.article-body blockquote p { color: var(--text); font-size: 1.05rem; }

.article-back { margin-bottom: 2em; }
.article-back a {
  color: var(--accent-light);
  font-size: 0.88em;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}
.article-back a:hover { color: #fff; }

/* =========================================================
   Contact
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info h3 { margin-bottom: 1.5rem; }
.contact-info p { font-size: 0.95rem; margin-bottom: 0.75em; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75em;
  margin-bottom: 1.2em;
}

.contact-item .ci-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-glow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1em;
}

.contact-item .ci-text { font-size: 0.9rem; color: var(--text-muted); }
.contact-item .ci-text strong { display: block; color: var(--text); margin-bottom: 0.1em; }

.contact-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.5rem; }
.contact-form h3 { margin-bottom: 1.5rem; }

.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.85em; font-weight: 600; color: var(--text); margin-bottom: 0.4em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.7em 1em;
  color: var(--text);
  font-size: 0.92em;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { min-height: 140px; resize: vertical; }

/* =========================================================
   Footer
   ========================================================= */
#footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2rem;
}

#footer .inner {
  padding: 0 4em;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

#footer .footer-brand { flex: 2; min-width: 240px; }
#footer .footer-brand img { height: 32px; margin-bottom: 1rem; }
#footer .footer-brand p { font-size: 0.88rem; color: var(--text-muted); max-width: 320px; }

#footer section { flex: 1; min-width: 160px; }
#footer section h4 { font-size: 0.8em; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); margin-bottom: 1.2rem; }

#footer .footer-nav { list-style: none; padding: 0; margin: 0; }
#footer .footer-nav li { margin-bottom: 0.5em; }
#footer .footer-nav a { color: var(--text-muted); text-decoration: none; font-size: 0.88em; transition: color 0.2s; }
#footer .footer-nav a:hover { color: #fff; }

#footer .copyright {
  max-width: 1100px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}

/* =========================================================
   Cookie Banner
   ========================================================= */
#cookie-banner {
  background: var(--surface-2);
  color: var(--text);
  padding: 1.2em 2em;
  border-top: 1px solid var(--border);
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  flex-wrap: wrap;
}

#cookie-banner p { margin: 0; font-size: 0.88em; color: var(--text-muted); }
#cookie-banner p a { color: var(--accent-light); }

.cookie-buttons { display: flex; gap: 0.6em; flex-shrink: 0; }

#cookie-banner button {
  border: none;
  padding: 0.45em 1.2em;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85em;
  font-weight: 600;
  font-family: inherit;
}

#cookie-accept { background: var(--accent); color: #fff; }
#cookie-accept:hover { background: var(--accent-light); }
#cookie-decline { background: transparent; color: var(--text-muted); border: 1px solid var(--border) !important; }
#cookie-decline:hover { color: #fff; }

/* =========================================================
   Page Hero (inner pages)
   ========================================================= */
.page-hero {
  padding: 5em 2em 3.5em;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p { font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* =========================================================
   Legal Pages
   ========================================================= */
.legal-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 3em 2em 5em;
}

.legal-body h2 { font-size: 1.3rem; margin: 2em 0 0.6em; padding-top: 0.5em; border-top: 1px solid var(--border); }
.legal-body h3 { font-size: 1.05rem; margin: 1.5em 0 0.5em; color: var(--text); }
.legal-body p, .legal-body li { font-size: 0.95rem; line-height: 1.75; color: var(--text-muted); }
.legal-body ul { margin-bottom: 1em; }
.legal-body .last-updated { font-size: 0.82em; color: var(--text-muted); margin-bottom: 2em; display: block; }

/* =========================================================
   Testimonials
   ========================================================= */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75em;
}

.testimonial-author img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover; object-position: 50% 20%;
}

.testimonial-author .author-info strong { display: block; font-size: 0.9rem; color: #fff; }
.testimonial-author .author-info span { font-size: 0.8rem; color: var(--text-muted); }

/* =========================================================
   Utility
   ========================================================= */
.text-center { text-align: center; }
.text-accent { color: var(--accent-light); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 3em 0;
}

.highlight-box {
  background: var(--accent-glow);
  border: 1px solid rgba(37,99,235,0.3);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 2em 0;
}

.highlight-box p { color: var(--text); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  #nav > ul { display: none; }
  #nav .nav-cta { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 4em 1.5em; }
  .section-full { padding: 4em 1.5em; }
  .card-grid { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  #hero .hero-inner { padding: 4rem 1.5rem 3rem; }
  #footer .inner {
  padding: 0 4em; flex-direction: column; gap: 2rem; }
  .testimonial-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; align-items: center; }
}





/* Hero contrast overlay — WCAG AA (R-IMG8) */
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 0;
  pointer-events: none;
}

/* Hero text contrast — force readable white (R-IMG8) */
#hero p,
#hero .hero-stat .label,
#hero .stat-label,
#hero .hero-subtitle,
#hero .text-muted {
  color: rgba(255,255,255,0.82);
}
