/* ================================================
   BEVERON PRODUCT PAGE — Shared Styles
   Used across all product landing pages
   (Smart Lawyer Office, Legal Counsel, Debt
   Collection, CLM, IP Management, etc.)

   Requires: beveron-common.css loaded first
   ================================================ */

/* --- PRODUCT HERO (Unified Section) --- */
.prod-hero {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}
.prod-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), #00b4d8 60%, transparent);
}
.prod-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 0;
}

/* Breadcrumb (inside hero) */
.prod-hero .prod-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 36px;
}
.prod-hero .prod-breadcrumb a {
  color: var(--text-tertiary);
  text-decoration: none;
  transition: color 0.2s;
}
.prod-hero .prod-breadcrumb a:hover { color: var(--accent-cyan); }
.prod-hero .prod-breadcrumb .bc-sep {
  color: var(--border-focus);
  font-size: 0.45rem;
}
.prod-hero .prod-breadcrumb .bc-current {
  color: var(--text-secondary);
  font-weight: 600;
}

/* Hero content */
.prod-hero .hero-content {
  max-width: 800px;
}
.prod-hero .badge-label {
  margin-bottom: 24px;
}
.prod-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.prod-hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent-cyan), #00b4d8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.prod-hero .hero-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 660px;
}
.prod-hero .hero-desc strong {
  color: var(--text-primary);
}

/* CTAs */
.prod-hero .hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.prod-hero .hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--accent-cyan);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-sans);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 6px 20px -4px rgba(0, 132, 200, 0.35);
}
.prod-hero .hero-cta-primary:hover {
  background: var(--accent-cyan-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -4px rgba(0, 132, 200, 0.4);
  color: #fff;
  text-decoration: none;
}
.prod-hero .hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-focus);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
}
.prod-hero .hero-cta-secondary:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  transform: translateY(-2px);
  text-decoration: none;
}

/* Trust stats row (bottom of hero, integrated) */
.prod-hero-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-subtle);
}
.prod-hero-trust .ts-item {
  padding: 24px 20px;
  text-align: center;
  transition: background 0.2s;
}
.prod-hero-trust .ts-item:not(:last-child) {
  border-right: 1px solid var(--border-subtle);
}
.prod-hero-trust .ts-item:hover {
  background: rgba(0, 132, 200, 0.02);
}
.prod-hero-trust .ts-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-cyan);
  font-family: var(--font-mono);
  line-height: 1;
  margin-bottom: 6px;
}
.prod-hero-trust .ts-label {
  font-size: 0.72rem;
  color: var(--text-tertiary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* --- V5 HERO (Split Layout with Product Image) --- */
.hero-v5 {
  background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 40%, #f0f9ff 100%);
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}
.hero-v5::after {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 132, 200, 0.06), transparent 70%);
  pointer-events: none;
}
.hero-v5-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-v5 .hbc {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 32px;
}
.hero-v5 .hbc a { color: #6b7280; text-decoration: none; transition: color 0.2s; }
.hero-v5 .hbc a:hover { color: #0084c8; }
.hero-v5 .hbc .sp { color: #cbd5e1; font-size: 0.45rem; }
.hero-v5 .hbc .cur { color: #4b5563; font-weight: 600; }
.hero-v5 .hbadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e0f2fe;
  border: 1px solid rgba(0, 132, 200, 0.2);
  border-radius: 100px;
  padding: 7px 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0084c8;
  margin-bottom: 24px;
}
.hero-v5 h1 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 800;
  color: #111827;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}
.hero-v5 h1 .hl {
  background: linear-gradient(135deg, #0084c8, #00b4d8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-v5 .hdsc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-v5 .hdsc strong { color: #111827; }
.hero-v5 .hctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-v5 .cp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: #0084c8;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 6px 20px -4px rgba(0, 132, 200, 0.35);
}
.hero-v5 .cp:hover { background: #006b9f; transform: translateY(-2px); color: #fff; text-decoration: none; }
.hero-v5 .cs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: #fff;
  color: #111827;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
}
.hero-v5 .cs:hover { border-color: #0084c8; color: #0084c8; text-decoration: none; }
.hero-v5 .hstats { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-v5 .hst {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 0.85rem;
  color: #4b5563;
  font-weight: 500;
}
.hero-v5 .hst strong {
  color: #0084c8;
  font-weight: 800;
  font-size: 1rem;
  font-family: 'JetBrains Mono', monospace;
}
.hero-v5 .hst:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 16px;
  background: #e2e8f0;
  margin-left: 24px;
  display: inline-block;
  vertical-align: middle;
}
.hero-v5-visual { position: relative; display: flex; justify-content: center; }
.hero-v5-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- OVERVIEW SECTION FIXES --- */
.sec-heading {
  font-family: 'Inter', sans-serif !important;
}
.overview-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: #0084c8;
  border: 2px solid #0084c8;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  margin-top: 20px;
}
.overview-cta:hover {
  background: #0084c8;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -4px rgba(0, 132, 200, 0.35);
}
.prod-section-img--tall {
  min-height: 420px;
}
.prod-section-img--tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- PRODUCT NAV STRIP (Custom Design, No Images) --- */
.prod-nav-strip {
  background: var(--bg-dark);
  padding: 32px 24px;
}
.prod-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.prod-nav-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.prod-nav-card:hover {
  border-color: var(--accent-cyan);
  background: rgba(0, 132, 200, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px -4px rgba(0, 132, 200, 0.15);
}
.prod-nav-card .pnc-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(0, 132, 200, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.prod-nav-card .pnc-icon i { font-size: 1.2rem; color: var(--accent-cyan); }
.prod-nav-card .pnc-text { flex: 1; min-width: 0; }
.prod-nav-card .pnc-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 2px;
  display: block;
}
.prod-nav-card .pnc-desc {
  font-size: 0.72rem;
  color: var(--text-on-dark-muted);
  display: block;
  line-height: 1.3;
}
.prod-nav-card .pnc-arrow {
  color: var(--text-on-dark-muted);
  font-size: 0.75rem;
  transition: all 0.2s;
  flex-shrink: 0;
}
.prod-nav-card:hover .pnc-arrow {
  color: var(--accent-cyan);
  transform: translateX(3px);
}
.prod-nav-card.active {
  border-color: var(--accent-cyan);
  background: rgba(0, 132, 200, 0.12);
}

/* --- CLIENT LOGO MARQUEE --- */
.clients-section {
  background: var(--bg-alt);
  padding: 48px 0;
  overflow: hidden;
}
.clients-header {
  text-align: center;
  margin-bottom: 32px;
}
.clients-header p {
  font-weight: 700;
  color: var(--text-tertiary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.clients-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.clients-marquee::before,
.clients-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.clients-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-alt), transparent);
}
.clients-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-alt), transparent);
}
.marquee-track {
  display: flex;
  animation: marqueeScroll 50s linear infinite;
  width: max-content;
}
.marquee-slide {
  height: 72px;
  width: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  flex-shrink: 0;
}
.marquee-slide img {
  max-width: 130px;
  max-height: 56px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  transition: all 0.3s;
}
.marquee-slide img:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.08);
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- WHY CHOOSE CARD GRID --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.why-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all 0.3s ease;
}
.why-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -6px rgba(0, 132, 200, 0.1);
}
.why-card .why-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--accent-cyan-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.why-card .why-icon i { color: var(--accent-cyan); font-size: 1.2rem; }
.why-card h4 { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.why-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; margin: 0; }

/* --- SOLUTIONS / USE CASES --- */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.solution-tile {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  transition: all 0.3s ease;
}
.solution-tile:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px -6px rgba(0, 132, 200, 0.1);
}
.solution-tile .sol-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-cyan-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.solution-tile .sol-icon i { color: var(--accent-cyan); font-size: 1.3rem; }
.solution-tile p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5; margin: 0; }
.solution-tile p strong { color: var(--text-primary); }

/* --- CTA BANNER --- */
.cta-banner {
  background: linear-gradient(135deg, var(--accent-cyan), #006b9f);
  padding: 70px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.cta-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.cta-banner p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.cta-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 48px;
  background: #ffffff;
  color: var(--accent-cyan-dark);
  border: none;
  border-radius: 100px;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}
.cta-banner-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  color: var(--accent-cyan-dark);
  text-decoration: none;
}

/* --- FEATURES (Split Layout with Image) --- */
.feature-split-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 32px;
  align-items: stretch;
  margin-top: 50px;
}
.feature-split-img {
  position: sticky;
  top: 100px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.06);
  height: 100%;
  min-height: 300px;
  align-self: start;
}
.feature-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feature-individual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  align-content: start;
}
.feature-individual-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 10px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.feature-individual-card:hover {
  border-color: var(--accent-cyan);
  background: rgba(0, 132, 200, 0.02);
  box-shadow: 0 4px 12px -2px rgba(0, 132, 200, 0.08);
}
.feature-individual-card .fi-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--accent-cyan-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  color: var(--accent-cyan);
}
.feature-individual-card h4 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.25;
  font-family: 'Inter', sans-serif;
}

/* --- TAB SYSTEM --- */
.tab-nav {
  display: flex;
  gap: 4px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  padding: 4px;
  margin-bottom: 40px;
  overflow-x: auto;
}
.tab-btn {
  padding: 14px 24px;
  background: transparent;
  border: none;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: var(--font-sans);
}
.tab-btn:hover { color: var(--text-primary); }
.tab-btn.active {
  background: var(--bg-surface);
  color: var(--text-primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tab-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.tab-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -6px rgba(0, 132, 200, 0.1);
}
.tab-card .tc-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-cyan-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.tab-card .tc-icon i { font-size: 1.3rem; color: var(--accent-cyan); }
.tab-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.tab-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; margin: 0; }

/* --- FAQ ACCORDION --- */
.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item:hover { border-color: var(--border-focus); }
.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
  color: var(--text-primary);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-chevron {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item[open] summary .faq-chevron { transform: rotate(180deg); color: var(--accent-cyan); }
.faq-item[open] { border-color: var(--accent-cyan); }
.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* --- PRICING CARDS --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.pricing-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  border-color: var(--border-focus);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.1);
}
.pricing-card.featured {
  border-color: var(--accent-cyan);
  box-shadow: 0 12px 40px -6px rgba(0, 132, 200, 0.2);
  position: relative;
}
.pricing-card.featured::after {
  /* content: "MOST POPULAR"; */
  position: absolute;
  top: 20px;
  right: -32px;
  background: var(--accent-cyan);
  color: #fff;
  padding: 6px 44px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  transform: rotate(45deg);
  z-index: 2;
}
.pricing-img-wrap {
  width: 100%;
  height: 230px;
  overflow: hidden;
}
.pricing-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pricing-body {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pricing-tier {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 6px;
}
.pricing-body h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.pricing-body .pricing-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.5;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 16px;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
  line-height: 1.4;
}
.pricing-features li i {
  color: var(--accent-cyan);
  margin-top: 3px;
  flex-shrink: 0;
}
.pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: var(--text-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.pricing-cta:hover {
  background: var(--accent-cyan);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}
.pricing-card.featured .pricing-cta { background: var(--accent-cyan); }
.pricing-card.featured .pricing-cta:hover { background: var(--accent-cyan-dark); }

/* --- SCREENSHOT GALLERY (Accordion/Expand) --- */
.ss-gallery {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 5px;
  padding: 0 15px;
  height: 450px;
}
.ss-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.5s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  flex: 1;
}
.ss-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.1);
  filter: blur(4px);
  transition: filter 0.5s ease, transform 0.5s ease;
}
.ss-item .ss-caption {
  position: absolute;
  color: white;
  font-weight: 700;
  font-size: 16px;
  z-index: 2;
  white-space: nowrap;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  pointer-events: none;
  transition: opacity 0.3s ease;
}
@media (min-width: 992px) {
  .ss-gallery { flex-direction: row; }
  .ss-item .ss-caption {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
  }
  .ss-item.ss-active,
  .ss-item:hover { flex: 20; }
  .ss-item.ss-active img,
  .ss-item:hover img {
    filter: blur(0);
    transform: scale(1);
  }
  .ss-item.ss-active .ss-caption,
  .ss-item:hover .ss-caption {
    top: auto;
    left: 0;
    bottom: 0;
    transform: none;
    padding: 20px;
    font-size: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    width: 100%;
  }
  .ss-gallery:hover .ss-item:not(:hover) { flex: 1; }
  .ss-gallery:hover .ss-item:not(:hover) img {
    filter: blur(4px);
    transform: scale(1.1);
  }
  .ss-gallery:hover .ss-item:not(:hover) .ss-caption {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    bottom: auto;
    background: transparent;
    padding: 0;
    font-size: 16px;
    width: auto;
  }
}
@media (max-width: 991px) {
  .ss-gallery { flex-direction: column; height: auto; }
  .ss-item { height: 60px; flex: none; }
  .ss-item.ss-active { height: auto; aspect-ratio: 16/9; width: 100%; }
  .ss-item.ss-active img { filter: blur(0); transform: scale(1); }
  .ss-item .ss-caption {
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex; align-items: center; padding: 0 20px;
    background: rgba(0, 0, 0, 0.4); transform: none;
  }
  .ss-item.ss-active .ss-caption {
    top: auto; bottom: 0; height: auto; display: block;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 20px;
  }
}

/* --- VIDEO SPLIT SECTION --- */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.video-embed-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-subtle);
}
.video-embed-wrap video { width: 100%; display: block; }

/* --- SECTION IMAGE WRAPPER --- */
.prod-section-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 12px 32px -6px rgba(0, 0, 0, 0.08);
}
.prod-section-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.prod-section-img--tall {
  height: 420px;
}
.prod-section-img--tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- UTILITY --- */
.section-alt-bg { background: var(--bg-alt); }
.mx-auto-sm { max-width: 500px; margin-left: auto; margin-right: auto; }
.mx-auto-md { max-width: 640px; margin-left: auto; margin-right: auto; }

/* --- BLOG / INSIGHTS SECTION --- */
.blog-insights {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px 48px;
}
.blog-insights-header {
  text-align: center;
  margin-bottom: 40px;
}
.blog-insights-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #0f172a;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.blog-insights-header p {
  font-size: 0.95rem;
  color: #64748b;
  max-width: 520px;
  margin: 0 auto;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
/* Restyle getwork.php cards inside #lnews */
#lnews {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
#lnews .card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
#lnews .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}
#lnews .card-img-top-link {
  display: block;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
#lnews .card-img-top {
  width: 100% !important;
  height: 200px !important;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
#lnews .card:hover .card-img-top {
  transform: scale(1.04);
}
#lnews .card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(to bottom, #fafafe, #ffffff);
}
#lnews .card-body h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.45;
  margin: 0 0 12px;
  height: auto;
  max-height: 66px;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}
#lnews .card-body hr {
  border: none;
  border-top: 1px solid #f1f5f9;
  margin: 0 0 12px;
}
#lnews .card-body p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: #64748b;
  margin: 0 0 16px;
  max-height: 110px;
  overflow: hidden;
  flex: 1;
}
#lnews .card-body a {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0084c8;
  text-decoration: none;
}
#lnews .card-body a:hover { color: #006b9f; }
.blog-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
  border-color: #cbd5e1;
}
.blog-card-img {
  display: block;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.04);
}
.blog-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(to bottom, #fafafe, #ffffff);
}
.blog-card-body h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.45;
  margin: 0 0 12px;
  height: auto;
  max-height: 66px;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}
.blog-card-body hr {
  border: none;
  border-top: 1px solid #f1f5f9;
  margin: 0 0 12px;
}
.blog-card-body p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: #64748b;
  margin: 0 0 16px;
  max-height: 110px;
  overflow: hidden;
  flex: 1;
}
.blog-card-body .blog-read-more {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0084c8;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.blog-card-body .blog-read-more:hover {
  gap: 8px;
  color: #006b9f;
}
.blog-view-more {
  text-align: center;
  margin-top: 32px;
}
.blog-view-more a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #ffffff;
  color: #0084c8;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  transition: all 0.25s;
}
.blog-view-more a:hover {
  border-color: #0084c8;
  color: #006b9f;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 132, 200, 0.12);
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
  .prod-hero-inner { padding: 36px 20px 0; }
  .prod-hero h1 { font-size: clamp(1.8rem, 5vw, 2.4rem); }
  .prod-hero .hero-desc { font-size: 1rem; max-width: 100%; }
  .prod-hero-trust { grid-template-columns: repeat(2, 1fr); }
  .prod-hero-trust .ts-item:nth-child(2) { border-right: none; }
  .prod-hero-trust .ts-item:nth-child(1),
  .prod-hero-trust .ts-item:nth-child(2) { border-bottom: 1px solid var(--border-subtle); }
  .prod-nav-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .solutions-grid { grid-template-columns: 1fr 1fr; }
  .feature-split-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .feature-split-img {
    position: static;
    max-width: 100%;
    min-height: 300px;
  }
  .feature-individual-grid { grid-template-columns: repeat(3, 1fr); }
  .tab-cards-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .video-grid { grid-template-columns: 1fr; gap: 40px; }
  /* V5 Hero tablet */
  .hero-v5-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  /* Blog grid tablet */
  .blog-grid, #lnews { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 767px) {
  /* V5 Hero mobile: hide image */
  .hero-v5-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 40px 20px 32px;
  }
  .hero-v5-visual { display: none; }
  .hero-v5 .hctas { flex-direction: column; }
  .hero-v5 .cp, .hero-v5 .cs { width: 100%; justify-content: center; }
  .hero-v5 .hstats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }
  .hero-v5 .hst:not(:last-child)::after { display: none; }
  .hero-v5 .hst { font-size: 0.78rem; }
  .hero-v5 .hst strong { font-size: 0.88rem; }
  /* Feature grid: 2 per row on small tablets */
  .feature-individual-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-split-img { display: none; }
}
@media (max-width: 640px) {
  .prod-hero-inner { padding: 28px 16px 0; }
  .prod-hero .hero-cta-row { flex-direction: column; }
  .prod-hero .hero-cta-primary,
  .prod-hero .hero-cta-secondary { width: 100%; justify-content: center; }
  .prod-nav-grid { grid-template-columns: 1fr; }
  .why-grid, .solutions-grid { grid-template-columns: 1fr 1fr; }
  .why-card { padding: 20px 16px; }
  .solution-tile { padding: 20px 16px; }
  .tab-cards-grid { grid-template-columns: 1fr; }
  .tab-nav { gap: 2px; }
  .tab-btn { padding: 10px 14px; font-size: 0.8rem; }
  .prod-hero-trust { grid-template-columns: repeat(2, 1fr); }
  .prod-hero .prod-breadcrumb { font-size: 0.72rem; margin-bottom: 24px; }
  .prod-section-img { display: none; }
  /* Blog grid mobile */
  .blog-grid, #lnews { grid-template-columns: 1fr; gap: 16px; }
  .blog-insights { padding: 48px 16px 32px; }
}

footer{
  margin-top: -140px !important;
}