/* =============================================
   BentonNewell Communication — Global Styles
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --mint:       #7ab898;
  --mint-light: #ddeee3;
  --mint-deep:  #4e8a6e;
  --tan:        #F5EAD7;
  --tan-light:  #FBF5EE;
  --dark:       #2e2e2e;
  --gray:       #737373;
  --gray-light: #f4f4f4;
  --white:      #ffffff;
  --serif:      'Playfair Display', Georgia, serif;
  --sans:       'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
}

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

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; font-family: var(--sans); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--mint-deep); }
p  { color: var(--gray); max-width: 64ch; }

/* ── Nav ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--mint-light);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 48px; width: auto; display: block; }
.nav-logo span { color: var(--mint); }
.nav-links {
  display: flex; gap: 2.2rem; align-items: center;
}
.nav-links a {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--mint-deep); }
.nav-cta {
  background: var(--mint);
  color: var(--white) !important;
  padding: .55rem 1.3rem;
  border-radius: 3px;
  font-size: .78rem !important;
  letter-spacing: .12em;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--mint-deep) !important; }
.nav-hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--dark); display: block; transition: .3s; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: .75rem 1.8rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all .2s;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--mint); color: var(--white); }
.btn-primary:hover { background: var(--mint-deep); }
.btn-outline { background: transparent; border: 2px solid var(--mint); color: var(--mint-deep); }
.btn-outline:hover { background: var(--mint); color: var(--white); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: #444; }

/* ── Section Wrappers ── */
.section { padding: 5rem 5%; }
.section-sm { padding: 3rem 5%; }
.section-alt { background: var(--tan-light); }
.section-tan { background: var(--tan); }
.section-dark { background: var(--dark); color: var(--white); }
.section-dark p { color: #bbb; }
.section-dark h2 { color: var(--white); }
.section-mint { background: var(--mint-light); }

.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h4 { margin-bottom: .6rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { margin: 0 auto; text-align: center; }
.divider { width: 48px; height: 3px; background: var(--mint); margin: 1rem auto 0; }

/* ── Photo Placeholder ── */
.photo-placeholder {
  background: linear-gradient(135deg, var(--mint-light) 0%, var(--tan) 100%);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--mint-deep);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-align: center;
  padding: 1rem;
}
.photo-placeholder.tall { min-height: 520px; }
.photo-placeholder.medium { min-height: 380px; }
.photo-placeholder.square { min-height: 320px; }
.photo-real { border-radius: 6px; object-fit: cover; width: 100%; }
.photo-real.tall { height: 560px; }
.photo-real.medium { height: 420px; }

/* ── Hero ── */
.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  overflow: hidden;
}
.hero-content {
  padding: 5rem 5% 5rem 7%;
}
.hero-eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mint-deep);
  margin-bottom: 1.2rem;
}
.hero-content h1 {
  margin-bottom: 1.4rem;
  color: var(--dark);
}
.hero-content p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 48ch;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image {
  background: linear-gradient(135deg, var(--mint-light) 0%, var(--tan) 100%);
  height: 100%;
  min-height: calc(100vh - 72px);
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-image-placeholder {
  width: 100%; height: 100%;
  min-height: calc(100vh - 72px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem;
  color: var(--mint-deep);
  font-size: .9rem; font-weight: 500;
  text-align: center; padding: 2rem;
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--dark);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  padding: 2.2rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--serif);
  font-size: 2.8rem;
  color: var(--mint);
  display: block;
  line-height: 1;
  margin-bottom: .3rem;
}
.stat-label {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #aaa;
}

/* ── Marquee ── */
.marquee-section {
  background: var(--mint-light);
  padding: 1.1rem 0;
  overflow: hidden;
  border-top: 1px solid var(--mint);
  border-bottom: 1px solid var(--mint);
}
.marquee-track {
  display: flex; gap: 3rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-section:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mint-deep);
  display: flex; align-items: center; gap: 1rem;
}
.marquee-item::after { content: "·"; color: var(--mint); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Video Hero (single rotating video) ── */
.video-hero {
  position: relative;
  height: 72vh;
  max-height: 680px;
  min-height: 420px;
  overflow: hidden;
  background: var(--dark);
}
.hero-vid {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}
.hero-vid.active { opacity: 1; }

/* dot indicators */
.video-dots {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .5rem;
  z-index: 10;
}
.video-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  transition: background .3s, transform .3s;
  cursor: pointer;
}
.video-dot.active {
  background: var(--mint);
  transform: scale(1.3);
}

/* ── Hero Text (below video) ── */
.hero-text {
  padding: 4rem 5%;
  text-align: center;
  background: var(--white);
}
.hero-text .hero-eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--mint-deep);
  margin-bottom: 1rem;
}
.hero-text h1 { max-width: 14ch; margin: 0 auto 1.2rem; }
.hero-text > p { max-width: 58ch; margin: 0 auto 2rem; font-size: 1.05rem; }
.hero-text .hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

@media (max-width: 640px) {
  .video-hero { height: 55vh; }
}

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--mint-light);
  border-radius: 6px;
  padding: 2rem;
  transition: box-shadow .2s, transform .2s;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(122,184,152,.18);
  transform: translateY(-3px);
}
.service-number {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--mint-light);
  font-weight: 700;
  line-height: 1;
  margin-bottom: .6rem;
}
.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: .7rem;
  color: var(--dark);
}
.service-card p { font-size: .92rem; color: var(--gray); max-width: none; }

/* ── Split Layout ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-content h4 { margin-bottom: .6rem; }
.split-content h2 { margin-bottom: 1.2rem; }
.split-content p { margin-bottom: 1.4rem; }
.split-content blockquote {
  border-left: 3px solid var(--mint);
  padding: 1rem 1.4rem;
  margin: 1.6rem 0;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--dark);
  font-style: italic;
  background: var(--tan-light);
  border-radius: 0 6px 6px 0;
}

/* ── Accordion ── */
.accordion { border-top: 1px solid var(--mint-light); }
.accordion-item { border-bottom: 1px solid var(--mint-light); }
.accordion-trigger {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 1.3rem 0;
  display: flex; justify-content: space-between; align-items: center;
  text-align: left;
}
.accordion-trigger h3 { font-size: 1rem; color: var(--dark); font-family: var(--sans); font-weight: 600; }
.accordion-icon {
  font-size: 1.4rem;
  color: var(--mint);
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform .2s;
}
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-body { display: none; padding-bottom: 1.3rem; }
.accordion-body.open { display: block; }
.accordion-body p { font-size: .94rem; max-width: none; margin-bottom: .6rem; }
.result-meta {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  margin-top: .8rem;
}
.result-tag {
  background: var(--mint-light);
  color: var(--mint-deep);
  padding: .25rem .8rem;
  border-radius: 3px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--mint-light);
  border-radius: 6px;
  padding: 2rem;
}
.testimonial-quote {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--dark);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.testimonial-author {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mint-deep);
}

/* ── Blog Cards ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--mint-light);
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.blog-card:hover { box-shadow: 0 8px 24px rgba(122,184,152,.15); }
.blog-card-image {
  height: 200px;
  background: linear-gradient(135deg, var(--mint-light), var(--tan));
  display: flex; align-items: center; justify-content: center;
  color: var(--mint-deep); font-size: .85rem; font-weight: 500;
  overflow: hidden;
}
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 1.6rem; }
.blog-tag {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mint-deep);
  margin-bottom: .5rem;
}
.blog-card h3 { font-size: 1.05rem; color: var(--dark); font-family: var(--sans); margin-bottom: .6rem; }
.blog-card p { font-size: .88rem; color: var(--gray); max-width: none; }
.blog-card-footer {
  padding: .8rem 1.6rem 1.2rem;
  font-size: .8rem;
  color: var(--gray);
  border-top: 1px solid var(--mint-light);
}
.blog-read-more {
  font-size: .8rem; font-weight: 600;
  color: var(--mint-deep);
  letter-spacing: .06em;
  text-transform: uppercase;
  display: inline-block;
  margin-top: .8rem;
}

/* ── Contact Form ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.contact-info h4 { margin-bottom: .5rem; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 1.8rem; }
.contact-detail {
  display: flex; gap: .8rem;
  align-items: center;
  margin-bottom: 1rem;
  font-size: .92rem;
  color: var(--gray);
}
.contact-detail strong { color: var(--dark); }
form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; font-size: .8rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--dark); margin-bottom: .35rem; }
input, textarea, select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: 4px;
  font-size: .94rem;
  font-family: var(--sans);
  color: var(--dark);
  background: var(--white);
  transition: border-color .2s;
}
input:focus, textarea:focus { outline: none; border-color: var(--mint); }
textarea { resize: vertical; min-height: 130px; }
input[type="submit"], button[type="submit"] {
  cursor: pointer;
  background: var(--mint);
  color: var(--white);
  border: none;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .85rem 2rem;
  border-radius: 3px;
  transition: background .2s;
  width: 100%;
}
input[type="submit"]:hover, button[type="submit"]:hover { background: var(--mint-deep); }

/* ── Footer ── */
footer {
  background: var(--dark);
  padding: 3.5rem 5% 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 1.8rem;
}
.footer-brand p {
  font-size: .88rem;
  color: #aaa;
  margin-top: .8rem;
  max-width: 28ch;
}
.footer-col h5 {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: .85rem;
  color: #aaa;
  margin-bottom: .5rem;
  transition: color .2s;
}
.footer-col a:hover { color: var(--white); }

/* ── Footer social icons ── */
.footer-social { display: flex; gap: .8rem; margin-top: 1rem; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #aaa; font-size: .8rem; font-weight: 600;
  transition: background .2s, color .2s;
  margin-bottom: 0;
}
.footer-social a:hover { background: var(--mint); color: var(--white); }

/* ── CountUp animation ── */
.stat-number { display: inline-block; }
.stat-number.counting { opacity: 1; }
@keyframes stat-pop { 0%{transform:scale(1)} 50%{transform:scale(1.08)} 100%{transform:scale(1)} }
.stat-number.pop { animation: stat-pop .4s ease; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem; color: #666;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--white);
}
.footer-logo span { color: var(--mint); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--tan-light);
  padding: 5rem 5%;
  border-bottom: 1px solid var(--mint-light);
}
.page-hero h4 { margin-bottom: .5rem; }
.page-hero h1 { color: var(--dark); margin-bottom: 1rem; font-size: clamp(2rem, 4vw, 3.2rem); }
.page-hero p { font-size: 1.05rem; max-width: 54ch; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 4rem 5%; order: 2; }
  .hero-image { min-height: 380px; height: 380px; order: 1; }
  .hero-image-placeholder { min-height: 380px; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--mint-light);
    padding: 1.5rem 5%;
    gap: 1.2rem;
  }
  .stats-bar { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .stat-item:last-child { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .8rem; text-align: center; }
}

/* =============================================
   NAV BRAND NAME
   ============================================= */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}
.nav-brand-name {
  font-family: var(--serif);
  font-size: .78rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: .01em;
}

/* =============================================
   LOGO SCROLL BAR
   ============================================= */
.logo-scroll-track-wrap {
  overflow: hidden;
  width: 100%;
}
.logo-scroll-track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: logoScroll 40s linear infinite;
  padding: .5rem 0;
}
.logo-scroll-track:hover { animation-play-state: paused; }
@keyframes logoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-card {
  background: var(--white);
  border: 1px solid var(--mint-light);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  text-align: center;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  min-width: 150px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0,0,0,.05);
}
.logo-card span {
  display: block;
  font-weight: 400;
  color: var(--gray);
  font-size: .72rem;
}

/* =============================================
   TESTIMONIALS CAROUSEL
   ============================================= */
.testi-carousel {
  position: relative;
  min-height: 220px;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.testi-slide {
  display: none;
  animation: fadeIn .5s ease;
}
.testi-slide.active { display: block; }
@keyframes fadeIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:none; } }

.testi-quote {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 1.4rem;
}
.testi-quote::before { content: '\201C'; }
.testi-quote::after  { content: '\201D'; }
.testi-name {
  font-family: var(--sans);
  font-weight: 700;
  font-size: .9rem;
  color: var(--mint);
  margin-bottom: .2rem;
}
.testi-role {
  font-family: var(--sans);
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  margin: 0;
}
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2rem;
}
.testi-prev, .testi-next {
  background: none;
  border: 1px solid var(--mint);
  color: var(--mint);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.testi-prev:hover, .testi-next:hover { background: var(--mint); color: #fff; }
.testi-dots { display: flex; gap: .5rem; }
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: background .2s;
}
.testi-dot.active { background: var(--mint); }

/* =============================================
   TESTIMONIALS - STACIE SELISE STYLE UPGRADE
   ============================================= */
.testi-quote {
  font-size: clamp(1.1rem, 2.2vw, 1.5rem) !important;
  max-width: 860px;
  margin: 0 auto 2rem !important;
}
.testi-name {
  font-size: 1rem !important;
}
.testi-prev, .testi-next {
  width: 48px !important;
  height: 48px !important;
  font-size: 1.3rem !important;
}
.testi-carousel { min-height: 260px !important; }

/* VIDEO HERO - taller */
.video-hero {
  height: 80vh !important;
  max-height: 780px !important;
}

/* =============================================
   TESTIMONIAL BLOCK MARQUEE
   ============================================= */
.testi-marquee-wrap {
  overflow: hidden;
  width: 100%;
}
.testi-marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: testiScroll 50s linear infinite;
  padding: .5rem 0;
}
.testi-marquee-track:hover { animation-play-state: paused; cursor: default; }
@keyframes testiScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.testi-block {
  width: 380px;
  min-width: 380px;
  border-radius: 12px;
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
}
.testi-block-quote {
  font-family: var(--serif);
  font-size: .98rem;
  font-style: italic;
  color: #fff;
  line-height: 1.75;
  margin-bottom: 1.4rem;
  flex: 1;
}
.testi-block-quote::before { content: '\201C'; }
.testi-block-quote::after  { content: '\201D'; }
.testi-block-name {
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  margin-bottom: .2rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.testi-block-org {
  font-family: var(--sans);
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  margin: 0;
}

/* =============================================
   ACCORDION METRICS (CountUp blocks)
   ============================================= */
.accordion-header-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.accordion-stats-preview {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.acc-stat-badge {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 600;
  color: var(--mint-deep);
  background: var(--mint-light);
  padding: .2rem .6rem;
  border-radius: 20px;
  white-space: nowrap;
}
.accordion-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 1rem;
  padding: 1.5rem;
  background: var(--dark);
  border-radius: 8px;
}
.accordion-metric {
  text-align: center;
}
.acc-count {
  display: block;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--mint);
  line-height: 1;
  margin-bottom: .4rem;
}
.acc-metric-label {
  font-family: var(--sans);
  font-size: .72rem;
  color: rgba(255,255,255,.7);
  line-height: 1.3;
}

/* Logo image cards in scroll bar */
.logo-img-card {
  background: var(--white);
  border: 1px solid var(--mint-light);
  border-radius: 8px;
  padding: .8rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 64px;
  box-shadow: 0 2px 6px rgba(0,0,0,.05);
  flex-shrink: 0;
}
.logo-img-card img {
  max-height: 40px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  filter: grayscale(20%);
  opacity: .85;
  transition: opacity .2s, filter .2s;
}
.logo-img-card:hover img { opacity: 1; filter: grayscale(0%); }
