/* Inner pages — GlobalVets V2 theme */

.page-hero2 {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 55%, #0d9488 100%);
  color: #fff;
  overflow: hidden;
}
.page-hero2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero2 .container { position: relative; z-index: 1; }
.page-hero2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #5eead4;
  margin-bottom: .85rem;
}
.page-hero2,
.page-hero2 h1,
.page-hero2 .page-hero2-desc,
.page-hero2 .page-hero2-eyebrow,
.page-hero2 p {
  color: #fff;
}
.page-hero2 h1 {
  font-family: var(--font-display, 'Poppins', sans-serif);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: .85rem;
}
.page-hero2-desc {
  color: rgba(255,255,255,.88) !important;
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto;
}
.page-hero2-eyebrow {
  color: #5eead4 !important;
}

.page-content2 {
  padding: 3.5rem 0;
}

.v2-card {
  background: #fff;
  border-radius: var(--radius-lg, 16px);
  border: 1px solid var(--border, #e2e8f0);
  box-shadow: 0 4px 24px rgba(15,23,42,.06);
  padding: 2rem;
}

.v2-form .form-label {
  font-weight: 600;
  font-size: .88rem;
  color: var(--dark, #0f172a);
}
.v2-form .form-control,
.v2-form .form-select {
  border-radius: 10px;
  border-color: var(--border, #e2e8f0);
  padding: .65rem .9rem;
}
.v2-form .form-control:focus,
.v2-form .form-select:focus {
  border-color: var(--primary, #0d9488);
  box-shadow: 0 0 0 3px rgba(13,148,136,.15);
}

.cat2-grid-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  height: 100%;
}
.cat2-grid-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15,23,42,.1);
  color: inherit;
}
.cat2-grid-img {
  aspect-ratio: 1;
  background: var(--light-bg, #f8fafc);
  overflow: hidden;
}
.cat2-grid-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cat2-grid-body {
  padding: 1rem;
  text-align: center;
}
.cat2-grid-body h3 {
  font-size: .95rem;
  font-weight: 700;
  margin: 0;
  color: var(--dark);
}

.shop-toolbar2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.pagination2 .pagination {
  gap: .35rem;
}
.pagination2 .page-link {
  border-radius: 8px;
  color: var(--dark);
}

.flash-v2-wrap {
  position: fixed;
  top: 88px;
  left: 0;
  right: 0;
  z-index: 1080;
  pointer-events: none;
}
.flash-v2-wrap .alert {
  pointer-events: auto;
  max-width: 560px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(15,23,42,.15);
}

/* Account / auth */
.auth-card2 {
  background: #fff;
  border-radius: var(--radius-lg, 16px);
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(15,23,42,.08);
  padding: 2rem;
}
.auth-icon2 {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(13,148,136,.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

/* Product detail — image gallery */
.product-gallery {
  position: sticky;
  top: 88px;
}
.main-image-container {
  position: relative;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15,23,42,.08);
  aspect-ratio: 1;
  border: 1px solid var(--border, #e2e8f0);
}
.main-product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.image-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 12px;
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
}
.main-image-container:hover .image-controls {
  opacity: 1;
  pointer-events: auto;
}
.image-nav-btn {
  background: rgba(255,255,255,.95);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(15,23,42,.15);
  color: var(--dark, #0f172a);
}
.image-nav-btn:hover {
  background: var(--primary, #0d9488);
  color: #fff;
}
.thumbnail-gallery { margin-top: 12px; }
.thumbnails-wrapper {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 0;
  scroll-behavior: smooth;
}
.thumbnail-item {
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  background: #fff;
  transition: border-color .2s, transform .2s;
}
.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.thumbnail-item:hover,
.thumbnail-item.active {
  border-color: var(--primary, #0d9488);
}
.thumbnail-item.active {
  box-shadow: 0 2px 8px rgba(13,148,136,.25);
}

.pdp2-gallery {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--light-bg);
  border: 1px solid var(--border);
}
.pdp2-info h1 {
  font-family: var(--font-display, 'Poppins', sans-serif);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--dark);
}
.pdp2-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
}

/* FAQ */
.faq2-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: .75rem;
  overflow: hidden;
  background: #fff;
}
.faq2-item .accordion-button {
  font-weight: 600;
  color: var(--dark);
  padding: 1.1rem 1.25rem;
}
.faq2-item .accordion-button:not(.collapsed) {
  background: rgba(13,148,136,.06);
  color: var(--primary);
  box-shadow: none;
}

/* Blog / news */
.news-card2 {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  transition: box-shadow .2s, transform .2s;
}
.news-card2:hover {
  box-shadow: 0 12px 32px rgba(15,23,42,.1);
  transform: translateY(-3px);
}
.news-card2 img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.news-card2-body { padding: 1.25rem; }
.news-card2-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.news-card2-body h3 a {
  color: var(--dark);
  text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════
   PRACTICEFLOW™ HOMEPAGE SECTIONS
   ═══════════════════════════════════════════════════════════ */

/* ── Shared PF utilities ── */
.pf-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #0d9488;
  margin-bottom: .7rem;
}
.pf-eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px; height: 2px;
  background: #0d9488;
  border-radius: 2px;
}

/* ══════════════════════════════════════════════════
   SECTION 3 — The Shift: Old Way vs Globalvets Way
   ══════════════════════════════════════════════════ */
#pf-shift {
  position: relative;
  overflow: hidden;
}
.pf-shift-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}
.pf-shift-left {
  background: #1a1a2e;
  padding: 3.5rem 3rem 0;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pf-shift-right {
  background: linear-gradient(135deg, #0f2044 0%, #0f3460 60%, #0d4f6b 100%);
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pf-shift-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.pf-shift-badge-old { color: #f87171; }
.pf-shift-badge-new { color: #34d399; }
.pf-shift-pain-list {
  list-style: none;
  padding: 0; margin: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.pf-shift-pain-list li {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: rgba(255,255,255,.82);
  font-size: .97rem;
}
.pf-shift-pain-list li .pf-x {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(239,68,68,.2);
  border: 1px solid rgba(239,68,68,.4);
  display: flex; align-items: center; justify-content: center;
  color: #f87171;
  font-size: .65rem;
  flex-shrink: 0;
}
.pf-shift-bottom-banner {
  background: #c0392b;
  margin: 2rem -3rem 0;
  padding: 1.1rem 3rem;
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
}
.pf-shift-headline {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.pf-shift-sub {
  color: rgba(255,255,255,.78);
  font-size: .97rem;
  margin-bottom: 1.75rem;
  max-width: 400px;
}
.pf-shift-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 2rem;
}
.pf-shift-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .85rem;
  border-radius: 50px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(52,211,153,.3);
  color: #a7f3d0;
  font-size: .8rem;
  font-weight: 600;
}
.pf-shift-pill i { color: #34d399; font-size: .75rem; }
.pf-vs-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #0f172a;
  border: 3px solid #0d9488;
  color: #fff;
  font-size: .85rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  box-shadow: 0 0 0 6px rgba(13,148,136,.15);
}
@media(max-width:767px) {
  .pf-shift-inner { grid-template-columns: 1fr; }
  .pf-vs-badge { display: none; }
  .pf-shift-bottom-banner { margin: 1.5rem -1.5rem 0; padding: 1rem 1.5rem; }
  .pf-shift-left, .pf-shift-right { padding: 2.5rem 1.5rem; }
}

/* ══════════════════════════════════════════
   SECTION 4 — PracticeFlow™ Ecosystem
   ══════════════════════════════════════════ */
#pf-ecosystem {
  background: #f8fafc;
}
.pf-eco-hub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.pf-eco-center {
  width: 200px; height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f172a, #0f3460);
  border: 4px solid #0d9488;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.25rem;
  box-shadow: 0 0 0 12px rgba(13,148,136,.08), 0 8px 40px rgba(15,23,42,.25);
  flex-shrink: 0;
}
.pf-eco-center-brand {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #5eead4;
  margin-bottom: .2rem;
}
.pf-eco-center-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
}
.pf-eco-center-tagline {
  font-size: .62rem;
  color: rgba(255,255,255,.6);
  margin-top: .35rem;
  line-height: 1.4;
}
.pf-eco-spokes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 860px;
}
.pf-eco-spoke {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: .85rem;
  padding: 1.1rem .9rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(15,23,42,.05);
  transition: transform .2s, box-shadow .2s;
}
.pf-eco-spoke:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(15,23,42,.1);
}
.pf-eco-spoke-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0f2fe, #ccfbf1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .7rem;
  font-size: 1.1rem;
  color: #0f766e;
}
.pf-eco-spoke-label {
  font-size: .8rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
}
.pf-eco-flow-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  margin-top: .5rem;
}
.pf-eco-flow-pill {
  padding: .45rem 1.1rem;
  border-radius: 50px;
  background: #fff;
  border: 1.5px solid #0d9488;
  color: #0f766e;
  font-size: .8rem;
  font-weight: 700;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.pf-eco-flow-pill:hover {
  background: #0d9488;
  color: #fff;
}
@media(max-width:767px) {
  .pf-eco-spokes { grid-template-columns: repeat(2, 1fr); }
}

/* ════════════════════════════════════
   SECTION 5 — Why Choose PracticeFlow™
   ════════════════════════════════════ */
#pf-why { background: #fff; }
.pf-why-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.pf-why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: .85rem;
  border: 1.5px solid #f1f5f9;
  background: #fff;
  transition: border-color .2s, box-shadow .2s, transform .18s;
  cursor: default;
}
.pf-why-item:hover {
  border-color: #0d9488;
  box-shadow: 0 4px 16px rgba(13,148,136,.1);
  transform: translateX(4px);
}
.pf-why-num {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: #0d9488;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.pf-why-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.pf-why-text h6 {
  font-size: .92rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 .2rem;
}
.pf-why-text p {
  font-size: .81rem;
  color: #64748b;
  margin: 0;
  line-height: 1.55;
}

/* Right card */
.pf-why-card {
  background: linear-gradient(160deg, #0f2044 0%, #0d3660 55%, #0a4f6a 100%);
  border-radius: 1.5rem;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pf-why-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(13,148,136,.15);
  pointer-events: none;
}
.pf-why-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.pf-why-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.85);
}
.pf-why-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(15,34,68,.9) 100%);
}
.pf-why-card-body {
  padding: 2.25rem 2rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  height: 100%;
}
.pf-why-card-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #5eead4;
  margin-bottom: .5rem;
}
.pf-why-card h3 {
  font-size: 1.65rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.pf-why-card blockquote {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  font-style: italic;
  border-left: 3px solid #0d9488;
  padding: .5rem 0 .5rem .85rem;
  margin: 0 0 1.5rem;
  line-height: 1.6;
}
.pf-why-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-top: auto;
  margin-bottom: 1.5rem;
}
.pf-why-stat-box {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: .75rem;
  padding: .75rem .85rem;
  text-align: center;
}
.pf-why-stat-box strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: #5eead4;
  line-height: 1;
  margin-bottom: .2rem;
}
.pf-why-stat-box span {
  font-size: .72rem;
  color: rgba(255,255,255,.6);
}

/* ═══════════════════════════════════════════
   SECTION 6 — Built Around How Clinics Operate
   ═══════════════════════════════════════════ */
#pf-clinic-types { background: #f8fafc; }
.pf-clinic-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.pf-clinic-card {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(15,23,42,.08);
  background: #fff;
  transition: transform .2s, box-shadow .2s;
}
.pf-clinic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(15,23,42,.14);
}
.pf-clinic-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.pf-clinic-card-label {
  padding: .75rem .9rem;
  font-size: .87rem;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
}
.pf-clinic-banner {
  background: #0f3460;
  border-radius: 1rem;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.pf-clinic-banner p {
  color: rgba(255,255,255,.9);
  font-size: .97rem;
  font-weight: 600;
  margin: 0;
}
@media(max-width:991px) {
  .pf-clinic-grid { grid-template-columns: repeat(3, 1fr); }
}
@media(max-width:575px) {
  .pf-clinic-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════
   SECTION 7 — Flow Types Carousel (Owl, 5-wide desktop / 1.5 mobile)
   ══════════════════════════════════════════ */
#pf-flow-types { background: #fff; }
.pf-flow-types-scroll-wrap { position: relative; }
.pf-flow-types-owl .owl-dots { margin-top: 1.25rem; text-align: center; }
.pf-flow-types-owl .owl-dot span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  display: block;
  margin: 0 4px;
  transition: background .2s;
}
.pf-flow-types-owl .owl-dot.active span { background: #0e7490; }
.pf-flow-type-card {
  border-radius: 1.1rem;
  border: 1.5px solid #e2e8f0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 10px rgba(15,23,42,.05);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.pf-flow-type-card:hover {
  box-shadow: 0 4px 18px rgba(15,23,42,.1);
}
.pf-flow-type-header {
  padding: 1rem 1.1rem .85rem;
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.pf-flow-type-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,.55);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,.06);
}
.pf-flow-type-header-text { flex: 1; min-width: 0; }
.pf-flow-type-name {
  font-size: .95rem;
  font-weight: 800;
  margin: 0 0 .15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pf-flow-type-sub {
  font-size: .72rem;
  font-weight: 600;
  opacity: .72;
  white-space: nowrap;
}
.pf-flow-type-body {
  padding: .6rem 1.1rem .9rem;
  flex: 1;
}
.pf-flow-type-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.pf-flow-type-list li {
  font-size: .78rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: .45rem;
  line-height: 1.4;
}
.pf-flow-type-list li i {
  font-size: .55rem;
  flex-shrink: 0;
}
.pf-flow-type-footer {
  padding: .75rem 1.1rem;
  border-top: 1px solid #f1f5f9;
  display: flex;
  justify-content: center;
}
/* Per-flow accent colors */
.pf-flow-exam      { background: #dbeafe; color: #1d4ed8; }
.pf-flow-surgery   { background: #dcfce7; color: #15803d; }
.pf-flow-dental    { background: #f3e8ff; color: #7c3aed; }
.pf-flow-imaging   { background: #ffedd5; color: #c2410c; }
.pf-flow-treatment { background: #cffafe; color: #0e7490; }
.pf-flow-emergency { background: #fee2e2; color: #dc2626; }
.pf-flow-lab       { background: #d1fae5; color: #065f46; }
.pf-flow-kennel    { background: #fef9c3; color: #a16207; }
.pf-flow-mobile    { background: #e0e7ff; color: #4338ca; }

/* ═══════════════════════════════════════
   SECTION 8 — LaunchFlow™ Starter Clinic
   ═══════════════════════════════════════ */
#launchflow-starter { background: #f8fafc; }
.lf-starter-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
}
.lf-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  font-size: 2rem;
  font-weight: 200;
  color: #94a3b8;
}
.lf-starter-card {
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15,23,42,.08);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
}
.lf-starter-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}
.lf-starter-card-body {
  padding: 1.4rem 1.4rem 1rem;
  flex: 1;
}
.lf-starter-card-flow-name {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 .15rem;
}
.lf-starter-card-flow-sub {
  font-size: .78rem;
  color: #64748b;
  font-weight: 600;
  margin-bottom: .9rem;
}
.lf-starter-card-list {
  list-style: none;
  padding: 0; margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.lf-starter-card-list li {
  font-size: .83rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: .45rem;
}
.lf-starter-card-list li i {
  font-size: .65rem;
  color: #0d9488;
}
.lf-starter-tag {
  display: inline-block;
  padding: .35rem .85rem;
  border-radius: 50px;
  font-size: .76rem;
  font-weight: 700;
  background: #f0fdf4;
  color: #15803d;
  margin-bottom: .25rem;
}
@media(max-width:991px) {
  .lf-starter-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .lf-plus { padding: .25rem 0; font-size: 1.5rem; }
}

/* ═══════════════════════════════════════════════
   SECTION 9 — CapEx → Predictable Investment (revamped)
   ═══════════════════════════════════════════════ */
#pf-pricing-model {
  background: linear-gradient(160deg, #0a1628 0%, #0f2a4a 50%, #0a3d3a 100%);
  position: relative;
  overflow: hidden;
}
#pf-pricing-model::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(13,148,136,.1);
  pointer-events: none;
}
#pf-pricing-model::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(59,130,246,.07);
  pointer-events: none;
}
#pf-pricing-model .pf-eyebrow { color: #5eead4; }
#pf-pricing-model .pf-eyebrow::before { background: #5eead4; }
#pf-pricing-model .section-title { color: #fff; }
#pf-pricing-model .section-title span { color: #5eead4; }
.pf-pm-compare-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
}
.pf-pm-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.25rem;
  z-index: 2;
}
.pf-pm-vs-badge {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #0f172a;
  border: 2.5px solid #0d9488;
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 8px rgba(13,148,136,.12);
  flex-shrink: 0;
}
.pf-pm-card {
  border-radius: 1.5rem;
  padding: 2rem 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pf-pm-card-old {
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.1);
}
.pf-pm-card-new {
  background: rgba(13,148,136,.12);
  border: 1.5px solid rgba(13,148,136,.4);
  box-shadow: 0 0 40px rgba(13,148,136,.15);
}
.pf-pm-card-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .8rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  align-self: flex-start;
}
.pf-pm-card-old .pf-pm-card-badge {
  background: rgba(239,68,68,.12);
  color: #fca5a5;
  border: 1px solid rgba(239,68,68,.2);
}
.pf-pm-card-new .pf-pm-card-badge {
  background: rgba(52,211,153,.15);
  color: #6ee7b7;
  border: 1px solid rgba(52,211,153,.25);
}
.pf-pm-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #fff;
}
.pf-pm-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.pf-pm-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .92rem;
  padding: .6rem .75rem;
  border-radius: .65rem;
}
.pf-pm-card-old .pf-pm-list li {
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.03);
}
.pf-pm-card-new .pf-pm-list li {
  color: rgba(255,255,255,.9);
  background: rgba(13,148,136,.08);
}
.pf-pm-icon-x {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(239,68,68,.15);
  border: 1px solid rgba(239,68,68,.25);
  color: #f87171;
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem;
  flex-shrink: 0;
}
.pf-pm-icon-check {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(52,211,153,.15);
  border: 1px solid rgba(52,211,153,.3);
  color: #34d399;
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem;
  flex-shrink: 0;
}
.pf-pm-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  width: 100%;
  padding: 1.2rem 2rem;
  border-radius: 50px;
  background: linear-gradient(90deg, #0d9488, #0f766e);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  margin-top: 2.5rem;
  transition: opacity .2s, transform .2s;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255,255,255,.1);
}
.pf-pm-cta:hover { opacity: .9; color: #fff; transform: translateY(-2px); }
.pf-pm-cta i { font-size: .9rem; }
@media(max-width:767px) {
  .pf-pm-compare-wrap { grid-template-columns: 1fr; }
  .pf-pm-vs { padding: .75rem 0; }
}

/* ═══════════════════════════════════
   SECTION 10 — LaunchFlow CTA Strip
   ═══════════════════════════════════ */
.launchflow-strip {
  background: linear-gradient(135deg, #0f2044 0%, #0f3460 40%, #0d7a70 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.launchflow-strip::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(13,148,136,.12);
  pointer-events: none;
}
.launchflow-strip h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: .75rem;
}
.launchflow-strip p {
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
  margin-bottom: 0;
  max-width: 520px;
}

/* ════════════════════════════════════════
   Condensed Membership Plan Cards
   ════════════════════════════════════════ */
.plan-card-simple {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.plan-card-simple:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(15,23,42,.12);
}
.plan-card-simple.featured {
  border-color: #0d9488;
  background: linear-gradient(175deg, #f0fdf9 0%, #fff 60%);
  position: relative;
}
.plan-card-simple.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #0d9488;
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 50px;
  white-space: nowrap;
}
.plan-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1;
}
.plan-price sup { font-size: 1rem; vertical-align: super; }
.plan-price sub { font-size: .8rem; color: #64748b; font-weight: 500; }
.plan-perks {
  list-style: none;
  padding: 0; margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  flex: 1;
}
.plan-perks li {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .88rem;
  color: #334155;
}
.plan-perks li i { color: #0d9488; font-size: .85rem; }
.plan-perks li.pf-access {
  color: #0d9488;
  font-weight: 600;
}

/* ══════════════════════════════════════════
   Flows page — enhanced cards
   ══════════════════════════════════════════ */
.flow-page-hero {
  background: linear-gradient(135deg, #0f172a 0%, #0f3460 50%, #0d4f6b 100%);
  padding: 4.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.flow-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.flow-page-hero .container { position: relative; z-index: 1; }
.flow-page-hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: .75rem;
}
.flow-page-hero p { color: rgba(255,255,255,.82); max-width: 540px; margin: 0 auto; }
.flow-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem 1rem;
  border-radius: 50px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.9);
  font-size: .82rem;
  font-weight: 600;
}
.flow-stat-pill i { color: #5eead4; }
.flow-card-v2 {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 12px rgba(15,23,42,.06);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .2s, box-shadow .2s;
}
.flow-card-v2:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(15,23,42,.12);
  color: inherit;
}
.flow-card-v2-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #e2e8f0;
  display: flex; align-items: center; justify-content: center;
  color: #94a3b8;
  font-size: 2rem;
}
.flow-card-v2-img img { width: 100%; height: 100%; object-fit: cover; }
.flow-card-v2-header {
  padding: .7rem 1.1rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.flow-card-v2-body { padding: 1.1rem; flex: 1; display: flex; flex-direction: column; }
.flow-card-v2-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.flow-card-v2-body p { font-size: .84rem; color: #64748b; flex: 1; margin-bottom: .9rem; }
.flow-card-v2-footer {
  padding: .9rem 1.1rem;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flow-card-v2-count {
  font-size: .8rem;
  color: #64748b;
}
.flow-no-flows-card {
  background: #fff;
  border: 2px dashed #e2e8f0;
  border-radius: 1.25rem;
  padding: 3rem 2rem;
  text-align: center;
}
.flow-no-flows-card h3 { font-size: 1.1rem; font-weight: 700; color: #1e293b; margin-bottom: .5rem; }
.flow-no-flows-card p { color: #64748b; max-width: 380px; margin: 0 auto 1.5rem; }
.news-card2-body h3 a:hover { color: var(--primary); }
