/* =========================================
   B2 Moving – Global Styles (main.css)
   ========================================= */

/* ========= Brand tokens ========= */
:root {
  --brand-red: #CC0033;
  --brand-red-700: #A5002A;   /* hover */
  --brand-blue: #071C71;
  --white: #ffffff;

  --text: #000000;           /* pure black for body text */
  --muted: #475569;
  --border: #e5e7eb;
  --shadow: 0 2px 10px rgba(0,0,0,.04);
  --radius: 12px;
}

/* ========= Base / Reset ========= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial, sans-serif;
  background-color: #ffffff;
}

img,
picture {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

:focus-visible {
  outline: 2px solid var(--brand-red);
  outline-offset: 2px;
}

.nowrap {
  white-space: nowrap;
}

/* Simple layout helpers */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* =========================================
   Legacy-style grid for value props, lists, pricing
   ========================================= */

/* Basic row/column system to replace old theme grid */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
}

.row > [class*="col-"] {
  padding-left: 8px;
  padding-right: 8px;
}

/* Columns */
.col-md-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.col-md-4 {
  flex: 0 0 100%;
  max-width: 100%;
}

.col-sm-6 {
  flex: 0 0 100%;
  max-width: 100%;
}

/* At small screens, allow 2-up for col-sm-6 if needed */
@media (min-width: 576px) {
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* At desktop widths, make col-md-4 a 3-up grid */
@media (min-width: 960px) {
  .col-md-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
}

/* Center helper */
.text-center {
  text-align: center;
}

/* =========================================
   Global Typography
   ========================================= */

/* All headings branded blue by default */
h1,
h2,
h3,
h4 {
  color: var(--brand-blue);
  margin-top: 0;
}

/* Paragraphs use pure black body text (var(--text)) */
p {
  color: var(--text);
}

/* =========================================
   Sticky Call Bar (Top)
   ========================================= */
.sticky-call {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.sticky-wrap {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
}

.call-label {
  font-weight: 600;
  color: var(--brand-blue);
}

.call-number {
  font-weight: 800;
  color: var(--brand-blue);
}

/* CTA button – red background, bold white text */
.btn-call {
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 800;
  line-height: 1;
  background: var(--brand-red);
  color: var(--white);
  border: 1px solid var(--brand-red);
  transition:
    background .15s ease,
    border-color .15s ease,
    transform .12s ease;
}

.btn-call:hover {
  background: var(--brand-red-700);
  border-color: var(--brand-red-700);
  transform: translateY(-1px);
}

/* =========================================
   Primary Navigation
   ========================================= */
nav.site-nav {
  position: relative;
  z-index: 1200;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.site-nav .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
}

.brand img {
  display: block;
  height: 44px;
  width: auto;
}

/* Top-level nav links = branded blue */
.nav-links {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.nav-links > li {
  list-style: none;
  position: relative;
}

.nav-links > li > a {
  padding: 8px 6px;
  display: inline-block;
  font-weight: 700;
  color: var(--brand-blue);
  border-radius: 8px;
}

/* On hover over the li, turn heading red and auto show dropdown */
.nav-links > li:hover > a,
.nav-links > li:focus-within > a {
  color: var(--brand-red);
  text-decoration-color: var(--brand-red);
}

/* Dropdown menus */
.nav-links li .dd {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  min-width: 220px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
  padding: 6px 0;
  z-index: 1300;
}

.nav-links li:hover .dd,
.nav-links li:focus-within .dd {
  display: block;
}

/* Dropdown items also blue by default */
.nav-links li .dd a {
  display: block;
  padding: 10px 12px;
  color: var(--brand-blue);
}

.nav-links li .dd a:hover {
  color: var(--brand-red);
}

/* Optional “active” state for current page links */
.nav-links a.is-active {
  color: var(--brand-red);
}

/* =========================================
   Full-Bleed Hero – Shared Layout
   ========================================= */
.slide.full-bleed {
  width: calc(100vw - (100vw - 100%));
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.hero-bg {
  position: relative;
  width: 100%;
  height: clamp(340px, 48vh, 720px);
  overflow: hidden;
  background-color: #000; /* fallback / base */
}

/* ===== Per-page hero images ===== */

/* Home / index.html */
.hero-bg-index {
  background: #000 url("/img/assets/b2-hero-10-29-24.webp") center/cover no-repeat;
}

/* Fine-tune index hero cropping so faces sit lower in frame */
.hero-bg.hero-bg-index {
  background-position: center 25%; /* tweak 20–40% as needed */
}

/* Meet the Team / meet-the-team.html */
.hero-bg-meet-the-team {
  background: #000 url("/img/assets/team/hero-team-16x9-1600.webp") center/cover no-repeat;
  background-position: 60% 35%;
}

@media (min-width: 1400px) {
  .hero-bg-meet-the-team {
    background-position: 58% 35%;
  }
}

@media (max-width: 640px) {
  .hero-bg-meet-the-team {
    background-position: 50% 40%;
  }
}

/* B2 Moving Tips / b2-moving-tips.html */
.hero-bg-b2-moving-tips {
  background: #000 url("/img/assets/hero-b2-moving-tips-1600.webp") center/cover no-repeat;
}

/* Long-distance blog / b2-long-distance-moving-blog.html */
.hero-bg-b2-long-distance-moving-blog {
  background: #000 url("/img/assets/hero-b2-long-distance-blog-1600.webp") center/cover no-repeat;
}

/* Local Moves / localmoves.html */
.hero-bg-localmoves {
  background: #000 url("/img/assets/hero-localmoves-1600.webp") center/cover no-repeat;
}

/* Long Distance / longdistance.html */
.hero-bg-longdistance {
  background: #000 url("/img/assets/hero-longdistance-1600.webp") center/cover no-repeat;
}

/* Professional Packing / packing.html */
.hero-bg-packing {
  background: #000 url("/img/assets/hero-packing-1600.webp") center/cover no-repeat;
}

/* Last Mile / lastmile.html */
.hero-bg-lastmile {
  background: #000 url("/img/assets/hero-lastmile-1600.webp") center/cover no-repeat;
}

/* Rogers / rogers.html */
.hero-bg-rogers {
  background: #000 url("/img/assets/hero-rogers-1600.webp") center/cover no-repeat;
}

/* Bentonville / bentonville.html */
.hero-bg-bentonville {
  background: #000 url("/img/assets/hero-bentonville-1600.webp") center/cover no-repeat;
}

/* Springdale / springdale.html */
.hero-bg-springdale {
  background: #000 url("/img/assets/hero-springdale-1600.webp") center/cover no-repeat;
}

/* Fayetteville / fayetteville.html */
.hero-bg-fayetteville {
  background: #000 url("/img/assets/hero-fayetteville-1600.webp") center/cover no-repeat;
}

/* Bella Vista / bellavista.html */
.hero-bg-bellavista {
  background: #000 url("/img/assets/hero-bellavista-1600.webp") center/cover no-repeat;
}

/* Centerton / centerton.html */
.hero-bg-centerton {
  background: #000 url("/img/assets/hero-centerton-1600.webp") center/cover no-repeat;
}

/* Tulsa → NWA / tulsa-to-nwa-movers.html */
.hero-bg-tulsa-to-nwa-movers {
  background: #000 url("/img/assets/hero-tulsa-to-nwa-1600.webp") center/cover no-repeat;
}

/* Dallas → NWA / dallas-to-nwa-movers.html */
.hero-bg-dallas-to-nwa-movers {
  background: #000 url("/img/assets/hero-dallas-to-nwa-1600.webp") center/cover no-repeat;
}

/* Blog Grid / blog-grid.html */
.hero-bg-blog-grid {
  background: #000 url("/img/assets/hero-blog-grid-1600.webp") center/cover no-repeat;
}

/* Terms / b2-terms.html */
.hero-bg-b2-terms {
  background: #000 url("/img/assets/hero-b2-terms-1600.webp") center/cover no-repeat;
}

/* ===== Reusable CTA panel (blue block + red button inside) ===== */

.hero-cta,
.cta-panel-blue {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(7, 28, 113, .75); /* brand blue with alpha */
  backdrop-filter: saturate(120%) blur(2px);
  padding: 10px 14px;
  border-radius: 12px;
  z-index: 2;
  text-align: center;
  color: #fff;
}

/* If you use .cta-panel-blue outside a hero, you may want to make it static instead of absolute */
.cta-panel-blue {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
}

/* CTA button (same style as Meet the Team Call for Instant Quote) */
.cta-btn {
  display: inline-block;
  font-weight: 800;
  padding: 10px 14px;
  border-radius: 10px;
  line-height: 1;
}

.cta-primary {
  background: var(--brand-red);
  color: var(--white);
  border: 1px solid var(--brand-red);
}

.cta-primary:hover {
  background: var(--brand-red-700);
  border-color: var(--brand-red-700);
}

.cta-sub {
  margin: 0;
  font-size: .9rem;
  color: #ffffff;
}

/* =========================================
   Feature cards (About + Why B2 + any .feature-center)
   ========================================= */

.feature-center {
  position: relative;
  text-align: center;
  padding: 18px 10px 16px;
}

.feature-center a {
  text-decoration: none;
}

.feature-center .feature-left-content {
  position: relative;
  z-index: 1;
  margin-top: 10px;
}

/* Headings inside feature cards */
.feature-center .feature-left-content h4 {
  margin: 10px 0 4px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-blue);
}

/* Subtext inside feature cards:
   - normal weight
   - black text
   - double checkmark in front
*/
.feature-center .feature-left-content p {
  margin: 2px 0;
  font-size: 0.88rem;
  font-weight: 400;        /* unbolded subtext */
  color: var(--text);      /* pure black */
  display: inline-block;
  text-align: left;
  position: relative;
  padding-left: 18px;      /* space for checkmark */
}

/* Standard double-check icon for all feature cards */
.feature-center .feature-left-content p::before {
  content: "✓✓";
  position: absolute;
  left: 0;
  top: 0.15em;
  font-size: 0.85em;
}

/* Special case: big phone number in Call Us card
   - keep it big, centered, and without a checkmark
*/
#about .feature-center .feature-left-content p[style*="24px"] {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
  padding-left: 0;
}

#about .feature-center .feature-left-content p[style*="24px"]::before {
  content: "";
}

/* Icon sizing/colors to echo old theme */
.size-4x {
  position: relative;
  z-index: 1;
  font-size: 3rem;
}

.color {
  color: var(--brand-red);
}

/* Faint “background” icon behind the main one */
.back-icon {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.06;
  font-size: 5rem;
  pointer-events: none;
  z-index: 0;
}

/* =========================================
   Bullet icon lists (Long Distance, Local, Packing)
   ========================================= */

.list-icons {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.list-icons > li {
  margin-bottom: 12px;
}

.list-icons i {
  margin-right: 4px;
}

/* Long Distance / Local / Packing block under About */

/* Center each column, but keep bullets left-aligned */
#about .row.text-center .col-md-4.col-sm-6.mt40.mb40 {
  text-align: center;
}

/* Keep each list as a left-aligned block centered within the column */
#about .row.text-center .col-md-4.col-sm-6.mt40.mb40 > ul.list-icons {
  display: inline-block;
  text-align: left;
  margin: 0 auto;
}

/* Section headings (Long Distance Moves, Local Moves, etc.) */
#about .row.text-center .list-icons > li {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 6px;
}

/* Inner bullet rows: same subtext style as feature cards */
#about .row.text-center .list-icons > li > ul.list-icons li {
  font-size: 0.88rem;
  font-weight: 400;   /* unbolded subtext */
  color: var(--text);
  position: relative;
  padding-left: 18px; /* space for checkmark */
}

/* Hide old Ionicons double-check to avoid duplicates */
#about .row.text-center .list-icons > li > ul.list-icons li i.ion-android-done-all {
  display: none;
}

/* Add the same double-check pseudo-element */
#about .row.text-center .list-icons > li > ul.list-icons li::before {
  content: "✓✓";
  position: absolute;
  left: 0;
  top: 0.15em;
  font-size: 0.85em;
}

/* =========================================
   Team Culture Intro (Meet-the-Team)
   ========================================= */
.team-culture {
  padding: 40px 0 10px;
}

.page-title {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.25;
  margin: 0 0 12px;
  font-weight: 800;
  /* color comes from global h1/h2/h3/h4 rule: brand blue */
}

.team-intro {
  max-width: 920px;
  margin: 0 auto 18px;
}

.team-intro p {
  font-size: clamp(17px, 1.1rem, 19px);
  line-height: 1.65;
  margin: 0 0 12px;
}

/* =========================================
   Blue Callout Blocks (Leadership Culture etc.)
   ========================================= */

/* Reusable blue section style */
.leadership-culture,
.callout-blue {
  background: var(--brand-blue);
  color: var(--white);
  margin: 8px 0 32px;
}

.leadership-culture .wrap,
.callout-blue .wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 16px;
}

/* Heading and text inside blue callout: bold white heading, smaller white paragraph text */
.leadership-culture h2,
.callout-blue h2,
.leadership-culture h3,
.callout-blue h3 {
  font-size: clamp(22px, 2.2vw, 30px);
  margin: 0 0 8px;
  font-weight: 800;
  color: var(--white); /* override global heading blue */
}

.leadership-culture p,
.callout-blue p {
  font-size: clamp(18px, 1.35rem, 22px);
  line-height: 1.55;
  margin: 0;
  opacity: .95;
  color: var(--white);
}

/* =========================================
   Team Grid & Cards (Meet-the-Team + Home)
   ========================================= */
.b2-team {
  background: #fafafa;
  padding: 30px 0 60px;
}

#team-title {
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.25;
  margin-top: 28px;
  margin-bottom: 4px; /* pulls the lead subheading closer */
  /* color: brand blue from global heading rule */
}

/* Lead paragraph / subheading under section titles */
.lead {
  max-width: 860px;
  margin: 4px auto 0; /* tighter gap from the heading */
  font-size: clamp(18px, 1.2rem, 20px); /* a bit larger */
  line-height: 1.6;
  color: var(--muted);
  text-align: center; /* keeps it centered under headings like on Meet the Team */
}

.b2-team__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 960px) {
  .b2-team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .b2-team__grid {
    grid-template-columns: 1fr;
  }
}

.b2-team__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

/* Carousel wrapper */
.b2-team__carousel {
  position: relative;
}

.b2-team__strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px;
  scroll-padding: 8px;
  align-items: stretch;
}

.b2-team__slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: transparent;
  display: block;
}

.b2-team__slide picture,
.b2-team__slide img {
  display: block;
  width: 100%;
  height: auto;
}

/* Carousel arrows */
.b2-team__prev,
.b2-team__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  line-height: 0;
  font-size: 20px;
}

.b2-team__prev {
  left: 8px;
}

.b2-team__next {
  right: 8px;
}

.b2-team__prev:hover,
.b2-team__next:hover {
  background: rgba(0, 0, 0, .7);
}

/* Card text
   - Name: brand blue
   - Role: brand red
   - Blurb: black body text
*/
.b2-team__meta {
  padding: 12px 14px 16px;
}

.b2-team__name {
  margin: 0 0 4px;
  font-weight: 800;
  color: var(--brand-blue); /* NAME = blue */
}

.b2-team__role {
  margin: 0 0 8px;
  color: var(--brand-red);  /* ROLE = red */
  font-weight: 700;
}

.b2-team__blurb {
  margin: 0;
  color: var(--text);
  font-size: .95rem;
  line-height: 1.45;
}

/* Ensure no truncation from any global CSS inits */
#team .b2-team__meta p,
#team .b2-team__blurb {
  display: block !important;
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: normal !important;
  -webkit-line-clamp: unset !important;
  -webkit-box-orient: unset !important;
  max-height: none !important;
}

/* =========================================
   Footer
   ========================================= */
.lp-footer {
  background: var(--brand-blue);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding: 22px 0 26px;
}

/* Make *all* text inside footer white */
.lp-footer h1,
.lp-footer h2,
.lp-footer h3,
.lp-footer h4,
.lp-footer p,
.lp-footer li,
.lp-footer span,
.lp-footer strong,
.lp-footer small {
  color: var(--white);
}

/* Footer links: white + underline */
.lp-footer a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lp-footer a:hover {
  opacity: .9;
}

.lp-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 18px;
}

@media (max-width: 900px) {
  .lp-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .lp-footer__inner {
    grid-template-columns: 1fr;
  }

  .lp-footer {
    padding: 18px 0 22px;
  }
}

.footer-logo {
  height: 38px;
  width: auto;
  display: block;
  margin-bottom: 8px;
}

.lp-foot-small {
  font-size: .9rem;
  opacity: .9;
  margin: 0;
}

/* Footer links list */
.lp-foot-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-foot-links li {
  margin: 6px 0;
}

/* Footer headings override global blue → white */
.lp-footer h1,
.lp-footer h2,
.lp-footer h3,
.lp-footer h4 {
  color: var(--white);
}

#bbblinkimg {
  height: 54px;
  width: auto;
}

/* =========================================
   Home / index.html – About / Top Value Props
   ========================================= */

/* Section wrapper spacing */
#about {
  padding-top: 32px;
  padding-bottom: 32px;
}

/* H1 + H2 under hero on home */
#about h1 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 6px;
}

#about h2 {
  font-size: clamp(20px, 2.1vw, 26px);
  font-weight: 600;
  margin-top: 4px;
  margin-bottom: 12px;
}

/* Key links directly under H2 (“Meet the Team”, “Pricing”, etc.) */
.key-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 14px auto 6px;
}

.key-links a {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
}

.key-links a:hover {
  background: #f7f7f7;
}

/* =========================================
   Home / index.html – “Why B2 Moving” Hero Image
   ========================================= */

.hero-image {
  background-image: image-set(
    url("/img/assets/Lionel&Jesse-Adam-3.avif") type("image/avif"),
    url("/img/assets/Lionel&Jesse-Adam-3.webp") type("image/webp"),
    url("/img/assets/Lionel&Jesse-Adam-3.jpg")  type("image/jpeg")
  );
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 50vh;
  width: 100%;
}

/* Home intro spacing (older section; keep in case used) */
.home-intro {
  padding: 30px 0 20px;
}

/* 3-column pillars / generic home grids */
.home-pillars,
.home-services-grid,
.home-pricing-grid,
.home-testimonials-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

@media (max-width: 960px) {
  .home-pillars,
  .home-services-grid,
  .home-pricing-grid,
  .home-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .home-pillars,
  .home-services-grid,
  .home-pricing-grid,
  .home-testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* Cards feel similar to team cards */
.home-pillars article,
.home-services-grid > div,
.home-pricing-grid article,
.home-testimonials-grid article {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px 14px;
  box-shadow: var(--shadow);
}

.home-testimonials {
  padding: 20px 0 30px;
}

/* Blue, bold, linked heading */
.home-testimonials-intro {
  margin: 10px auto 18px;
  max-width: 640px;
  font-size: 0.98rem;
  text-align: center;
}

.home-testimonials-intro a {
  color: var(--brand-blue);
  font-weight: 700;
  text-decoration: none;
}

.home-testimonials-intro a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Clickable testimonial cards */
.home-testimonial-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.home-testimonial {
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.home-testimonial-link:hover .home-testimonial {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.home-testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 0 10px;
}

.home-testimonial-quote::before,
.home-testimonial-quote::after {
  content: "";
}

.home-testimonial-name {
  margin: 0;
  font-weight: 700;
  color: var(--brand-blue);
}

.home-testimonial-location {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.home-testimonials-cta {
  margin: 18px 0 0;
  font-size: 0.98rem;
}

.home-testimonials-cta a {
  font-weight: 700;
  color: var(--brand-red);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.home-testimonials-cta a:hover {
  color: var(--brand-red-700);
}

/* Contact row copy under about */
.home-contact {
  margin-top: 16px;
  font-size: 0.98rem;
}

/* =========================================
   Home / index.html – Pricing
   ========================================= */

#pricing {
  padding: 40px 0 50px;
  background: #fafafa;
}

#pricing h2 {
  font-size: clamp(22px, 2.4vw, 32px);
  margin-bottom: 6px;
}

#pricing h4 {
  font-size: clamp(18px, 1.3rem, 22px);
  font-weight: 600;
  margin-top: 4px;
  margin-bottom: 16px;
}

/* Cards inside the existing home-pricing-grid */
.home-pricing-card {
  position: relative;
  text-align: left;
}

.home-pricing-card h3 {
  margin: 0 0 4px;
  font-size: 1.1rem;
}

.home-pricing-label {
  margin: 0 0 6px;
  font-size: 0.9rem;
  color: var(--muted);
}

.home-pricing-rate {
  margin: 0 0 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-red);
}

.home-pricing-rate span {
  font-size: 1.6rem;
}

/* Feature bullets */
.home-pricing-features {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  font-size: 0.93rem;
}

.home-pricing-features li {
  margin: 4px 0;
  position: relative;
  padding-left: 16px;
}

.home-pricing-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.1em;
  font-size: 0.9em;
}

/* Middle card highlight */
.home-pricing-card--popular {
  border-color: var(--brand-red);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.home-pricing-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(204, 0, 51, 0.08);
  color: var(--brand-red);
  padding: 4px 8px;
  border-radius: 999px;
  margin: 0 0 8px;
}

/* Notes under pricing */
.home-pricing-notes {
  margin-top: 26px;
}

.home-pricing-longdistance {
  margin-top: 40px;
}

/* Simple highlight utility used in pricing + elsewhere */
.highlight {
  color: var(--brand-red);
  font-weight: 700;
}
