﻿:root {
  --ink: #15202b;
  --muted: #5e6875;
  --paper: #ffffff;
  --soft: #f5f7fa;
  --line: #dbe2e6;
  --blue: #0f2d52;
  --blue-dark: #0a1d36;
  --orange: #f47b20;
  --gold: #d4a017;
  --green: #2f7d59;
  --shadow: 0 18px 45px rgba(11, 30, 42, 0.13);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: #ffffff;
}

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

.site-header {
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 5vw, 72px);
  color: white;
  background: var(--blue);
  border-bottom: 4px solid var(--gold);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 1.08rem;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--blue);
  background: white;
  border: 3px solid var(--gold);
  font-weight: 800;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
}

.site-nav a {
  padding: 8px 9px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a[aria-current="page"],
.site-nav a:hover { color: var(--gold); }

.header-phone {
  color: var(--gold);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.site-contact-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  padding: 10px clamp(18px, 5vw, 72px);
  color: var(--blue);
  background: #fff8e4;
  border-bottom: 1px solid rgba(212, 160, 23, 0.35);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-contact-strip a {
  color: var(--blue);
  text-decoration: none;
}

.nav-toggle { display: none; }

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: 72px clamp(18px, 7vw, 96px);
  color: white;
  background:
    linear-gradient(90deg, rgba(15, 45, 82, 0.9), rgba(15, 45, 82, 0.62), rgba(15, 45, 82, 0.18)),
    url("https://images.unsplash.com/photo-1572120360610-d971b9d7767c?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.hero-copy { max-width: 820px; }

.hero-form {
  display: grid;
  gap: 13px;
  padding: 28px;
  color: var(--ink);
  background: white;
  border-top: 6px solid var(--gold);
  box-shadow: var(--shadow);
}

.hero-form h2 {
  color: var(--blue);
  font-size: 1.6rem;
}

.hero-contact {
  display: grid;
  gap: 5px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.hero-contact p {
  margin: 0;
  font-size: 0.92rem;
}

.mini-reasons {
  display: grid;
  gap: 6px;
  margin-top: 6px;
  color: var(--blue);
  font-size: 0.9rem;
}

.mini-reasons span::before {
  color: var(--green);
  content: "+ ";
  font-weight: 900;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-trust-row span {
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
  font-weight: 800;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { margin: 0 0 16px; line-height: 1.14; }
h1 { max-width: 980px; font-size: clamp(2.35rem, 5vw, 4.65rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.55rem); }
h3 { font-size: 1.3rem; }
.hero p, .page-hero p { max-width: 850px; font-size: 1.12rem; }

.hero-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-options li {
  position: relative;
  padding: 13px 16px 13px 42px;
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 800;
}

.hero-options li::before {
  position: absolute;
  left: 16px;
  color: var(--gold);
  content: "+";
}

.hero-options strong {
  color: var(--gold);
  font-size: 1.08em;
}

.option-note {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 2px solid transparent;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.button.primary { color: white; background: var(--orange); }
.button.secondary { color: white; border-color: rgba(255, 255, 255, 0.75); }
.button.light { color: var(--blue-dark); background: white; }

.signal-band, .cta-band {
  padding: 24px clamp(18px, 7vw, 96px);
  color: white;
  background: var(--blue);
}

.signal-band p {
  margin: 0 auto;
  max-width: 1000px;
  font-size: 1.15rem;
  font-weight: 800;
  text-align: center;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px clamp(18px, 4vw, 34px);
}

.problem-section, .process-section, .trust-section, .lead-capture {
  max-width: none;
  padding-left: clamp(18px, 7vw, 96px);
  padding-right: clamp(18px, 7vw, 96px);
}

.problem-section, .trust-section { background: var(--soft); }
.problem-section h2, .process-section h2 { max-width: 850px; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.reverse { grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr); }

.info-panel, .lead-form, .contact-panel, .quote-card, .trust-card {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.info-panel, .contact-panel, .trust-card { padding: 32px; }

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "+";
  font-weight: 900;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.problem-item {
  display: flex;
  min-height: 94px;
  align-items: center;
  gap: 14px;
  padding: 18px;
  color: var(--blue);
  background: white;
  border: 1px solid var(--line);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(15, 45, 82, 0.08);
}

.problem-item span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  background: rgba(212, 160, 23, 0.16);
}

.problem-item span::before {
  color: var(--gold);
  content: "H";
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
}

.cards-section, .video-section, .blog-preview { max-width: 1240px; }

.card-grid, .video-grid {
  display: grid;
  gap: 24px;
}

.card-grid.three, .video-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.option-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.option-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  padding: 26px;
  background: white;
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  box-shadow: var(--shadow);
}

.option-card h3 { color: var(--blue); }
.option-card .text-link { margin-top: auto; padding-top: 22px; }
.option-question { margin-top: 0; color: var(--blue-dark); font-weight: 900; }

.card, .video-card {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card h3, .card p, .video-card h3, .video-card p {
  padding-left: 22px;
  padding-right: 22px;
}

.card h3, .video-card h3 { margin-top: 22px; }
.card p, .video-card p { margin-bottom: 24px; }

.image-feature img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.compact-image img { min-height: 320px; }

.text-link {
  color: var(--orange);
  font-weight: 800;
  text-decoration: none;
}

.situation-section { max-width: 980px; }
.situation-accordion details { border-left: 5px solid var(--gold); }
.section-button { margin-top: 28px; }

.trust-card {
  color: white;
  background: var(--blue);
  border-top: 5px solid var(--gold);
}

.trust-number {
  margin-top: 0;
  color: var(--gold);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
}

.trust-badge-grid,
.case-grid,
.glossary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.trust-badge,
.case-card,
.glossary-card {
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  box-shadow: var(--shadow);
}

.trust-badge h3,
.case-card h3,
.glossary-card h3 {
  color: var(--blue);
}

.case-card dl {
  margin: 0;
}

.case-card dt {
  color: var(--blue);
  font-weight: 900;
}

.case-card dd {
  margin: 0 0 14px;
  color: var(--muted);
}

.featured-testimonial {
  margin: 26px 0 32px;
  padding: 28px;
  color: var(--blue);
  background: #fff8e4;
  border-left: 6px solid var(--gold);
}

.featured-testimonial p {
  margin-top: 0;
  font-size: 1.15rem;
  font-weight: 800;
}

.video-thumb {
  display: grid;
  min-height: 220px;
  place-items: center;
  color: white;
  background:
    linear-gradient(rgba(15, 45, 82, 0.18), rgba(15, 45, 82, 0.72)),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=900&q=82") center / cover;
}

.video-thumb.landlord {
  background:
    linear-gradient(rgba(15, 45, 82, 0.18), rgba(15, 45, 82, 0.72)),
    url("https://images.unsplash.com/photo-1582407947304-fd86f028f716?auto=format&fit=crop&w=900&q=82") center / cover;
}

.video-thumb.repairs {
  background:
    linear-gradient(rgba(15, 45, 82, 0.18), rgba(15, 45, 82, 0.72)),
    url("https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?auto=format&fit=crop&w=900&q=82") center / cover;
}

.video-thumb span {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  background: var(--orange);
  border: 3px solid white;
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.process-section {
  color: white;
  background: var(--blue);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.process-grid article {
  min-height: 150px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.process-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.process-grid strong { display: block; font-size: 1.05rem; line-height: 1.35; }

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 4px solid var(--gold);
}

.cta-band h2, .cta-band p { margin-bottom: 0; }

.page-hero {
  padding: 86px clamp(18px, 7vw, 96px);
  color: white;
  background:
    linear-gradient(90deg, rgba(15, 45, 82, 0.9), rgba(15, 45, 82, 0.58)),
    url("https://images.unsplash.com/photo-1572120360610-d971b9d7767c?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.page-hero.buyer, .page-hero.contact, .page-hero.compact {
  background:
    linear-gradient(90deg, rgba(15, 45, 82, 0.9), rgba(15, 45, 82, 0.65)),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 30px;
}

.lead-form.wide { width: 100%; }
label { display: grid; gap: 6px; color: var(--blue-dark); font-weight: 800; }

input, select, textarea {
  width: 100%;
  border: 1px solid #c8d2d8;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  background: white;
}

textarea { resize: vertical; }
.form-note, .fine-print { color: var(--muted); font-size: 0.88rem; }

.accordion { display: grid; gap: 10px; }
details { border: 1px solid var(--line); background: white; }
summary { cursor: pointer; padding: 18px 22px; color: var(--blue-dark); font-weight: 900; }
details p { margin: 0; padding: 0 22px 20px; }

.quote-card { padding: 30px; }
.quote-card p { font-size: 1.05rem; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-bottom: 24px;
}

.site-footer {
  padding: 42px clamp(18px, 7vw, 96px);
  color: rgba(255, 255, 255, 0.86);
  background: var(--blue-dark);
  text-align: center;
}

.site-footer p { margin: 8px auto; max-width: 980px; }
.site-footer a { color: var(--gold); font-weight: 900; text-decoration: none; }

.footer-contact {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-social,
.social-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.footer-social a,
.social-grid a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  color: var(--blue);
  background: #fff8e4;
  border: 1px solid rgba(212, 160, 23, 0.5);
  font-weight: 900;
  text-decoration: none;
}

.social-icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
}

.social-icon span {
  color: var(--blue);
  font-weight: 900;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  box-shadow: var(--shadow);
}

.compare-table th,
.compare-table td {
  border: 1px solid var(--line);
  padding: 14px;
  text-align: left;
  vertical-align: top;
}

.compare-table th {
  color: white;
  background: var(--blue);
}

.resource-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.resource-list a {
  padding: 18px;
  color: var(--blue);
  background: white;
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  box-shadow: var(--shadow);
  font-weight: 900;
  text-decoration: none;
}

.question-link-grid,
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.question-link-grid a,
.guide-card {
  padding: 20px;
  background: white;
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow);
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.guide-card {
  display: grid;
  gap: 10px;
  color: var(--ink);
}

.guide-single {
  max-width: 760px;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
  max-width: 900px;
}

.floating-contact {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  display: grid;
  gap: 8px;
}

.floating-contact a {
  padding: 10px 14px;
  color: white;
  background: var(--orange);
  box-shadow: var(--shadow);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(10, 29, 54, 0.72);
}

.exit-popup.is-visible {
  display: flex;
}

.exit-popup-box {
  position: relative;
  max-width: 620px;
  padding: 34px;
  background: white;
  box-shadow: var(--shadow);
}

.exit-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 1px solid var(--line);
  padding: 7px 10px;
  background: white;
  color: var(--blue);
  font-weight: 900;
}

@media (max-width: 1100px) {
  .site-header { align-items: flex-start; flex-wrap: wrap; }
  .site-nav { order: 3; width: 100%; justify-content: flex-start; }
  .hero { grid-template-columns: 1fr; }
  .option-grid, .process-grid, .trust-badge-grid, .case-grid, .glossary-grid, .question-link-grid, .guide-grid, .resource-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .problem-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 850px) {
  body { padding-bottom: 64px; }

  .nav-toggle {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    padding: 8px 12px;
    color: white;
    background: rgba(255, 255, 255, 0.08);
    font-weight: 800;
  }

  .site-nav { display: none; width: 100%; flex-direction: column; align-items: stretch; }
  .site-nav.is-open { display: flex; }
  .site-nav a { border-top: 1px solid rgba(255, 255, 255, 0.14); }
  .hero { min-height: 590px; }
  .split, .reverse, .card-grid.three, .option-grid, .problem-grid, .process-grid, .video-grid, .trust-badge-grid, .case-grid, .glossary-grid, .question-link-grid, .guide-grid, .newsletter-form, .resource-list { grid-template-columns: 1fr; }
  .cta-band { align-items: flex-start; flex-direction: column; }
  .image-feature img { min-height: 280px; }
  .header-phone { margin-left: auto; }
  .floating-contact {
    right: 0;
    bottom: 0;
    left: 0;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .floating-contact a {
    padding: 12px 8px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .brand { font-size: 1rem; }
  .brand-mark { width: 34px; height: 34px; }
  .hero, .page-hero { padding-top: 58px; padding-bottom: 58px; }
  .button { width: 100%; }
  .hero-options { grid-template-columns: 1fr; }
}

/* Lead generation and SEO expansion */
.consultation-section { max-width: none; padding-left: clamp(18px, 7vw, 96px); padding-right: clamp(18px, 7vw, 96px); background: var(--soft); }
.cta-panel { padding: 34px; color: white; background: var(--blue); border-top: 5px solid var(--gold); box-shadow: var(--shadow); }
.cta-panel .eyebrow { color: var(--gold); }
.button.navy { color: var(--blue); border-color: var(--blue); background: white; }
.compare-tool-section { max-width: 1040px; }
.quiz-result { margin-top: 20px; padding: 24px; color: white; background: var(--blue); border-left: 6px solid var(--gold); }
.simple-compare-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; margin-top: 28px; }
.simple-compare-grid article { padding: 22px; background: white; border: 1px solid var(--line); border-top: 5px solid var(--gold); box-shadow: var(--shadow); }
.video-card-link { display: block; color: inherit; text-decoration: none; }
.testimonial-video-grid { margin-top: 24px; }
.city-list-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-top: 26px; }
.city-list-grid a { padding: 14px; color: var(--blue); background: white; border: 1px solid var(--line); border-left: 4px solid var(--gold); font-weight: 900; text-decoration: none; }
.city-hero-note { display: inline-flex; margin-top: 18px; padding: 10px 14px; color: var(--blue); background: #fff8e4; font-weight: 900; }
.local-image-band { min-height: 260px; background: linear-gradient(rgba(15,45,82,.16), rgba(15,45,82,.58)), url("https://images.unsplash.com/photo-1572120360610-d971b9d7767c?auto=format&fit=crop&w=1600&q=82") center / cover; box-shadow: var(--shadow); }
@media (max-width: 1100px) { .simple-compare-grid, .city-list-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 850px) { .simple-compare-grid, .city-list-grid { grid-template-columns: 1fr; } }
/* Simplified seller conversion sections */
.situation-card-section { max-width: 1120px; }
.situation-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}
.situation-card-grid a {
  min-height: 86px;
  display: flex;
  align-items: center;
  padding: 18px;
  color: var(--blue);
  background: white;
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  box-shadow: var(--shadow);
  font-weight: 900;
  text-decoration: none;
}
.seller-trust-section { max-width: 1180px; }
@media (max-width: 1100px) { .situation-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 700px) { .situation-card-grid { grid-template-columns: 1fr; } }
/* Final testimonial cards */
.testimonial-video-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  box-shadow: var(--shadow);
}
.testimonial-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 260px;
  color: white;
  background: var(--blue-dark);
  text-decoration: none;
}
.testimonial-thumb img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  filter: saturate(0.95);
}
.testimonial-thumb::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(rgba(15, 45, 82, 0.08), rgba(15, 45, 82, 0.58));
}
.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  transform: translate(-50%, -50%);
  color: white;
  background: var(--orange);
  border: 3px solid white;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.testimonial-video-card h3 { margin: 0; color: var(--blue); }
