/* ===========================================================================
   Section styles.

   Every page is built from the partials in resources/views/sections, and any
   section can be placed on any page, so their CSS is loaded site-wide rather
   than pushed from the page that happens to use them today. Adding a section
   type is: a definition in SectionTypes, a partial, and a block here.

   Loaded after main.css, so where a rule exists in both this one wins.
   =========================================================================== */

/* ── Shared bits ──────────────────────────────────────────────────────────── */
.section-intro { max-width: 600px; margin-inline: auto; margin-bottom: 56px; }
.section-intro h2 { margin: 10px 0 14px; }
.section-intro p  { color: var(--clr-grey-txt); font-size: 1.05rem; }

/* Author-written HTML (rich text fields). */
.prose p { color: var(--clr-grey-txt); margin-bottom: 16px; line-height: 1.75; }
.prose p:last-child { margin-bottom: 0; }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.check-list li {
  padding-left: 28px; position: relative; font-size: .95rem; color: var(--clr-grey-txt);
}
.check-list li::before {
  content: '✓'; position: absolute; left: 0; color: var(--clr-orange); font-weight: 800;
}

/* ── hero ─────────────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #fff 0%, #FFF5EE 60%, #FFE8D6 100%);
  padding: 80px 0 60px;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__copy { max-width: 560px; }
.hero__copy h1 { margin: 12px 0 20px; color: var(--clr-navy); }
.hero__subtitle { font-size: 1.1rem; color: var(--clr-grey-txt); max-width: 480px; }
.hero__ctas  { display: flex; gap: 14px; flex-wrap: wrap; margin: 32px 0 24px; }
.hero__badges { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__visual  { position: relative; display: flex; justify-content: center; }
.hero__phone-wrap { position: relative; }

/* The float lives on the stack so every slide drifts together. */
.hero__phones { position: relative; animation: float 4s ease-in-out infinite; }

.hero__phone   {
  max-width: 300px; border-radius: 32px;
  box-shadow: 0 32px 80px rgba(255,102,0,.18), var(--shadow-md);
}

/* Slides stack on the first one, which keeps its place in flow and so sets
   the wrapper's size — no fixed height to keep in sync with the artwork. */
.hero__phones--slider .hero__phone { transition: opacity .9s ease; }
.hero__phones--slider .hero__phone:not(:first-child) {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain;
}
.hero__phones--slider .hero__phone { opacity: 0; }
.hero__phones--slider .hero__phone.is-active { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .hero__phones { animation: none; }
  .hero__phones--slider .hero__phone { transition: none; }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

.hero__deal-card {
  position: absolute;
  background: #fff; border-radius: var(--radius);
  padding: 10px 14px; box-shadow: var(--shadow-md);
  font-size: .82rem; font-weight: 600; color: var(--clr-navy);
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
  animation: slide-in .6s ease forwards;
}
.hero__deal-card--1 { top: 15%;  left: -30%; animation-delay: .2s; }
.hero__deal-card--2 { top: 50%;  right: -28%; animation-delay: .4s; }
.hero__deal-card--3 { bottom: 18%; left: -25%; animation-delay: .6s; }
@keyframes slide-in { from { opacity:0; transform: translateX(-10px); } to { opacity:1; transform: translateX(0); } }

.deal-badge {
  background: var(--clr-orange); color: #fff;
  padding: 3px 8px; border-radius: 6px; font-size: .78rem;
}

/* ── page_hero ────────────────────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #fff 0%, #FFF5EE 60%, #FFE8D6 100%);
  padding: 72px 0 56px;
  text-align: center;
}
.page-hero__inner { max-width: 720px; margin-inline: auto; }
.page-hero h1 { margin: 12px 0 16px; color: var(--clr-navy); }
.page-hero p  { color: var(--clr-grey-txt); font-size: 1.05rem; }

.page-hero--orange { background: linear-gradient(135deg, var(--clr-orange-d) 0%, var(--clr-orange) 100%); }
.page-hero--orange h1 { color: #fff; }
.page-hero--orange p  { color: rgba(255,255,255,.9); }

.page-hero--faq { background: linear-gradient(135deg, var(--clr-navy) 0%, #2a2a4a 100%); }
.page-hero--faq h1 { color: #fff; }
.page-hero--faq p  { color: rgba(255,255,255,.8); }

.page-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 28px; }
.page-hero--orange .section-label, .page-hero--faq .section-label { color: rgba(255,255,255,.7); }

/* ── stats ────────────────────────────────────────────────────────────────── */
.proof-bar {
  background: var(--clr-navy);
  padding: 20px 0;
}
.proof-bar__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.proof-bar__item {
  display: flex; flex-direction: column; align-items: center;
  padding: 12px 32px; color: #fff; text-align: center;
}
.proof-bar__item strong { font-size: 1.35rem; color: var(--clr-orange); font-weight: 800; }
.proof-bar__item span   { font-size: .82rem; opacity: .7; margin-top: 2px; }
.proof-bar__divider {
  width: 1px; height: 40px; background: rgba(255,255,255,.15);
  align-self: center;
}

.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  margin-top: 48px; background: rgba(255,255,255,.08);
  border-radius: var(--radius-lg); overflow: hidden;
}
.stats__item {
  padding: 36px 28px; background: rgba(255,255,255,.04);
  display: flex; flex-direction: column; gap: 12px;
}
.stats__item:hover { background: rgba(255,255,255,.08); }
.stats__item strong { font-size: 1.9rem; color: var(--clr-orange); font-weight: 800; line-height: 1.1; }
.stats__item span   { color: rgba(255,255,255,.7); font-size: .9rem; line-height: 1.55; }

/* ── image_text ───────────────────────────────────────────────────────────── */
.about-snap__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
/* The image is first in the markup, so putting it on the right is an order
   swap — the copy stays first for a screen reader either way. */
.about-snap__inner--reverse .about-snap__visual { order: 2; }
.about-snap__visual { position: relative; }
.about-snap__img {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  width: 100%; object-fit: cover; aspect-ratio: 4/3;
}
.about-snap__badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--clr-orange); color: #fff;
  border-radius: 50%; width: 90px; height: 90px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-weight: 800; font-size: .75rem; text-align: center; line-height: 1.2;
  box-shadow: var(--shadow-md);
}
.about-snap__badge-num { font-size: 1.5rem; }
.about-snap__copy h2   { margin: 12px 0 20px; }
.about-snap__copy p    { color: var(--clr-grey-txt); max-width: 500px; }
.about-snap__note      { margin-top: 20px; }

.about-snap__highlights { display: flex; gap: 32px; margin-top: 32px; flex-wrap: wrap; }
.highlight-item { display: flex; flex-direction: column; gap: 2px; }
.highlight-item strong { font-size: 1.6rem; color: var(--clr-orange); font-weight: 800; }
.highlight-item span   { font-size: .82rem; color: var(--clr-grey-txt); }

/* ── benefit_panels ───────────────────────────────────────────────────────── */
.benefits__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.benefits__panel {
  background: #fff; border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--clr-orange);
  display: flex; flex-direction: column;
}
.benefits__panel-header { margin-bottom: 32px; }
.benefits__panel-header h3 { margin: 12px 0 8px; font-size: 1.3rem; }
.benefits__panel-header p  { color: var(--clr-grey-txt); }
.panel-icon { font-size: 2.4rem; }

.benefits__list { list-style: none; display: flex; flex-direction: column; gap: 24px; flex: 1; }
.benefits__list li { display: flex; gap: 16px; align-items: flex-start; }
.benefit-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.benefits__list strong { display: block; margin-bottom: 4px; }
.benefits__list p { color: var(--clr-grey-txt); font-size: .9rem; }

/* ── steps / steps_tabs ───────────────────────────────────────────────────── */
.hiw__tabs {
  display: flex; gap: 8px; justify-content: center; margin-bottom: 48px;
  border-bottom: 2px solid var(--clr-border); padding-bottom: 0;
}
.hiw__tab {
  background: none; border: none; cursor: pointer; font-family: var(--font-body);
  font-size: 1rem; font-weight: 700; padding: 14px 28px;
  color: var(--clr-grey-txt); border-bottom: 3px solid transparent; margin-bottom: -2px;
  transition: color var(--transition), border-color var(--transition);
}
.hiw__tab--active, .hiw__tab:hover {
  color: var(--clr-orange); border-bottom-color: var(--clr-orange);
}
.hiw__panel--hidden { display: none; }

.hiw__steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}
.hiw__step { text-align: center; position: relative; }
.hiw__step:not(:last-child)::after {
  content: '→'; position: absolute; right: -24px; top: 50px;
  font-size: 1.5rem; color: var(--clr-orange); font-weight: 700;
}
.hiw__step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--clr-orange); color: #fff;
  font-weight: 800; font-size: 1rem; margin-bottom: 20px;
}
.hiw__step img { margin: 0 auto 20px; width: 140px; height: 140px; object-fit: contain; }
.hiw__step h3  { margin-bottom: 10px; }
.hiw__step p   { color: var(--clr-grey-txt); font-size: .9rem; }

/* ── feature_grid ─────────────────────────────────────────────────────────── */
/* Column count comes from how many cards there are (capped at four), so a
   fourth value doesn't leave a hole in a row sized for three. */
.features__grid { display: grid; grid-template-columns: repeat(var(--cols, 3), 1fr); gap: 24px; }
.feature-card {
  padding: 32px 20px; background: var(--clr-grey-bg);
  border-radius: var(--radius-lg); border-bottom: 4px solid var(--clr-orange);
}
/* On a grey band the cards need to lift off it, and the accent moves to the
   top edge — the shape the retailer benefits have always had. */
.bg-grey .feature-card {
  background: #fff; border: 1px solid var(--clr-border);
  border-top: 4px solid var(--clr-orange); border-bottom: 0; padding: 32px 28px;
}
.feature-card__icon { font-size: 2rem; display: block; margin-bottom: 16px; }
.feature-card h3 { margin-bottom: 8px; }
.feature-card p  { font-size: .88rem; color: var(--clr-grey-txt); }

/* Panels: fewer, larger, dark — mission & vision rather than a list of traits. */
.features__grid--panels { grid-template-columns: repeat(2, 1fr); gap: 28px; }
.features__grid--panels .feature-card,
.bg-grey .features__grid--panels .feature-card {
  background: var(--clr-navy); color: #fff;
  padding: 48px 40px; position: relative; overflow: hidden; border-bottom: 0;
}
.features__grid--panels .feature-card__icon { font-size: 2.4rem; }
.features__grid--panels .feature-card h3 { font-size: 1.4rem; color: var(--clr-orange); margin-bottom: 12px; }
.features__grid--panels .feature-card p  { font-size: 1rem; line-height: 1.75; opacity: .85; position: relative; z-index: 1; }
.feature-card__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .08; z-index: 0;
}

/* ── testimonials ─────────────────────────────────────────────────────────── */
.testimonials__grid {
  display: grid; grid-template-columns: repeat(var(--cols, 4), 1fr); gap: 24px;
}
.testimonial-card {
  background: #fff; border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 16px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-card__stars { color: var(--clr-orange); font-size: 1rem; letter-spacing: 2px; }
.testimonial-card blockquote p { color: var(--clr-grey-txt); font-size: .92rem; line-height: 1.65; flex: 1; }
.testimonial-card footer { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial-card__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--clr-orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; flex-shrink: 0;
}
.testimonial-card__author { display: block; font-weight: 700; font-size: .9rem; }
.testimonial-card__role   { font-size: .8rem; color: var(--clr-grey-txt); }

/* ── blog_preview ─────────────────────────────────────────────────────────── */
.blog-preview__grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 28px;
}
.blog-card {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-card__img-wrap img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  transition: transform .4s ease;
}
.blog-card:hover .blog-card__img-wrap img { transform: scale(1.04); }
.blog-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; gap: 8px; }
.blog-card__date { font-size: .78rem; color: var(--clr-grey-txt); }
.blog-card__body h3 { font-size: 1rem; line-height: 1.4; }
.blog-card__body h3 a { color: var(--clr-navy); }
.blog-card__body h3 a:hover { color: var(--clr-orange); }
.blog-card__body p { color: var(--clr-grey-txt); font-size: .88rem; flex: 1; }
.blog-card__link { font-size: .88rem; font-weight: 700; color: var(--clr-orange); margin-top: 8px; }

/* ── blog_list ────────────────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card__body h2 { font-size: 1.05rem; line-height: 1.4; }
.blog-card__body h2 a { color: var(--clr-navy); }
.blog-card__body h2 a:hover { color: var(--clr-orange); }
.blog-empty { text-align: center; padding: 80px 0; color: var(--clr-grey-txt); }
.blog-empty p:first-child { font-size: 2rem; margin-bottom: 16px; }

.pagination { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; }
.pagination__btn {
  min-width: 38px; height: 38px; padding: 0 10px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px; font-size: .88rem; font-weight: 700; text-decoration: none;
  background: var(--clr-white); border: 1px solid var(--clr-border);
  color: var(--clr-navy); transition: all .15s;
}
.pagination__btn.active { background: var(--clr-orange); color: #fff; border-color: var(--clr-orange); }
.pagination__btn:hover:not(.active) { border-color: var(--clr-orange); color: var(--clr-orange); }

/* ── cta_band ─────────────────────────────────────────────────────────────── */
.download-cta {
  background: linear-gradient(135deg, #FFF5EE 0%, #FFE8D6 100%);
}
.download-cta__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.download-cta__copy h2 { margin: 12px 0 20px; }
.download-cta__copy p  { color: var(--clr-grey-txt); max-width: 480px; }
.download-cta__badges  { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 16px; }
.download-cta__note    { font-size: .82rem; color: var(--clr-grey-txt); }
.download-cta__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* Centred variant: no image, one narrow column, buttons under the copy. */
.download-cta__centred { max-width: 640px; }
.download-cta__centred .download-cta__copy p { color: var(--clr-grey-txt); max-width: none; }
.download-cta__centred .download-cta__actions,
.download-cta__centred .download-cta__badges { justify-content: center; }
.download-cta__centred h2 { margin-bottom: 16px; }
.download-cta__visual img {
  width: 100%; max-width: 420px; margin-inline: auto;
  filter: drop-shadow(0 24px 48px rgba(255,102,0,.15));
}

/* ── contact_form ─────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.contact-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .field-group { margin-bottom: 18px; }
.contact-form label { display: block; font-size: .85rem; font-weight: 700; margin-bottom: 6px; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--clr-border); border-radius: var(--radius);
  font-family: var(--font-body); font-size: .95rem;
}

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info__card {
  background: var(--clr-grey-bg); border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid var(--clr-border);
}
.contact-info__card h3 { margin-bottom: 16px; font-size: 1rem; }
.contact-info__card--cta { background: var(--clr-navy); color: #fff; border-color: transparent; }
.contact-info__card--cta h3, .contact-info__card--cta p { color: #fff; }
.contact-info__card--cta p { opacity: .8; font-size: .9rem; }

.contact-channels { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.contact-channels li { display: flex; gap: 14px; align-items: flex-start; }
.contact-channels li > span { font-size: 1.4rem; flex-shrink: 0; }
.contact-channels strong { display: block; font-size: .82rem; color: var(--clr-grey-txt); margin-bottom: 2px; }
.contact-channels a { font-weight: 600; color: var(--clr-navy); }

.alert-success {
  background: #E8F5E9; color: #1B5E20; border-left: 4px solid #4CAF50;
  padding: 14px 18px; border-radius: 8px; margin-bottom: 20px; font-weight: 600;
}
.alert-error {
  background: #FFEBEE; color: #C62828; border-left: 4px solid #E53935;
  padding: 14px 18px; border-radius: 8px; margin-bottom: 20px;
}

/* The retailer lead form stands alone rather than beside the channels. */
.lead-form__wrap { max-width: 640px; }
.lead-form { background: var(--clr-grey-bg); padding: 36px; border-radius: var(--radius-lg); }
.lead-form .field-group { margin-bottom: 16px; }
.lead-form label { display: block; font-size: .85rem; font-weight: 700; margin-bottom: 6px; }
.lead-form input, .lead-form textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--clr-border); border-radius: var(--radius);
  font-family: var(--font-body); font-size: .95rem;
}
.lead-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── pricing_table ────────────────────────────────────────────────────────── */
.pricing-grid { display: grid; gap: 24px; align-items: stretch; max-width: 1000px; margin-inline: auto; }
.pricing-card {
  background: var(--clr-white); border: 2px solid var(--clr-border);
  border-radius: var(--radius-lg); padding: 32px 28px; position: relative;
  transition: box-shadow .2s, transform .2s; display: flex; flex-direction: column;
}
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pricing-card--featured {
  border-color: var(--clr-orange);
  box-shadow: 0 8px 32px rgba(255,102,0,.18);
  transform: translateY(-8px);
}
.pricing-card--featured:hover { transform: translateY(-12px); }
.pricing-card__ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--clr-orange); color: #fff;
  font-size: .75rem; font-weight: 800; padding: 4px 16px;
  border-radius: 20px; white-space: nowrap;
}
.pricing-card__icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.pricing-card__header h2 { font-size: 1.3rem; margin-bottom: 6px; }
.pricing-card__desc { font-size: .85rem; color: var(--clr-grey-txt); line-height: 1.55; }
.pricing-card__price { margin: 18px 0 24px; }

.price { display: flex; align-items: baseline; gap: 2px; }
.price__currency { font-size: 1.2rem; font-weight: 800; color: var(--clr-orange); }
.price__amount { font-size: 3rem; font-weight: 800; line-height: 1; color: var(--clr-navy); }
.price__period { font-size: .9rem; color: var(--clr-grey-txt); margin-left: 4px; }
.price__monthly-note { font-size: .78rem; color: var(--clr-grey-txt); margin-top: 6px; }

.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.feature-item { display: flex; align-items: flex-start; gap: 10px; font-size: .875rem; line-height: 1.4; color: var(--clr-navy); }
.feature-check { flex-shrink: 0; width: 18px; font-weight: 800; color: var(--clr-orange); }

.pricing-trust {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap; margin-top: 40px;
  font-size: .82rem; color: var(--clr-grey-txt);
}
.pricing-note { margin-top: 16px; font-size: .82rem; color: var(--clr-grey-txt); }

/* ── faq_list ─────────────────────────────────────────────────────────────── */
.faq-search-wrap {
  background: var(--clr-white); padding: 32px 0 0;
  border-bottom: 1px solid var(--clr-border); box-shadow: var(--shadow-sm);
}
.faq-search__field { position: relative; max-width: 640px; margin-inline: auto; }
.faq-search__icon {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: var(--clr-grey-txt); pointer-events: none;
}
.faq-search__input {
  width: 100%; padding: 14px 44px 14px 48px;
  border: 2px solid var(--clr-border); border-radius: var(--radius);
  font-size: 1rem; font-family: var(--font-body); background: var(--clr-grey-bg);
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.faq-search__input:focus {
  border-color: var(--clr-orange); box-shadow: 0 0 0 3px rgba(255,102,0,.12); background: #fff;
}
.faq-search__clear {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; font-size: 1rem;
  color: var(--clr-grey-txt); padding: 4px 8px; border-radius: 50%;
}
.faq-search__count {
  text-align: center; font-size: .82rem; color: var(--clr-grey-txt);
  margin: 8px 0 0; min-height: 20px;
}

.faq-tabs-wrap { background: var(--clr-white); border-bottom: 1px solid var(--clr-border); }
.faq-tabs { display: flex; gap: 4px; overflow-x: auto; padding: 12px 0 0; scrollbar-width: none; }
.faq-tabs::-webkit-scrollbar { display: none; }
.faq-tab {
  display: flex; align-items: center; gap: 6px;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: .9rem; font-weight: 600;
  padding: 10px 18px; color: var(--clr-grey-txt);
  border-bottom: 3px solid transparent; margin-bottom: -1px;
  white-space: nowrap; border-radius: 8px 8px 0 0;
  transition: color .15s, border-color .15s, background .15s;
}
.faq-tab:hover, .faq-tab--active { color: var(--clr-orange); border-bottom-color: var(--clr-orange); background: #FFF5EE; }
.faq-tab__count {
  background: var(--clr-grey-bg); color: var(--clr-grey-txt);
  font-size: .75rem; font-weight: 700; padding: 2px 7px; border-radius: 20px;
}
.faq-tab--active .faq-tab__count { background: rgba(255,102,0,.15); color: var(--clr-orange); }

/* A short list on a page that is mostly something else. */
.container--narrow { max-width: 760px; }

.faq-body__inner { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.faq-accordion { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--clr-border); }
.faq-item:first-of-type { border-top: 1px solid var(--clr-border); }
.faq-item__heading { margin: 0; font-size: 1rem; font-weight: inherit; }
.faq-item__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 22px 4px; background: none; border: none; cursor: pointer;
  font-family: var(--font-body); text-align: left; transition: color .15s;
}
.faq-item__trigger:hover { color: var(--clr-orange); }
.faq-item__question { font-size: 1rem; font-weight: 700; color: inherit; flex: 1; line-height: 1.4; }
.faq-item__icon { flex-shrink: 0; color: var(--clr-orange); transition: transform .2s; }
.faq-item__trigger[aria-expanded="true"] .faq-item__icon { transform: rotate(180deg); }
.faq-item__panel[hidden] { display: none; }
.faq-item__answer { padding: 0 4px 24px; color: var(--clr-grey-txt); font-size: .95rem; line-height: 1.75; }
.faq-inline-cta { display: inline-block; margin-top: 12px; font-weight: 700; font-size: .88rem; color: var(--clr-orange); }
/* The empty state is hidden until the filters actually empty the list. The
   [hidden] guard is not optional: an author `display: flex` beats the browser's
   own [hidden] rule, so without it this panel sits above every list, always. */
.faq-no-results {
  text-align: center; padding: 64px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.faq-no-results[hidden] { display: none; }
.faq-no-results span { font-size: 2.5rem; }

.faq-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 94px; }
.faq-sidebar__card {
  background: var(--clr-grey-bg); border-radius: var(--radius-lg); padding: 28px;
  display: flex; flex-direction: column; gap: 10px; border: 1px solid var(--clr-border);
}
.faq-sidebar__card--orange { background: var(--clr-orange); color: #fff; border-color: transparent; }
.faq-sidebar__card--orange h3, .faq-sidebar__card--orange p { color: #fff; }
.faq-sidebar__card h3 { font-size: 1rem; margin: 4px 0; }
.faq-sidebar__card p { font-size: .88rem; color: var(--clr-grey-txt); }
.faq-sidebar__emoji { font-size: 2rem; }

/* ── page_body ────────────────────────────────────────────────────────────── */
.page-body { max-width: 820px; margin-inline: auto; }
.page-body h2 { font-size: 1.4rem; margin: 32px 0 12px; color: var(--clr-navy); }
.page-body h3 { font-size: 1.1rem; margin: 24px 0 10px; color: var(--clr-navy); }
.page-body p  { color: var(--clr-grey-txt); line-height: 1.8; margin-bottom: 16px; }
.page-body ul, .page-body ol {
  padding-left: 24px; margin-bottom: 16px;
  color: var(--clr-grey-txt); line-height: 1.75;
}
.page-body li { margin-bottom: 6px; }
.page-body a  { color: var(--clr-orange); }

/* ── video ────────────────────────────────────────────────────────────────── */
.video-section { max-width: 760px; }
.video-section h2 { margin-bottom: 32px; }
.video-embed {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
}
.video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* ── partner_strip ────────────────────────────────────────────────────────── */
.partner-strip {
  background: var(--clr-orange);
  padding: 56px 0;
}
.partner-strip__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.partner-strip__inner h2 { color: #fff; font-size: 2rem; margin-bottom: 10px; }
.partner-strip__inner p  { color: rgba(255,255,255,.9); max-width: 560px; }
.partner-strip__actions  { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; align-items: center; }
.partner-strip--navy { background: var(--clr-navy); }
.partner-strip--navy p { color: rgba(255,255,255,.75); }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats__grid { grid-template-columns: repeat(2,1fr); }
  .testimonials__grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .contact-grid      { grid-template-columns: 1fr; }
  .contact-form .field-row { grid-template-columns: 1fr; }
  .lead-form__row    { grid-template-columns: 1fr; }
  .faq-body__inner   { grid-template-columns: 1fr; }
  .faq-sidebar       { position: static; flex-direction: row; flex-wrap: wrap; }
  .faq-sidebar__card { flex: 1 1 240px; }
  .hero__inner       { grid-template-columns: 1fr; text-align: center; }
  .hero__visual      { display: none; }
  .hero__ctas        { justify-content: center; }
  .hero__badges      { justify-content: center; }
  .hero__subtitle    { margin-inline: auto; }
  .about-snap__inner { grid-template-columns: 1fr; }
  .about-snap__badge { right: 10px; bottom: 10px; }
  .benefits__grid    { grid-template-columns: 1fr; }
  .hiw__steps        { grid-template-columns: 1fr; }
  .hiw__step::after  { display: none; }
  .features__grid    { grid-template-columns: 1fr 1fr; }
  .features__grid--panels { grid-template-columns: 1fr; }
  .download-cta__inner { grid-template-columns: 1fr; }
  .download-cta__visual { display: none; }
  .blog-preview__grid { grid-template-columns: 1fr 1fr; }
  .blog-grid          { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .faq-sidebar           { flex-direction: column; }
  .proof-bar__divider    { display: none; }
  .proof-bar__inner      { gap: 4px; }
  .proof-bar__item       { padding: 10px 16px; }
  .stats__grid           { grid-template-columns: 1fr; }
  .testimonials__grid    { grid-template-columns: 1fr; }
  .features__grid        { grid-template-columns: 1fr; }
  .blog-preview__grid    { grid-template-columns: 1fr; }
  .blog-grid             { grid-template-columns: 1fr; }
  .about-snap__highlights { gap: 20px; }
  .partner-strip__inner  { flex-direction: column; text-align: center; }
  .partner-strip__actions { justify-content: center; }
}
