/* ============================================================
   PEARL ESIGN — GLOBAL STYLESHEET
   Version: 1.0.0 | Brand: Enterprise Digital Signature Platform
   ============================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --primary:        #f3a34c;
  --primary-hover:  #e8923b;
  --primary-light:  rgba(243, 163, 76, 0.12);
  --secondary:      #f2a24d;
  --dark:           #102039;
  --dark-deep:      #0a1628;
  --text:           #6f7681;
  --white:          #ffffff;
  --light-bg:       #f8f9fa;
  --light-orange:   #fff8f0;
  --border:         #e8ecf0;
  --shadow-sm:      0 2px 12px rgba(16,32,57,0.06);
  --shadow:         0 4px 24px rgba(16,32,57,0.10);
  --shadow-lg:      0 8px 48px rgba(16,32,57,0.15);
  --radius:         12px;
  --radius-sm:      8px;
  --radius-xs:      6px;
  --transition:     all 0.28s ease;
  --font:           'Poppins', sans-serif;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body  {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}
h1,h2,h3,h4,h5,h6 { color: var(--dark); font-weight: 700; line-height: 1.3; }
a  { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul  { margin: 0; padding: 0; list-style: none; }
p   { margin-bottom: 0; }

/* ---------- TYPOGRAPHY ---------- */
.section-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.25;
}
.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text);
  max-width: 620px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}
.text-white-75  { color: rgba(255,255,255,0.75) !important; }
.text-white-55  { color: rgba(255,255,255,0.55) !important; }
.text-primary-c { color: var(--primary) !important; }
.text-dark-c    { color: var(--dark) !important; }

/* ---------- BUTTONS ---------- */
.btn { font-family: var(--font); border-radius: var(--radius-sm); transition: var(--transition); font-weight: 600; }
.btn-primary {
  background: var(--primary); border-color: var(--primary);
  color: var(--white); padding: 0.75rem 2rem;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--primary-hover); border-color: var(--primary-hover);
  color: var(--white); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(243,163,76,0.38);
}
.btn-outline-primary {
  border-color: var(--primary); color: var(--primary); padding: 0.75rem 2rem;
  background: transparent;
}
.btn-outline-primary:hover {
  background: var(--primary); border-color: var(--primary); color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white); color: var(--dark);
  border: 2px solid var(--white); padding: 0.75rem 2rem; font-weight: 700;
}
.btn-white:hover { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.5); color: var(--white);
  padding: 0.75rem 2rem; background: transparent;
}
.btn-outline-white:hover { background: var(--white); color: var(--dark); border-color: var(--white); }
.btn-lg { padding: 0.9375rem 2.5rem; font-size: 1.0625rem; }

/* ---------- NAVBAR ---------- */
.navbar {
  padding: 0rem 0;
  background: var(--white) !important;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
  width: 100%;
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(16,32,57,0.09);
  border-bottom-color: var(--border);
  padding: 0.625rem 0;
}
.navbar-brand {
  font-weight: 800; font-size: 1.375rem;
  color: var(--dark) !important;
  display: flex; align-items: center; gap: 0.5rem;
}
.navbar-logo {
  height: 70px;
  width: auto;
  display: block;
}
.navbar-brand-text {
  display: none;
}
.brand-icon {
  width: 36px; height: 36px;
  background: var(--primary); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.brand-icon i { font-size: 18px; color: #fff; }
.brand-pearl { color: var(--dark); }
.brand-esign { color: var(--primary); }
.nav-link {
  color: var(--dark) !important; font-weight: 500;
  font-size: 0.9rem; padding: 0.5rem 0.75rem !important;
  border-radius: var(--radius-xs);
}
.nav-link:hover, .nav-link.active { color: var(--primary) !important; background: var(--light-orange); }
.dropdown-menu {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); padding: 0.5rem; min-width: 230px;
  margin-top: 0.5rem;
}
.dropdown-item {
  border-radius: var(--radius-xs); padding: 0.625rem 0.875rem;
  font-size: 0.875rem; color: var(--dark); font-weight: 500;
}
.dropdown-item i { width: 20px; color: var(--primary); }
.dropdown-item:hover { background: var(--light-orange); color: var(--primary); }

/* ---------- SECTIONS ---------- */
section { 
  padding: 5.5rem 0;
  width: 100%;
  overflow: hidden;
}
.section-sm { padding: 3.5rem 0; }
.section-lg { padding: 7rem 0; }
.bg-light-c    { background: var(--light-bg); }
.bg-orange-soft { background: var(--light-orange); }
.bg-dark-c     { background: var(--dark-deep); }

/* ---------- HERO (Homepage) ---------- */
.hero-section {
  background: linear-gradient(135deg, #07101f 0%, #102039 55%, #163352 100%);
  min-height: 93vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 10rem 0 5rem;
  width: 100%;
}
.hero-bg-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero-bg-orb-1 {
  top: -20%; right: -10%; width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(243,163,76,0.10) 0%, transparent 70%);
}
.hero-bg-orb-2 {
  bottom: -30%; left: -10%; width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(243,163,76,0.06) 0%, transparent 70%);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(243,163,76,0.13); border: 1px solid rgba(243,163,76,0.28);
  color: var(--primary); padding: 0.375rem 1rem; border-radius: 50px;
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 1.5rem;
}
.hero-badge .pulse-dot {
  width: 6px; height: 6px; background: var(--primary);
  border-radius: 50%; animation: pulse 2s infinite;
}
.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800; color: var(--white); line-height: 1.18; margin-bottom: 1.5rem;
}
.hero-title .highlight { color: var(--primary); }
.hero-subtitle {
  font-size: 1.0625rem; color: rgba(255,255,255,0.72);
  line-height: 1.85; margin-bottom: 1.75rem; max-width: 540px;
}
.hero-value-strip {
  background: rgba(243,163,76,0.10); border-left: 3px solid var(--primary);
  padding: 0.875rem 1.25rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 2.25rem; max-width: 520px;
}
.hero-value-strip p { color: rgba(255,255,255,0.88); font-size: 0.9375rem; font-weight: 500; }
.hero-cta-row { display: flex; gap: 0.875rem; flex-wrap: wrap; align-items: center; margin-bottom: 3rem; }
.hero-cta-row .btn { min-width: 160px; text-align: center; }
.hero-stats-row { display: flex; gap: 2rem; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-number {
  font-size: 1.875rem; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 0.2rem;
}
.hero-stat-label { font-size: 0.8125rem; color: rgba(255,255,255,0.5); font-weight: 500; }
.hero-stat-divider { width: 1px; background: rgba(255,255,255,0.12); align-self: stretch; margin: 0 0.5rem; }

/* Hero Document Mockup */
.hero-visual-wrap { position: relative; display: flex; justify-content: center; align-items: center; padding: 2rem 0; }
.hero-doc-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px; padding: 2rem; backdrop-filter: blur(10px);
  max-width: 400px; width: 100%; animation: float 5s ease-in-out infinite;
}
.doc-inner { background: var(--white); border-radius: 10px; padding: 1.5rem; margin-bottom: 1rem; }
.doc-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.doc-icon-wrap { width: 36px; height: 36px; background: var(--light-orange); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.doc-icon-wrap i { color: var(--primary); font-size: 18px; }
.doc-title-text { font-size: 0.875rem; font-weight: 700; color: var(--dark); }
.doc-subtitle-text { font-size: 0.75rem; color: var(--text); }
.doc-line { height: 9px; background: #eef0f4; border-radius: 4px; margin-bottom: 0.625rem; }
.doc-line.w-85 { width: 85%; } .doc-line.w-65 { width: 65%; }
.doc-line.w-95 { width: 95%; } .doc-line.w-75 { width: 75%; }
.doc-sig-zone {
  border: 1.5px dashed rgba(243,163,76,0.5); border-radius: 8px;
  padding: 0.875rem 1rem; margin-top: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.sig-icon-wrap { width: 34px; height: 34px; background: var(--primary); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sig-icon-wrap i { color: white; font-size: 16px; }
.sig-label { font-size: 0.8125rem; font-weight: 700; color: var(--dark); }
.sig-sublabel { font-size: 0.75rem; color: var(--text); }
.doc-status-bar {
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(39,174,96,0.1); border-radius: 8px;
  padding: 0.625rem 0.875rem;
}
.doc-status-dot { width: 8px; height: 8px; background: #27ae60; border-radius: 50%; }
.doc-status-text { font-size: 0.8125rem; color: #27ae60; font-weight: 600; }
.hero-float-badge {
  position: absolute; background: var(--white); border-radius: 12px;
  padding: 0.75rem 1rem; box-shadow: 0 10px 36px rgba(0,0,0,0.22);
  display: flex; align-items: center; gap: 0.625rem;
}
.hero-float-badge.badge-top { top: -10px; right: -25px; }
.hero-float-badge.badge-bottom { bottom: 10px; left: -35px; }
.hfb-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hfb-icon.green { background: #e8f8f0; } .hfb-icon.green i { color: #27ae60; }
.hfb-icon.blue  { background: #e8f0ff; } .hfb-icon.blue i  { color: #3b6ef7; }
.hfb-icon.orange { background: var(--light-orange); } .hfb-icon.orange i { color: var(--primary); }
.hfb-label { font-size: 0.75rem; font-weight: 700; color: var(--dark); white-space: nowrap; }
.hfb-sub   { font-size: 0.6875rem; color: var(--text); white-space: nowrap; }

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: var(--light-bg); padding: 1.25rem 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.trust-bar-label {
  font-size: 0.75rem; font-weight: 700; color: var(--text);
  text-transform: uppercase; letter-spacing: 1.5px; white-space: nowrap;
}
.trust-logo-pill {
  font-size: 0.8125rem; font-weight: 700; color: #f3a34c;
  text-transform: uppercase; letter-spacing: 0.5px;
  padding: 0.375rem 1rem; border-radius: 50px;
  border: 1px solid var(--border); transition: var(--transition);
}
.trust-logo-pill:hover { color: var(--dark); border-color: var(--dark); }

/* ---------- STATS BAND ---------- */
.stats-band { background: var(--dark); padding: 4rem 0; }
.stat-item { text-align: center; padding: 1.5rem 1rem; }
.stat-num {
  font-size: clamp(2.25rem, 4vw, 3rem); font-weight: 800;
  color: var(--primary); line-height: 1; display: block; margin-bottom: 0.375rem;
}
.stat-lbl { font-size: 0.9375rem; color: rgba(255,255,255,0.65); font-weight: 500; }
.stat-sep { width: 1px; background: rgba(255,255,255,0.1); align-self: stretch; }

/* ---------- SOLUTION CARDS ---------- */
.solution-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.5rem;
  transition: var(--transition); height: 100%; position: relative; overflow-x: hidden;
}
.solution-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--primary); transform: scaleX(0);
  transform-origin: left; transition: var(--transition);
}
.solution-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; transform: translateY(-5px); }
.solution-card:hover::after { transform: scaleX(1); }
.sol-icon {
  width: 68px; height: 68px; background: var(--light-orange);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; margin-bottom: 1.5rem;
}
.sol-icon i { font-size: 32px; color: var(--primary); }
.solution-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.solution-card > p { font-size: 0.9375rem; margin-bottom: 1.5rem; }
.sol-feat-list { margin-bottom: 1.75rem; }
.sol-feat-list li {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; color: var(--text); font-weight: 500;
  padding: 0.2rem 0;
}
.sol-feat-list li i { color: var(--primary); font-size: 14px; flex-shrink: 0; }
.sol-link {
  display: inline-flex; align-items: center; gap: 0.375rem;
  color: var(--primary); font-weight: 700; font-size: 0.9rem;
}
.sol-link:hover { gap: 0.625rem; color: var(--primary-hover); }

/* ---------- HOW IT WORKS ---------- */
.process-steps { counter-reset: step; }
.process-step {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding: 1.75rem; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: var(--transition); position: relative;
}
.process-step:hover { box-shadow: var(--shadow); border-color: var(--primary); }
.step-num {
  width: 52px; height: 52px; background: var(--light-orange);
  border: 2px solid var(--primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 800; color: var(--primary); flex-shrink: 0;
}
.step-content h4 { font-size: 1rem; margin-bottom: 0.375rem; }
.step-content p  { font-size: 0.875rem; }

/* ---------- FEATURE CARDS ---------- */
.feature-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.875rem;
  transition: var(--transition); height: 100%;
}
.feature-card:hover { box-shadow: var(--shadow); border-color: var(--primary); transform: translateY(-3px); }
.feat-icon {
  width: 52px; height: 52px; background: var(--light-orange);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; margin-bottom: 1.25rem;
}
.feat-icon i { font-size: 24px; color: var(--primary); }
.feature-card h4 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.feat-problem {
  font-size: 0.8rem; color: #c0392b; background: #fff5f5;
  padding: 0.3rem 0.625rem; border-radius: 4px; margin-bottom: 0.625rem;
  font-weight: 600; display: inline-block;
}
.feat-solution { font-size: 0.875rem; color: var(--text); margin-bottom: 0.75rem; }
.feat-impact {
  font-size: 0.8rem; color: #27ae60; background: #f0fbf5;
  padding: 0.3rem 0.625rem; border-radius: 4px; font-weight: 600; display: inline-block;
}

/* ---------- INDUSTRY CARDS ---------- */
.industry-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem 1.5rem;
  text-align: center; transition: var(--transition); cursor: default;
}
.industry-card:hover { background: var(--dark); border-color: var(--dark); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.industry-card:hover h4, .industry-card:hover p { color: var(--white); }
.industry-card:hover .ind-icon { background: rgba(243,163,76,0.2); }
.ind-icon {
  width: 72px; height: 72px; background: var(--light-orange);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 1.25rem; transition: var(--transition);
}
.ind-icon i { font-size: 32px; color: var(--primary); }
.industry-card h4 { font-size: 1rem; margin-bottom: 0.375rem; transition: var(--transition); }
.industry-card p  { font-size: 0.875rem; transition: var(--transition); }

/* ---------- SECURITY BADGES ---------- */
.sec-badge {
  display: flex; align-items: center; gap: 1rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1.25rem;
  transition: var(--transition);
}
.sec-badge:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.sec-badge-icon {
  width: 48px; height: 48px; background: var(--light-orange);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.sec-badge-icon i { font-size: 22px; color: var(--primary); }
.sec-badge h6 { font-size: 0.9375rem; margin-bottom: 0.2rem; }
.sec-badge p  { font-size: 0.8125rem; color: var(--text); }

/* ---------- COMPLIANCE BADGE GRID ---------- */
.compliance-badge {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1.5rem;
  text-align: center; transition: var(--transition);
}
.compliance-badge:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.compliance-badge i { font-size: 36px; color: var(--primary); display: block; margin-bottom: 0.75rem; }
.compliance-badge h6 { font-size: 0.875rem; font-weight: 700; color: var(--dark); margin-bottom: 0.2rem; }
.compliance-badge p  { font-size: 0.8rem; color: var(--text); }

/* ---------- BLOG CARDS ---------- */
.blog-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: var(--transition); height: 100%;
}
.blog-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; transform: translateY(-4px); }
.blog-card-thumb {
  height: 190px; background: linear-gradient(135deg, var(--light-orange), #fde9c4);
  position: relative; display: flex; align-items: center; justify-content: center;
}
.blog-card-thumb i { font-size: 48px; color: var(--primary); opacity: 0.6; }
.blog-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--primary); color: #fff;
  font-size: 0.75rem; font-weight: 700;
  padding: 0.2rem 0.625rem; border-radius: 4px;
}
.blog-card-body { padding: 1.5rem; }
.blog-meta { font-size: 0.8rem; color: var(--text); margin-bottom: 0.625rem; }
.blog-card-body h5 { font-size: 1rem; line-height: 1.5; margin-bottom: 0.625rem; }
.blog-card-body p  { font-size: 0.875rem; color: var(--text); margin-bottom: 1rem; }
.blog-read-link {
  display: inline-flex; align-items: center; gap: 0.375rem;
  color: var(--primary); font-size: 0.875rem; font-weight: 700;
}
.blog-read-link:hover { gap: 0.625rem; }

/* ---------- FAQ ACCORDION ---------- */
.faq-accordion .accordion-item {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  margin-bottom: 0.75rem; overflow: hidden;
}
.faq-accordion .accordion-button {
  font-family: var(--font); font-weight: 600; color: var(--dark);
  background: var(--white); font-size: 0.9375rem; padding: 1.25rem 1.5rem;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary); background: var(--light-orange); box-shadow: none;
}
.faq-accordion .accordion-button:focus { box-shadow: none; }
.faq-accordion .accordion-body {
  font-size: 0.9375rem; color: var(--text); line-height: 1.8;
  padding: 1rem 1.5rem 1.25rem; background: var(--white);
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--dark-deep) 0%, #163352 100%);
  padding: 6rem 0; position: relative; overflow: hidden;
  width: 100%;
}
.cta-section::before {
  content: ''; position: absolute;
  top: -40%; right: -10%; width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(243,163,76,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { color: var(--white); }
.cta-section p  { color: rgba(255,255,255,0.72); }

/* ---------- CONTACT FORM CARD ---------- */
.contact-form-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 3rem;
}
.form-label { font-size: 0.875rem; font-weight: 600; color: var(--dark); margin-bottom: 0.5rem; }
.form-control, .form-select {
  font-family: var(--font); font-size: 0.9375rem;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 0.75rem 1rem; color: var(--dark); transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(243,163,76,0.16); outline: none;
}
.form-control::placeholder { color: #b8c0cc; }
.form-check-input:checked { background-color: var(--primary); border-color: var(--primary); }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, #07101f 0%, #102039 60%, #163352 100%);
  padding: 10rem 0 5rem; position: relative; overflow: hidden;
  width: 100%;
}
.page-hero::after {
  content: ''; position: absolute; top:0; left:0; right:0; bottom:0;
  background-image: 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='%23f3a34c' fill-opacity='0.03'%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/svg%3E");
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(2rem,4vw,3rem); margin-bottom: 1rem; }
.page-hero p  { color: rgba(255,255,255,0.72); font-size: 1.0625rem; max-width: 600px; }
.breadcrumb-nav { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.25rem; font-size: 0.875rem; }
.breadcrumb-nav a { color: rgba(255,255,255,0.5); }
.breadcrumb-nav a:hover { color: var(--primary); }
.breadcrumb-nav .sep { color: rgba(255,255,255,0.25); }
.breadcrumb-nav .curr { color: var(--primary); font-weight: 600; }
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(243,163,76,0.12); border: 1px solid rgba(243,163,76,0.25);
  color: var(--primary); padding: 0.35rem 1rem; border-radius: 50px;
  font-size: 0.8125rem; font-weight: 600; margin-bottom: 1.25rem;
}

/* ---------- HIGHLIGHT / INFO BOXES ---------- */
.info-box {
  background: var(--light-orange); border: 1px solid rgba(243,163,76,0.25);
  border-radius: var(--radius); padding: 1.75rem;
}
.info-box-dark {
  background: var(--dark); border-radius: var(--radius); padding: 2rem;
}
.info-box-dark * { color: var(--white) !important; }
.check-list li {
  display: flex; align-items: flex-start; gap: 0.625rem;
  padding: 0.375rem 0; font-size: 0.9375rem;
}
.check-list li i { color: var(--primary); flex-shrink: 0; margin-top: 3px; }

/* ---------- INTEGRATION GRID ---------- */
.integration-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1.25rem 1rem;
  text-align: center; font-size: 0.875rem; font-weight: 700;
  color: var(--dark); transition: var(--transition);
}
.integration-item i { font-size: 28px; color: var(--primary); display: block; margin-bottom: 0.5rem; }
.integration-item:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); color: var(--primary); }

/* ---------- COMPARISON TABLE ---------- */
.comp-table { 
  border: 1px solid var(--border); 
  border-radius: var(--radius); 
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}
.comp-table table {
  width: 100%;
  min-width: 600px;
}
.comp-table th {
  background: var(--dark); color: var(--white);
  font-weight: 600; font-size: 0.9375rem;
  padding: 1rem 1.5rem; font-family: var(--font);
  white-space: nowrap;
}
.comp-table td {
  padding: 0.875rem 1.5rem; font-size: 0.9rem;
  border-bottom: 1px solid var(--border); font-family: var(--font);
  white-space: nowrap;
}
.comp-table tr:last-child td { border-bottom: none; }
.comp-table tr:nth-child(even) td { background: var(--light-bg); }
.yes { color: #27ae60; font-weight: 700; }
.no  { color: #c0392b; font-weight: 700; }

/* ---------- TESTIMONIAL CARDS ---------- */
.testimonial-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem; transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); }
.t-stars { color: var(--primary); font-size: 14px; margin-bottom: 1rem; }
.t-text {
  font-size: 0.9375rem; color: var(--text); font-style: italic;
  margin-bottom: 1.25rem; line-height: 1.85;
}
.t-author { display: flex; align-items: center; gap: 0.75rem; }
.t-avatar {
  width: 44px; height: 44px; background: var(--light-orange);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--primary); font-size: 1.125rem; flex-shrink: 0;
}
.t-name { font-weight: 700; font-size: 0.9375rem; color: var(--dark); }
.t-role { font-size: 0.8rem; color: var(--text); }

/* ---------- PILL TAGS ---------- */
.pill { display: inline-flex; align-items: center; background: var(--light-orange); color: var(--primary); font-size: 0.8125rem; font-weight: 600; padding: 0.25rem 0.75rem; border-radius: 50px; margin: 0.2rem; }
.pill-dark { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); border-radius: 50px; padding: 0.25rem 0.75rem; font-size: 0.8125rem; font-weight: 600; display: inline-flex; margin: 0.2rem; }

/* ---------- PRICING BADGE ---------- */
.pricing-badge { background: var(--primary); color: white; font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.75rem; border-radius: 50px; display: inline-block; margin-bottom: 0.75rem; }

/* ---------- WHATSAPP FLOAT ---------- */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 60px; height: 60px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.42);
  z-index: 9999; transition: var(--transition); cursor: pointer; text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.52); }
.wa-float i { font-size: 32px; color: white; }
.wa-tooltip {
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
  background: var(--dark); color: white;
  padding: 0.375rem 0.875rem; border-radius: 6px;
  font-size: 0.8125rem; font-weight: 600; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: var(--transition);
  font-family: var(--font);
}
.wa-tooltip::after {
  content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: var(--dark); border-right: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ---------- BACK TO TOP ---------- */
#back-to-top {
  position: fixed; bottom: 100px; right: 28px;
  width: 44px; height: 44px; background: var(--dark);
  border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 999; opacity: 0; pointer-events: none;
  transition: var(--transition); box-shadow: var(--shadow);
}
#back-to-top.visible { opacity: 1; pointer-events: auto; }
#back-to-top:hover { background: var(--primary); transform: translateY(-3px); }
#back-to-top i { color: white; font-size: 18px; }

/* ---------- DEMO MODAL ---------- */
.modal-content { border-radius: var(--radius); border: none; }
.modal-header { border-bottom: 1px solid var(--border); padding: 1.5rem 2rem; }
.modal-body { padding: 2rem; }
.modal-title { font-weight: 700; color: var(--dark); }
.modal-header .btn-close:focus { box-shadow: none; }

/* ---------- FOOTER ---------- */
.site-footer { background: #0a1628; color: rgba(255,255,255,0.65); padding: 5rem 0 0; }
.footer-brand { font-weight: 800; font-size: 1.375rem; color: var(--white); display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.25rem; }
.footer-brand-icon { width: 36px; height: 36px; background: var(--primary); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.footer-brand-icon i { font-size: 18px; color: white; }
.footer-logo {
  height: 80px;
  width: auto;
  display: block;
}
.footer-desc { font-size: 0.875rem; line-height: 1.8; color: rgba(255,255,255,0.55); margin-bottom: 1.5rem; }
.footer-heading { font-size: 0.8125rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1.25rem; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.875rem; font-weight: 500; }
.footer-links a:hover { color: var(--primary); }
.footer-contact-row { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.875rem; }
.footer-contact-icon { width: 32px; height: 32px; background: rgba(243,163,76,0.14); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer-contact-icon i { font-size: 14px; color: var(--primary); }
.footer-contact-text { font-size: 0.875rem; color: rgba(255,255,255,0.55); }
.footer-contact-text a { color: rgba(255,255,255,0.75); }
.footer-contact-text a:hover { color: var(--primary); }
.footer-social { display: flex; gap: 0.625rem; margin-top: 0.5rem; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.06); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-social a:hover { background: var(--primary); color: white; }
.footer-social a i { font-size: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 0; margin-top: 3rem; }
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.35); margin: 0; }

/* ---------- SCROLL ANIMATIONS ---------- */
.anim { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.anim.in-view { opacity: 1; transform: translateY(0); }
.anim-d1 { transition-delay: 0.1s; }
.anim-d2 { transition-delay: 0.2s; }
.anim-d3 { transition-delay: 0.3s; }
.anim-d4 { transition-delay: 0.4s; }
.anim-d5 { transition-delay: 0.5s; }
.anim-d6 { transition-delay: 0.6s; }

/* ---------- KEYFRAMES ---------- */
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.4; transform:scale(1.6); }
}
@keyframes float {
  0%,100% { transform:translateY(0); }
  50%      { transform:translateY(-12px); }
}

/* ---------- DIVIDERS ---------- */
.divider { height: 1px; background: var(--border); }
.divider-light { height: 1px; background: rgba(255,255,255,0.08); }

/* ---------- UTILITY CLASSES ---------- */
.container, .container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width:991.98px) {
  .hero-section { 
    min-height: auto; 
    padding: 7rem 0 3rem;
  }
  .hero-float-badge { 
    position: static;
    display: inline-flex;
    margin: 0.75rem 0.5rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }
  .hero-float-badge.badge-top,
  .hero-float-badge.badge-bottom {
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
  }
  .hero-visual-wrap { 
    margin-top: 2rem;
    flex-direction: column;
    padding: 1rem 0;
  }
  .hero-mobile-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
    gap: 0.75rem;
  }
  section { padding: 3rem 0; }
  .contact-form-card { padding: 2rem 1.5rem; }
  .navbar-collapse { 
    background: var(--white); 
    border-top: 1px solid var(--border); 
    margin-top: 0.5rem; 
    padding: 1rem 0.5rem; 
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    max-height: none;
  }
  .dropdown-menu {
    border: none;
    box-shadow: none;
    padding: 0.5rem 0 0.5rem 1rem;
    position: static !important;
    transform: none !important;
    margin-top: 0;
  }
  .stats-band { padding: 2rem 0; }
  .comp-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .comp-table th,
  .comp-table td {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }
}
@media (max-width:767.98px) {
  .hero-section {
    padding: 6rem 0 2rem;
  }
  .hero-title { 
    font-size: 1.875rem;
    margin-bottom: 1rem;
  }
  .hero-subtitle { 
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
  }
  .hero-value-strip {
    margin-bottom: 1.5rem;
  }
  .hero-cta-row {
    margin-bottom: 2rem;
  }
  .hero-stats-row {
    gap: 1rem;
  }
  .section-title { font-size: 1.75rem; }
  .stat-num { font-size: 2.25rem; }
  .navbar-logo { height: 60px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn { text-align: center; }
  .cta-section { padding: 3rem 0; }
  .site-footer { padding: 2.5rem 0 0; }
  .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .wa-float i { font-size: 26px; }
  #back-to-top { right: 20px; }
  .hero-visual-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1.5rem;
    padding: 0.5rem 0;
  }
  .hero-doc-card {
    padding: 1.5rem;
  }
  .hero-float-badge {
    position: static;
    display: inline-flex;
    margin: 0.5rem 0.375rem;
  }
  .hero-float-badge.badge-top,
  .hero-float-badge.badge-bottom {
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
  }
  .comp-table th,
  .comp-table td {
    padding: 0.75rem 0.875rem;
    font-size: 0.8rem;
  }
  .comp-table th:first-child,
  .comp-table td:first-child {
    min-width: 140px;
  }
}
@media (max-width:575.98px) {
  .hero-section { 
    padding: 5.5rem 0 2rem;
  }
  .hero-badge {
    margin-bottom: 1rem;
  }
  .hero-title {
    font-size: 1.625rem;
    margin-bottom: 0.875rem;
  }
  .hero-subtitle {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
  .hero-value-strip {
    margin-bottom: 1.25rem;
    padding: 0.75rem 1rem;
  }
  .hero-value-strip p {
    font-size: 0.875rem;
  }
  .hero-cta-row {
    margin-bottom: 1.5rem;
    gap: 0.625rem;
  }
  .hero-stats-row {
    gap: 0.75rem;
  }
  .hero-stat-number {
    font-size: 1.5rem;
  }
  .hero-stat-label {
    font-size: 0.75rem;
  }
  .hero-visual-wrap {
    margin-top: 1rem;
    padding: 0;
  }
  .hero-doc-card {
    padding: 1.25rem;
  }
  .page-hero { padding: 7rem 0 2.5rem; }
  section { padding: 2.5rem 0; }
  .trust-bar {
    padding: 1rem 0;
  }
  .comp-table th,
  .comp-table td {
    padding: 0.625rem 0.75rem;
    font-size: 0.75rem;
  }
  .comp-table th:first-child,
  .comp-table td:first-child {
    min-width: 120px;
  }
}
@media print {
  .navbar, .wa-float, .site-footer, #back-to-top { display: none !important; }
}

/* ============================================================
   BLOG DETAIL PAGE STYLES
   ============================================================ */

/* ---------- BLOG DETAIL HEADER ---------- */
.blog-detail-header {
  background: linear-gradient(135deg, #07101f 0%, #102039 60%, #163352 100%);
  padding: 9rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.blog-detail-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 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='%23f3a34c' fill-opacity='0.03'%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/svg%3E");
  pointer-events: none;
}
.blog-detail-header .container,
.blog-detail-header .row,
.blog-detail-header .col-lg-10 {
  position: relative;
  z-index: 1;
}
.blog-detail-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
.blog-detail-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.meta-item i {
  color: var(--primary);
  font-size: 14px;
}
.meta-divider {
  color: rgba(255,255,255,0.25);
}
.blog-social-share {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.share-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}
.share-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
  text-decoration: none;
}
.share-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.share-btn-success {
  background: #27ae60 !important;
  color: var(--white) !important;
}

/* ---------- ARTICLE CONTENT ---------- */
.blog-detail-content {
  padding: 5rem 0;
}
.article-body {
  color: var(--text);
  font-size: 1.0625rem;
  line-height: 1.85;
}

/* Featured Image */
.article-featured-image {
  margin-bottom: 3rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.featured-image-placeholder {
  height: 420px;
  background: linear-gradient(135deg, var(--light-orange) 0%, #fde9c4 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
}
.featured-image-placeholder i {
  font-size: 72px;
  color: var(--primary);
  opacity: 0.5;
}
.featured-image-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
}

/* Article Sections */
.article-section {
  margin-bottom: 3.5rem;
}
.article-section h2 {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  line-height: 1.3;
}
.section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  background: var(--light-orange);
  border: 2px solid var(--primary);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  flex-shrink: 0;
}
.article-section h4 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--dark);
}
.article-section p {
  margin-bottom: 1.25rem;
}
.article-section .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.article-section strong {
  color: var(--dark);
  font-weight: 700;
}

/* Article Lists */
.article-list {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
  list-style: none;
}
.article-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.875rem;
  line-height: 1.75;
}
.article-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}
.article-list li strong {
  color: var(--dark);
  font-weight: 700;
}

/* Table of Contents */
.article-toc {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 1.75rem 2rem;
  margin-bottom: 3rem;
}
.toc-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}
.toc-list {
  list-style: decimal;
  padding-left: 1.25rem;
  margin: 0;
}
.toc-list li {
  margin-bottom: 0.625rem;
}
.toc-list a {
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}
.toc-list a:hover {
  color: var(--primary);
}

/* Article Highlight Box */
.article-highlight {
  background: var(--light-orange);
  border: 1px solid rgba(243,163,76,0.3);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin: 2rem 0;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.highlight-icon {
  width: 52px;
  height: 52px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.highlight-icon i {
  font-size: 24px;
  color: var(--white);
}
.highlight-content h6 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.highlight-content p {
  font-size: 0.9375rem;
  color: var(--text);
  margin: 0;
  line-height: 1.75;
}

/* Article Callout */
.article-callout {
  background: var(--light-bg);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.callout-icon {
  width: 44px;
  height: 44px;
  background: var(--light-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.callout-icon i {
  font-size: 20px;
  color: var(--primary);
}
.article-callout h6 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.375rem;
}
.article-callout p {
  font-size: 0.9375rem;
  color: var(--text);
  margin: 0;
  line-height: 1.7;
}

/* Comparison Table */
.comparison-table {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 2rem 0;
}
.comparison-row {
  display: grid;
  grid-template-columns: 1.5fr 2fr 2fr;
  border-bottom: 1px solid var(--border);
}
.comparison-row:last-child {
  border-bottom: none;
}
.comparison-header {
  background: var(--dark);
}
.comparison-header .comparison-col {
  color: var(--white);
  font-weight: 700;
  font-size: 0.9375rem;
}
.comparison-col {
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text);
}
.comparison-row:nth-child(even):not(.comparison-header) {
  background: var(--light-bg);
}

/* DSC Type Cards */
.dsc-type-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}
.dsc-type-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--primary);
}
.dsc-type-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.dsc-type-badge {
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.375rem 0.875rem;
  border-radius: 50px;
  white-space: nowrap;
}
.dsc-type-card h4 {
  font-size: 1.125rem;
  margin: 0;
  color: var(--dark);
}
.dsc-type-card p {
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
  line-height: 1.7;
}
.dsc-type-card p:last-child {
  margin-bottom: 0;
}

/* Process Flow */
.process-flow {
  margin: 2rem 0;
}
.process-flow-step {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}
.process-flow-step:last-child {
  margin-bottom: 0;
}
.pf-number {
  width: 48px;
  height: 48px;
  background: var(--light-orange);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--primary);
  flex-shrink: 0;
}
.pf-content h6 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.375rem;
}
.pf-content p {
  font-size: 0.9375rem;
  color: var(--text);
  margin: 0;
  line-height: 1.7;
}

/* Article CTA */
.article-cta {
  background: linear-gradient(135deg, var(--dark-deep) 0%, #163352 100%);
  border-radius: var(--radius);
  padding: 3rem;
  margin: 3rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.article-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(243,163,76,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.article-cta-icon {
  width: 72px;
  height: 72px;
  background: rgba(243,163,76,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}
.article-cta-icon i {
  font-size: 32px;
  color: var(--primary);
}
.article-cta-content {
  position: relative;
  z-index: 1;
}
.article-cta h4 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}
.article-cta p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Article Tags */
.article-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  margin-top: 3rem;
}
.tag-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--dark);
}
.article-tag {
  background: var(--light-bg);
  color: var(--text);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.375rem 0.875rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: var(--transition);
}
.article-tag:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Article Share Section */
.article-share-section {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 3rem 0;
}

/* Author Bio */
.author-bio {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.author-bio-avatar {
  width: 80px;
  height: 80px;
  background: var(--light-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.author-bio-avatar i {
  font-size: 36px;
  color: var(--primary);
}
.author-bio h5 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.author-bio p {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.author-bio-social {
  display: flex;
  gap: 0.625rem;
}
.author-bio-social a {
  width: 36px;
  height: 36px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: var(--transition);
  text-decoration: none;
}
.author-bio-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* ---------- SIDEBAR ---------- */
.blog-sidebar {
  position: sticky;
  top: 100px;
}

/* Sidebar Widget */
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
}
.sidebar-widget-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
}
.sidebar-widget-title i {
  color: var(--primary);
}

/* Sticky TOC */
.sticky-toc {
  position: sticky;
  top: 100px;
}
.toc-sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.toc-sidebar-link {
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-left: 3px solid transparent;
  text-decoration: none;
  transition: var(--transition);
  display: block;
}
.toc-sidebar-link:hover {
  color: var(--primary);
  background: var(--light-orange);
  border-left-color: var(--primary);
}
.toc-sidebar-link.active {
  color: var(--primary);
  background: var(--light-orange);
  border-left-color: var(--primary);
  font-weight: 600;
}

/* Related Articles */
.related-articles-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.related-article-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
}
.related-article-item:hover {
  background: var(--light-bg);
}
.related-article-icon {
  width: 44px;
  height: 44px;
  background: var(--light-orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.related-article-icon i {
  font-size: 20px;
  color: var(--primary);
}
.related-article-content h6 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.25rem;
  line-height: 1.4;
}
.related-article-meta {
  font-size: 0.75rem;
  color: var(--text);
}

/* Categories */
.category-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 0.875rem;
  border-radius: var(--radius-xs);
  text-decoration: none;
  transition: var(--transition);
}
.category-item:hover {
  background: var(--light-orange);
}
.category-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
}
.category-count {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--light-orange);
  padding: 0.125rem 0.5rem;
  border-radius: 50px;
}

/* Sidebar CTA */
.sidebar-cta {
  background: linear-gradient(135deg, var(--dark-deep) 0%, #163352 100%);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}
.sidebar-cta::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(243,163,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.sidebar-cta-icon {
  width: 56px;
  height: 56px;
  background: rgba(243,163,76,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
}
.sidebar-cta-icon i {
  font-size: 24px;
  color: var(--primary);
}
.sidebar-cta h5 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}
.sidebar-cta p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.25rem;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991.98px) {
  .blog-sidebar {
    position: static;
    margin-top: 4rem;
  }
  .sticky-toc {
    position: static;
  }
  .blog-detail-header {
    padding: 8rem 0 3rem;
  }
  .blog-detail-content {
    padding: 4rem 0;
  }
  .author-bio {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .comparison-row {
    grid-template-columns: 1fr;
  }
  .comparison-col {
    border-bottom: 1px solid var(--border);
  }
  .comparison-col:last-child {
    border-bottom: none;
  }
  .comparison-header .comparison-col:first-child {
    display: none;
  }
  .comparison-row:not(.comparison-header) .comparison-col:first-child {
    font-weight: 700;
    color: var(--dark);
    background: var(--light-bg);
  }
}

@media (max-width: 767.98px) {
  .blog-detail-title {
    font-size: 1.625rem;
  }
  .article-body {
    font-size: 1rem;
  }
  .article-section h2 {
    font-size: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .section-number {
    min-width: 40px;
    height: 40px;
    font-size: 0.875rem;
  }
  .featured-image-placeholder {
    height: 280px;
  }
  .article-cta {
    padding: 2rem 1.5rem;
  }
  .article-cta h4 {
    font-size: 1.375rem;
  }
  .sidebar-widget {
    padding: 1.5rem;
  }
  .author-bio {
    padding: 1.75rem;
  }
}

@media (max-width: 575.98px) {
  .blog-detail-header {
    padding: 7.5rem 0 2.5rem;
  }
  .blog-detail-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .meta-divider {
    display: none;
  }
  .article-highlight,
  .article-callout {
    flex-direction: column;
  }
  .process-flow-step {
    flex-direction: column;
  }
}
/* Container Layout */
.category-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem !important;
}

/* Base Category Button (Inactive State) - Plain White with thin border */
.category-filter .btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 11px 26px;
    border-radius: 8px; /* Matches your UI */
    background-color: #ffffff;
    color: #4a5568;
    border: 1px solid #d1d5db; /* Thin neutral border */
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Hover State (Text turns orange, border turns orange) */
.category-filter .btn:hover {
    background-color: #ffffff;
    border-color: #f29d38; /* Peach Orange color */
    color: #f29d38 !important;
    transform: translateY(-2px);
}

/* Selected/Active State (Solid Orange color - No Blue!) */
.category-filter .btn.active {
    background-color: #f29d38 !important; 
    border-color: #f29d38 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(242, 157, 56, 0.3);
}

/* Mobile responsive */
@media (max-width: 576px) {
    .category-filter .btn {
        padding: 9px 18px;
        font-size: 13px;
    }
    .category-filter {
        gap: 8px;
    }
}
/* --- Pagination Container Layout --- */
.pagination {
    gap: 8px; /* Adds space between page numbers for a modern layout */
}

/* --- Base Page Links (Unselected) --- */
.pagination .page-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #4a5568;
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 8px !important; /* Smooth rounded boxes like your UI */
    padding: 10px 16px;
    transition: all 0.3s ease;
}

/* --- Hover State (Turns Orange/Peach Outline) --- */
.pagination .page-link:hover {
    background-color: #ffffff;
    color: #f29d38;
    border-color: #f29d38;
    z-index: 2;
}

/* --- Active/Current Page (Solid Orange — No Blue!) --- */
.pagination .page-item.active .page-link {
    background-color: #f29d38 !important;
    border-color: #f29d38 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(242, 157, 56, 0.3);
}

/* --- Disabled State (Grey and unclickable) --- */
.pagination .page-item.disabled .page-link {
    color: #a0aec0;
    background-color: #f7fafc;
    border-color: #e2e8f0;
    cursor: not-allowed;
}