/* ============================================================
   Visual Voice Media — demo-first landing page
   Replaces Bootstrap/style.css for index. Brand tokens below.
   ============================================================ */

:root {
  --vvm-teal: #236476;
  --vvm-teal-dark: #17454f;
  --vvm-teal-deep: #0e2f37;
  --vvm-green: #7dad3f;
  --vvm-green-dark: #648c30;
  --vvm-ink: #1a2b32;
  --vvm-muted: #52646c;
  --vvm-bg: #ffffff;
  --vvm-bg-soft: #f1f5f6;
  --vvm-border: rgba(10, 40, 50, .12);
  --vvm-radius: 14px;
  --vvm-shadow: 0 10px 30px rgba(14, 47, 55, .10);
  --font-main: 'Montserrat', sans-serif;
  --font-body: 'DM Sans', 'Montserrat', sans-serif;
  --nav-h: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--vvm-ink);
  background: var(--vvm-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--font-main); line-height: 1.2; margin: 0 0 .5em; }
h2 { font-size: clamp(26px, 3.2vw, 38px); font-weight: 800; color: var(--vvm-teal-deep); }
h3 { font-size: 20px; font-weight: 700; }
a { color: var(--vvm-teal); }
img, video { max-width: 100%; }

/* ---------- buttons ---------- */
.btn {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 12px 26px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .15s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-solid { background: var(--vvm-teal); color: #fff; }
.btn-solid:hover { background: var(--vvm-teal-dark); }
.btn-green { background: var(--vvm-green); color: #fff; }
.btn-green:hover { background: var(--vvm-green-dark); }
.btn-outline { background: rgba(255, 255, 255, .08); color: #fff; border-color: #fff; }
.btn-outline:hover { background: rgba(255, 255, 255, .22); }

/* ---------- nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 5000;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--vvm-border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 22px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--vvm-ink);
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 19px;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 22px;
  margin-left: auto;
}
.nav-links a {
  text-decoration: none;
  color: var(--vvm-ink);
  font-weight: 600;
  font-size: 15px;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--vvm-teal); border-bottom-color: var(--vvm-green); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-actions .btn { padding: 10px 20px; font-size: 14px; }
.nav-burger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--vvm-teal-deep);
  cursor: pointer;
  padding: 8px;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
#bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(14, 47, 55, .92) 0%, rgba(14, 47, 55, .78) 45%, rgba(35, 100, 118, .55) 100%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 90px 22px 110px;
  margin: 0 auto;
  text-align: center;
}
.hero-kicker {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #bfe3d2;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(34px, 5.2vw, 58px);
  font-weight: 800;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(255, 255, 255, .92);
  max-width: 620px;
  margin: 0 auto 30px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-minor { margin-top: 26px; font-size: 14px; color: rgba(255, 255, 255, .75); }
.hero-minor a { color: #bfe3d2; }

/* decorative replica of the Acceasy overlay window (matches .sl-overlay's
   controls-active look: glass tint, drag header, playbar, resize hatching) */
.hero-widget-mock {
  position: absolute;
  z-index: 1;
  left: 6%;
  top: 50%;
  margin-top: -165px; /* half the height — vertically centered in the hero */
  width: 250px;
  height: 330px;
  border-radius: 8px;
  background: rgba(0, 0, 0, .14);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .5);
  backdrop-filter: blur(2px);
  pointer-events: none;
  transform: rotate(-4deg);
  animation: hwm-float 7s ease-in-out infinite;
}
@keyframes hwm-float {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50% { transform: rotate(-4deg) translateY(-10px); }
}
.hwm-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 26px;
  background: rgba(0, 0, 0, .6);
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .85);
  font-size: 11px;
  letter-spacing: 2px;
}
/* keyed signer: transparent background, anchored to the playbar —
   matches how the real widget renders its alpha-keyed video */
.hwm-signer {
  position: absolute;
  top: 26px; left: 0;
  width: 100%;
  height: calc(100% - 56px);
  object-fit: contain;
  object-position: center bottom;
  display: block;
}
/* background toggle lives in the top bar, right corner — matches .sl-bg-btn
   (top 4 / right 4 in the real 32px header, scaled to the mock's 26px bar) */
.hwm-bg {
  position: absolute;
  top: 3px; right: 3px;
  width: 20px; height: 20px;
  border-radius: 5px;
  background: rgba(0, 0, 0, .78);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hwm-footer {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30px;
  background: rgba(0, 0, 0, .6);
  border-radius: 0 0 8px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
}
.hwm-time {
  color: rgba(255, 255, 255, .85);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}
.hwm-track {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, .3);
  border-radius: 2px;
  position: relative;
}
.hwm-thumb {
  position: absolute;
  left: 32%; top: 50%;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}
/* resize handle flush in the bottom-LEFT corner, close in the bottom-right —
   matching .sl-resize-handle (bottom 0 / left 0) and .sl-close-btn */
.hwm-resize {
  position: absolute;
  left: 5px; bottom: 6px;
  width: 13px; height: 13px;
  background: repeating-linear-gradient(45deg, transparent 0 3px, rgba(255, 255, 255, .75) 3px 4.5px);
  opacity: .8;
}
.hwm-close {
  position: absolute;
  right: 7px; bottom: 8px;
  color: rgba(255, 255, 255, .85);
  font-size: 11px;
  line-height: 1;
}
@media (max-width: 1100px) { .hero-widget-mock { display: none; } }
@media (prefers-reduced-motion: reduce) { .hero-widget-mock { animation: none; } }

/* ---------- sections ---------- */
.section { padding: 84px 0; }
.section-soft { background: var(--vvm-bg-soft); }
.section-inner { max-width: 1140px; margin: 0 auto; padding: 0 22px; text-align: center; }
.section-lead {
  max-width: 640px;
  margin: 0 auto 46px;
  color: var(--vvm-muted);
  font-size: 17px;
}
.inline-logo {
  height: 1.6em;
  width: auto;
  vertical-align: -0.45em;
  margin-right: 2px;
}

/* two-column media sections */
.media-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 52px;
  align-items: center;
  text-align: left;
}
.media-split h2 { text-align: left; }
.media-split img {
  width: 100%;
  border-radius: var(--vvm-radius);
  box-shadow: var(--vvm-shadow);
}
.media-split p { color: var(--vvm-muted); font-size: 16px; }
.demo-links { display: flex; gap: 18px; margin-top: 24px; flex-wrap: wrap; }
.demo-thumb {
  display: block;
  width: 232px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--vvm-border);
  box-shadow: var(--vvm-shadow);
  text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease;
}
.demo-thumb:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(14, 47, 55, .2); }
.demo-thumb img { display: block; width: 100%; height: 132px; object-fit: cover; }
.demo-thumb-label {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--vvm-teal);
}
.hero-demo-line { font-weight: 600; color: #bfe3d2; }

/* "More Than Just Closed Captions" strip: heading left with green underline,
   three divided text columns right; sits as an intro band above services */
.captions-strip { padding-bottom: 28px; }
.services-after-strip { padding-top: 40px; }
.captions-grid {
  display: grid;
  grid-template-columns: 1fr 2.9fr;
  gap: 56px;
  align-items: start;
  text-align: left;
}
.captions-head h2 { text-align: left; margin: 0 0 16px; line-height: 1.15; }
.captions-rule {
  width: 64px;
  height: 6px;
  border-radius: 3px;
  background: var(--vvm-green);
}
.captions-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.captions-col { padding: 0 28px; border-left: 1px solid rgba(10, 40, 50, .16); }
.captions-col:first-child { border-left: none; padding-left: 0; }
.captions-col p { margin: 0; color: var(--vvm-muted); font-size: 15.5px; line-height: 1.65; }
.captions-col strong { color: var(--vvm-ink); font-family: var(--font-main); font-weight: 700; }

/* how cards */
.how-grid, .svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  text-align: left;
}
.how-card, .svc-card {
  background: #fff;
  border: 1px solid var(--vvm-border);
  border-radius: var(--vvm-radius);
  padding: 30px 26px;
  box-shadow: var(--vvm-shadow);
}
.how-card h3 { color: var(--vvm-teal-deep); }
.how-card p, .svc-card p { color: var(--vvm-muted); font-size: 15px; margin-bottom: 0; }
.how-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--vvm-teal);
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.svc-card { border-top: 4px solid var(--vvm-green); }
.svc-card ul { list-style: none; padding: 0; margin: 0 0 18px; }
.svc-card li {
  padding: 6px 0 6px 26px;
  position: relative;
  color: var(--vvm-muted);
  font-size: 15px;
}
.svc-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--vvm-green);
  font-weight: 700;
}
.svc-link {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 14px;
  color: var(--vvm-teal);
  text-decoration: none;
}
.svc-link:hover { text-decoration: underline; }
.svc-more { margin-top: 42px; }

/* stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 46px;
}
.stat {
  background: var(--vvm-bg-soft);
  border-radius: var(--vvm-radius);
  padding: 26px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat strong {
  font-family: var(--font-main);
  font-size: 21px;
  font-weight: 800;
  color: var(--vvm-teal);
}
.stat span { font-size: 13.5px; color: var(--vvm-muted); }

/* process */
.process-row {
  list-style: none;
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  padding: 0;
  margin: 46px 0 0;
  text-align: left;
}
.process-row li {
  counter-increment: step;
  background: #fff;
  border: 1px solid var(--vvm-border);
  border-radius: var(--vvm-radius);
  padding: 24px 22px 22px;
  position: relative;
}
.process-row li::before {
  content: counter(step);
  position: absolute;
  top: -16px;
  left: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--vvm-green);
  color: #fff;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-row strong { display: block; font-family: var(--font-main); color: var(--vvm-teal-deep); margin-bottom: 6px; }
.process-row span { font-size: 14px; color: var(--vvm-muted); }

/* pricing */
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 380px));
  justify-content: center;
  gap: 26px;
}
.price-card {
  background: #fff;
  border: 1px solid var(--vvm-border);
  border-radius: var(--vvm-radius);
  box-shadow: var(--vvm-shadow);
  padding: 34px 28px;
}
.price-card h3 { color: var(--vvm-teal-deep); }
.price {
  font-family: var(--font-main);
  font-size: 40px;
  font-weight: 800;
  color: var(--vvm-teal);
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.price span { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--vvm-muted); }
.price em { font-style: normal; font-size: 15px; font-weight: 500; color: var(--vvm-muted); }
.price-includes {
  list-style: none;
  padding: 0;
  margin: 40px auto 0;
  max-width: 420px;
  text-align: left;
}
.price-includes li { padding: 8px 0; font-size: 15.5px; }
.price-includes i { color: var(--vvm-green); margin-right: 10px; }
.price-note { max-width: 560px; margin: 28px auto 0; color: var(--vvm-muted); font-size: 15px; }

/* testimonials */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  text-align: left;
}
.quote-card {
  margin: 0;
  background: #fff;
  border-left: 5px solid var(--vvm-teal);
  border-radius: 0 var(--vvm-radius) var(--vvm-radius) 0;
  box-shadow: var(--vvm-shadow);
  padding: 30px 28px;
  font-size: 16px;
  color: var(--vvm-ink);
}
.quote-card footer { margin-top: 14px; font-weight: 700; font-family: var(--font-main); color: var(--vvm-teal); }

/* ---------- footer ---------- */
.footer { background: var(--vvm-teal-deep); color: #fff; padding: 64px 0 34px; }
.footer-inner { max-width: 1140px; margin: 0 auto; padding: 0 22px; text-align: center; }
.footer-cta p { font-family: var(--font-main); font-size: 22px; font-weight: 700; margin: 0 0 18px; }
.footer-bottom {
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.social-icons { display: flex; gap: 12px; }
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-main);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-icon:hover { background: var(--vvm-green); }
.footer-links { display: flex; gap: 12px; font-size: 14px; }
.footer-links a { color: rgba(255, 255, 255, .8); }
.admin-login-link { opacity: .55; }
.copyright { font-size: 13px; color: rgba(255, 255, 255, .6); }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .how-grid, .svc-grid { grid-template-columns: 1fr 1fr; }
  .captions-grid { grid-template-columns: 1fr; gap: 30px; }
  .captions-head h2 br { display: none; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .process-row { grid-template-columns: 1fr 1fr; row-gap: 34px; }
}
@media (max-width: 860px) {
  .nav-links {
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    border-bottom: 1px solid var(--vvm-border);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 24px; border-bottom: none; }
  .nav-burger { display: block; }
  .nav-actions .btn { display: none; }
}
@media (max-width: 860px) {
  .media-split { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .how-grid, .svc-grid, .quote-grid { grid-template-columns: 1fr; }
  .captions-cols { grid-template-columns: 1fr; gap: 18px; }
  .captions-col { border-left: none; padding: 0; }
  .captions-col + .captions-col { border-top: 1px solid rgba(10, 40, 50, .16); padding-top: 18px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-row { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 70px 18px 90px; }
}
