/*
 * ============================================================
 *  SAIMONA — MARKET PAGE CSS  v2.0  (Premium Edition)
 *  File: css/marketpage.css
 *
 *  ISOLATED — No overrides to style.css or Bootstrap
 *  Every selector prefixed with .market-* or #market-toc
 *  Reusable across all 70-80 city pages
 * ============================================================
 */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --mp-blue:        #12558C;
  --mp-blue-dark:   #0b1e33;
  --mp-cyan:        #00b4d8;
  --mp-cyan-light:  #e0f7fb;
  --mp-white:       #ffffff;
  --mp-bg:          #f8fafc;
  --mp-border:      rgba(18,85,140,0.08);
  --mp-border-md:   rgba(18,85,140,0.15);
  --mp-text:        #0f172a;
  --mp-text-body:   #000000;
  --mp-text-muted:  #64748b;
  --mp-grad:        linear-gradient(135deg,#12558C 0%,#00b4d8 100%);
  --mp-grad-dark:   linear-gradient(135deg,#081220 0%,#0b1e33 45%,#12558C 100%);
  --mp-shadow-sm:   0 4px 16px rgba(18,85,140,0.06);
  --mp-shadow-md:   0 12px 36px rgba(18,85,140,0.1);
  --mp-shadow-lg:   0 24px 60px rgba(18,85,140,0.14);
  --mp-ease:        cubic-bezier(0.16,1,0.3,1);
  --mp-radius:      18px;
  --mp-radius-sm:   12px;
  --mp-radius-xs:   8px;
}

html, body {
  overflow-x: clip !important;
}

/* ============================================================
   LAYOUT WRAPPER — TOC + CONTENT side-by-side on desktop
   ============================================================ */
.market-page-layout {
  width: 100%;
}

.market-main-content {
  width: 100%;
}

#market-toc {
  position: sticky;
  top: 120px;
  align-self: flex-start;
  z-index: 10;
}

section[id^="market-"] {
  scroll-margin-top: 120px;
}

.market-toc-inner {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(18, 85, 140, 0.08);
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
  padding: 28px 24px;
  transition: all 0.3s ease;
}

.market-toc-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(18, 85, 140, 0.1);
  padding-bottom: 12px;
}

.market-toc-label i {
  color: var(--mp-blue);
  flex-shrink: 0;
  font-size: 22px;
}

.market-toc-label h4 {
  margin: 0;
  font-weight: 700;
  color: var(--mp-blue-dark);
  letter-spacing: 0.3px;
  font-family: var(--font-heading);
}

.market-toc-nav {
  border-left: 3px dashed rgba(18, 85, 140, 0.15) !important;
  padding-left: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.market-toc-nav .nav-link {
  color: var(--mp-text-muted);
  font-size: 16px;
  padding: 9px 14px;
  margin-bottom: 4px;
  border-radius: 10px;
  position: relative;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
  display: flex;
  align-items: center;
  border: none;
  background: transparent;
  line-height: 1.35;
}

.market-toc-nav .nav-link::before {
  content: "";
  position: absolute;
  left: -19px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #cbd5e1;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #f1f5f9;
  transition: all 0.3s ease;
}

.market-toc-nav .nav-link:hover {
  color: var(--mp-blue);
  background-color: rgba(18, 85, 140, 0.04);
  transform: translateX(6px);
}

.market-toc-nav .nav-link:hover::before {
  background-color: var(--mp-cyan);
  width: 12px;
  height: 12px;
  left: -20px;
  box-shadow: 0 0 0 2px rgba(0, 180, 216, 0.2);
}

.market-toc-nav .nav-link.active {
  color: var(--mp-blue) !important;
  font-weight: 700;
  background: linear-gradient(90deg, rgba(18, 85, 140, 0.08) 0%, rgba(18, 85, 140, 0.01) 100%);
  box-shadow: none;
}

.market-toc-nav .nav-link.active::before {
  background-color: var(--mp-blue);
  width: 12px;
  height: 12px;
  left: -20px;
  box-shadow: 0 0 0 3px rgba(18, 85, 140, 0.25), 0 0 10px rgba(18, 85, 140, 0.5);
}

/* TOC progress bar at bottom */
.market-toc-progress {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--mp-border);
}

.market-toc-progress-label {
  font-size: 10px;
  color: var(--mp-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 7px;
}

.market-toc-progress-bar-wrap {
  width: 100%;
  height: 4px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
}

.market-toc-progress-bar {
  height: 100%;
  background: var(--mp-grad);
  border-radius: 4px;
  width: 0%;
  transition: width 0.2s ease;
}

/* Mobile TOC — collapsible pill at top of page */
/* Floating Mobile TOC Button */
.mobile-toc-btn {
  position: fixed;
  bottom: 25px;
  left: 20px;
  z-index: 1050;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--mp-grad);
  color: #fff;
  border: none;
  box-shadow: 0 6px 20px rgba(18, 85, 140, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-toc-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(18, 85, 140, 0.4);
  color: #fff;
}

.mobile-toc-btn.hidden-btn {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: scale(0.8) !important;
}

.mobile-toc-btn i {
  font-size: 24px;
}

/* Offcanvas Bottom Sheet for Mobile TOC */
#mobileTocOffcanvas.offcanvas-bottom {
  height: 55vh;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
  border-top: 1px solid rgba(18, 85, 140, 0.08);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.mobile-toc-nav {
  border-left: 2px dashed rgba(18, 85, 140, 0.15) !important;
  padding-left: 10px;
  margin: 15px 20px;
}

.mobile-toc-nav .nav-link {
  color: var(--mp-text-muted);
  font-size: 15px;
  padding: 12px 16px;
  margin-bottom: 6px;
  border-radius: 10px;
  position: relative;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  background: transparent;
}

.mobile-toc-nav .nav-link::before {
  content: "";
  position: absolute;
  left: -17px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #cbd5e1;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #f1f5f9;
  transition: all 0.3s ease;
}

.mobile-toc-nav .nav-link:hover,
.mobile-toc-nav .nav-link.active {
  color: var(--mp-blue) !important;
  background: linear-gradient(90deg, rgba(18, 85, 140, 0.08) 0%, transparent 100%);
}

.mobile-toc-nav .nav-link.active::before {
  background-color: var(--mp-blue);
  width: 10px;
  height: 10px;
  box-shadow: 0 0 0 3px rgba(18, 85, 140, 0.25);
}

/* Responsive visibility */
@media (max-width: 1199px) {
  #market-toc { display: none !important; }
}

@media (min-width: 1200px) {
  #mobileTocOffcanvas { display: none !important; }
  .mobile-toc-btn { display: none !important; }
}

/* ============================================================
   SCROLL-TO-TOP PROGRESS RING (TOC enhancement)
   ============================================================ */
.market-reading-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  z-index: 9999;
  pointer-events: none;
}

.market-reading-progress-bar {
  height: 100%;
  background: var(--mp-grad);
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(0,180,216,0.5);
}

/* ============================================================
   SECTION ANCHOR OFFSET (for sticky nav)
   ============================================================ */
.market-section-anchor {
  display: block;
  height: 0;
  margin-top: -110px;
  padding-top: 110px;
  pointer-events: none;
  visibility: hidden;
}

/* ============================================================
   SECTION HEADER — Universal
   ============================================================ */
.market-section-header.market-center {
  text-align: center;
}

.market-section-header.market-center .market-section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.market-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(18,85,140,0.06);
  border: 1px solid rgba(18,85,140,0.12);
  border-radius: 100px;
  color: var(--mp-blue);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.market-section-eyebrow i { color: var(--mp-cyan); font-size: 13px; }

.market-section-title {
  font-weight: 800;
  line-height: 1.18;
  color: var(--mp-blue-dark);
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.market-section-title span {
  background: var(--mp-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.market-section-subtitle {
  font-size: 15px;
  color: var(--mp-text-muted);
  line-height: 1.7;
  max-width: 600px;
}

/* Decorative title underline */
.market-section-title-underline {
  display: inline-block;
  width: 48px;
  height: 3px;
  background: var(--mp-grad);
  border-radius: 3px;
  margin-bottom: 18px;
}

/* ============================================================
   ANIMATE ON SCROLL
   ============================================================ */
.market-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s var(--mp-ease), transform 0.65s var(--mp-ease);
}

.market-animate.market-visible { opacity: 1; transform: translateY(0); }
.market-animate-delay-1 { transition-delay: 0.1s; }
.market-animate-delay-2 { transition-delay: 0.2s; }
.market-animate-delay-3 { transition-delay: 0.3s; }
.market-animate-delay-4 { transition-delay: 0.4s; }
.market-animate-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   SECTION DIVIDER
   ============================================================ */
.market-section-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg,transparent,rgba(18,85,140,0.1),rgba(0,180,216,0.12),rgba(18,85,140,0.1),transparent);
  margin: 0;
}

/* ============================================================
   UTILITY BUTTONS
   ============================================================ */
.market-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  background: var(--mp-grad);
  border-radius: var(--mp-radius-sm);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--mp-ease);
  box-shadow: 0 8px 22px rgba(18,85,140,0.22);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.market-btn-primary::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,0.22),transparent);
  transform: skewX(-25deg);
}

.market-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(18,85,140,0.32);
  color: #fff;
}

.market-btn-primary:hover::after {
  left: 150%;
  transition: left 0.65s ease;
}

.market-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 26px;
  border: 2px solid var(--mp-border-md);
  border-radius: var(--mp-radius-sm);
  color: var(--mp-blue);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.market-btn-outline:hover {
  background: var(--mp-blue);
  border-color: var(--mp-blue);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(18,85,140,0.18);
}

/* ============================================================
   SECTION 1: CITY INTRODUCTION
   Premium Split Layout — refined v2
   ============================================================ */
.market-intro {
  position: relative;
  padding: 3rem 32px;
  background: #ffffff;
  overflow: hidden;
}

/* Clipped background panel */
.market-intro::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(160deg,#f0f7ff 0%,#e8f4fd 60%,#ffffff 100%);
  clip-path: polygon(0 0,100% 0,82% 100%,0 100%);
  z-index: 0;
}

/* Ambient glow decoration */
.market-intro::after {
  content: "";
  position: absolute;
  bottom: -80px; right: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(0,180,216,0.07) 0%,transparent 70%);
  z-index: 0;
}

.market-intro > .market-page-layout,
.market-intro .container {
  position: relative;
  z-index: 2;
}

/* Location badge */
.market-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: var(--mp-grad);
  border-radius: 100px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  box-shadow: 0 8px 22px rgba(18,85,140,0.25);
}

/* Intro heading */
.market-intro h2 {
  font-weight: 800;
  line-height: 1.18;
  color: var(--mp-blue-dark);
  margin-bottom: 18px;
  letter-spacing: -0.025em;
}

.market-intro h2 span {
  background: var(--mp-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.market-intro-desc {
  color: var(--mp-text-body);
  line-height: 1.85;
  font-size: 16px;
  margin-bottom: 16px;
}

.market-intro-image-wrapper {
  max-width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(18, 85, 140, 0.08);
}

/* Glassmorphism stats float card */
.market-stats-float {
  position: relative;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(18,85,140,0.1);
  border-radius: var(--mp-radius);
  padding: 28px 24px;
  margin-top: 20px;
  box-shadow: 0 20px 50px rgba(18,85,140,0.09),inset 0 1px 0 rgba(255,255,255,0.9);
}

.market-stats-float::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--mp-radius) + 1px);
  background: linear-gradient(135deg,rgba(18,85,140,0.12),rgba(0,180,216,0.06),transparent 60%);
  z-index: -1;
}

.market-stat-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}

.market-stat-item {
  text-align: center;
  padding: 14px 10px;
  border-radius: var(--mp-radius-sm);
  background: linear-gradient(160deg,#f8fafc,#ffffff);
  border: 1px solid var(--mp-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.market-stat-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--mp-shadow-sm);
}

.market-stat-number {
  font-size: 1.75rem;
  font-weight: 900;
  background: var(--mp-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}

.market-stat-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--mp-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.35;
}

/* ============================================================
   SECTION 2: PRODUCT INFORMATION
   Feature Timeline + Staggered left-accent cards
   ============================================================ */
.market-product-section {
  position: relative;
  padding: 3rem 32px;
  background: var(--mp-bg);
}

.market-product-desc {
  color: #000000;
  line-height: 1.8;
  margin-bottom: 24px;
}

.market-product-block {
   border-bottom: 1px solid var(--mp-border);
}

.market-product-block:first-child { padding-top: 0; }
.market-product-block:last-child { border-bottom: none; }

/* Feature Timeline */
.market-feature-timeline {
  position: relative;
  padding-left: 44px;
  margin-top: 8px;
}

.market-feature-timeline::before {
  content: "";
  position: absolute;
  left: 13px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg,var(--mp-blue) 0%,var(--mp-cyan) 50%,rgba(0,180,216,0.12) 100%);
  border-radius: 2px;
}

.market-timeline-item {
  position: relative;
  margin-bottom: 24px;
}

.market-timeline-item:last-child { margin-bottom: 0; }

.market-timeline-item::before {
  content: "";
  position: absolute;
  left: -37px; top: 7px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #ffffff;
  border: 2.5px solid var(--mp-cyan);
  box-shadow: 0 0 0 4px rgba(0,180,216,0.12);
  transition: box-shadow 0.3s ease;
}

.market-timeline-item:hover::before {
  box-shadow: 0 0 0 6px rgba(0,180,216,0.18);
}

.market-timeline-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--mp-blue-dark);
  margin-bottom: 3px;
}

.market-timeline-item p {
  font-size: 13px;
  color: var(--mp-text-muted);
  margin: 0;
  line-height: 1.65;
}

/* Staggered Product Cards */
.market-product-card-stagger {
  background: #ffffff;
  border-radius: var(--mp-radius);
  padding: 34px 30px;
  border: 1px solid var(--mp-border);
  box-shadow: var(--mp-shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--mp-ease), box-shadow 0.4s ease;
}

.market-product-card-stagger::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--mp-grad);
  border-radius: 4px 0 0 4px;
}

/* Subtle top-right ambient glow */
.market-product-card-stagger::after {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(0,180,216,0.07) 0%,transparent 70%);
  transition: transform 0.4s ease;
}

.market-product-card-stagger:hover {
  transform: translateY(-6px) translateX(3px);
  box-shadow: var(--mp-shadow-md);
}

.market-product-card-stagger:hover::after { transform: scale(1.8); }

.market-product-card-icon {
  width: 50px; height: 50px;
  border-radius: 13px;
  background: var(--mp-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 21px;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(18,85,140,0.22);
}

.market-product-card-stagger h3 {
 color: var(--mp-blue-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.market-product-card-stagger p {
  font-size: 16px;
  color: var(--mp-text-body);
  line-height: 1.75;
  margin-bottom: 18px;
}

.market-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--mp-blue);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: gap 0.25s ease, color 0.25s ease;
}

.market-card-link:hover { color: var(--mp-cyan); gap: 10px; }

/* ============================================================
   SECTION 3: APPLICATIONS
   Industrial Icon Grid — hover fill overlay
   ============================================================ */
.market-applications {
  position: relative;
  padding: 3rem 32px;
  background: #ffffff;
  overflow: hidden;
}

.market-applications::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 42%; height: 100%;
  background: linear-gradient(135deg,transparent,rgba(0,180,216,0.025));
  pointer-events: none;
}

.market-applications .container { position: relative; z-index: 2; }

.market-app-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.market-app-card {
  position: relative;
  background: var(--mp-bg);
  border-radius: var(--mp-radius);
  padding: 30px 22px;
  border: 1px solid var(--mp-border);
  transition: all 0.4s var(--mp-ease);
  overflow: hidden;
  cursor: default;
}

/* Hover fill */
.market-app-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--mp-grad);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: var(--mp-radius);
  z-index: 0;
}

.market-app-card:hover::after { opacity: 1; }
.market-app-card > * { position: relative; z-index: 1; }

.market-app-icon {
  width: 54px; height: 54px;
  border-radius: 15px;
  background: rgba(18,85,140,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--mp-blue);
  margin-bottom: 16px;
  flex-shrink: 0;
  transition: background 0.4s ease, color 0.4s ease, transform 0.4s ease;
}

.market-app-card:hover .market-app-icon {
  background: rgba(255,255,255,0.18);
  color: #ffffff;
  transform: scale(1.08) rotate(6deg);
}

.market-app-card h4 {
  color: var(--mp-blue-dark);
  margin-bottom: 7px;
  line-height: 1.3;
  transition: color 0.4s ease;
}

.market-app-card:hover h4 { color: #ffffff; }

.market-app-card p {
  font-size: 16px;
  color: black;
  margin: 0;
  line-height: 1.65;
  transition: color 0.4s ease;
}

.market-app-card:hover p { color: rgba(255,255,255,0.85); }

/* Featured wide card */
.market-app-card.market-app-featured {
  grid-column: span 2;
  flex-direction: row;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 30px 34px;
  background: linear-gradient(135deg,#f0f7ff,#e8f4fd);
  border-color: rgba(18,85,140,0.1);
}

.market-app-card.market-app-featured::after {
  background: linear-gradient(135deg,#0b1e33,var(--mp-blue));
}

.market-app-card.market-app-featured .market-app-icon {
  width: 68px; height: 68px;
  border-radius: 18px;
  font-size: 28px;
  flex-shrink: 0;
}

.market-app-card.market-app-featured h4 { font-size: 1.05rem; }
.market-app-card.market-app-featured p { font-size: 14px; }

/* ============================================================
   SECTION 4: WHY CHOOSE US
   Deep dark section — large typographic hero + numbered blocks
   ============================================================ */
.market-why {
  position: relative;
  padding: 3rem 32px;
  background: var(--mp-blue-dark);
  overflow: hidden;
}

.market-why-desc {
  color: rgb(255, 255, 255);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 900px;
}

/* Ambient blob decorations */
.market-why::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(0,180,216,0.09) 0%,transparent 70%);
}

.market-why::after {
  content: "";
  position: absolute;
  bottom: -80px; left: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(18,85,140,0.14) 0%,transparent 70%);
}

.market-why .container { position: relative; z-index: 2; }

/* Overrides for dark background */
.market-why .market-section-eyebrow {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
  color: var(--mp-cyan);
}

.market-why .market-section-title { color: #ffffff; }

/* Oversized typographic headline */
.market-why-headline {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 6px;
}

.market-why-headline span {
  background: linear-gradient(135deg,var(--mp-cyan),#38f0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.market-why-subline {
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Numbered blocks grid */
.market-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Numbered blocks grid - full width version */
.market-why-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.market-why-block-span-full {
  grid-column: span 1;
}
@media (min-width: 992px) {
  .market-why-block-span-full {
    grid-column: span 3;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .market-why-grid-full {
    grid-template-columns: repeat(2, 1fr);
  }
  .market-why-block-span-full {
    grid-column: span 2;
  }
}
@media (max-width: 767px) {
  .market-why-grid-full {
    grid-template-columns: 1fr;
  }
  .market-why-block-span-full {
    grid-column: span 1;
  }
}

.market-why-block {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--mp-radius);
  padding: 26px 22px;
  overflow: hidden;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s var(--mp-ease);
}

/* Top shine line */
.market-why-block::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--mp-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--mp-ease);
}

.market-why-block:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(0,180,216,0.2);
  transform: translateY(-4px);
}

.market-why-block:hover::before { transform: scaleX(1); }

.market-why-block-number {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,0.05);
  letter-spacing: -0.04em;
  position: absolute;
  top: 10px; right: 14px;
  pointer-events: none;
  user-select: none;
  transition: color 0.35s ease;
}

.market-why-block:hover .market-why-block-number { color: rgba(0,180,216,0.08); }

.market-why-block-icon {
  width: 38px; height: 38px;
  border-radius: var(--mp-radius-xs);
  background: rgba(0,180,216,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mp-cyan);
  font-size: 17px;
  margin-bottom: 13px;
  transition: background 0.35s ease;
}

.market-why-block:hover .market-why-block-icon { background: rgba(0,180,216,0.2); }

.market-why-block h4 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.market-why-block p {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  margin: 0;
  line-height: 1.65;
}

/* Image side */
.market-why-visual {
  position: relative;
  height: 100%;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.market-why-image-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.08);
}

.market-why-image-wrap img {
  display: block;
  width: 100%; height: auto;
  filter: brightness(0.82) saturate(1.1);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.market-why-image-wrap:hover img {
  filter: brightness(0.88) saturate(1.2);
  transform: scale(1.03);
}

.market-why-float-badge {
  position: absolute;
  bottom: 22px; right: -18px;
  background: rgba(255,255,255,0.97);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 195px;
  z-index: 5;
}

.market-why-float-badge-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--mp-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}

.market-why-float-badge-text strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--mp-blue-dark);
}

.market-why-float-badge-text span { font-size: 11px; color: var(--mp-text-muted); }

/* ============================================================
   SECTION 5: SERVICE AREAS
   Location Cards — map-pin style
   ============================================================ */
.market-service-areas {
  position: relative;
  padding: 3rem 32px;
  background: var(--mp-bg);
  overflow: hidden;
}

/* Subtle dot grid texture */
.market-service-areas::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='24' cy='24' r='1.2' fill='%2312558C' fill-opacity='0.035'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.market-service-areas .container { position: relative; z-index: 2; }

.market-area-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
}

.market-city-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--mp-border);
  border-radius: 14px;
  padding: 18px 18px 18px 20px;
  display: flex;
  align-items: center;
  gap: 13px;
  transition: all 0.32s var(--mp-ease);
  overflow: hidden;
}

/* Left border accent */
.market-city-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--mp-grad);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.32s var(--mp-ease);
  border-radius: 4px 0 0 4px;
}

.market-city-card:hover {
  background: #ffffff;
  border-color: var(--mp-border-md);
  transform: translateX(4px);
  box-shadow: var(--mp-shadow-sm);
}

.market-city-card:hover::before { transform: scaleY(1); }

.market-city-pin {
  width: 36px; height: 36px;
  border-radius: var(--mp-radius-xs);
  background: rgba(18,85,140,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--mp-blue);
  flex-shrink: 0;
  transition: background 0.32s ease, transform 0.32s ease;
}

.market-city-card:hover .market-city-pin {
  background: var(--mp-grad);
  color: #ffffff;
  transform: scale(1.08);
}

.market-city-info strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--mp-blue-dark);
  margin-bottom: 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.market-city-card:hover .market-city-info strong { color: var(--mp-blue); }

.market-city-info span { font-size: 16px; color: #021229; }

/* ============================================================
   SECTION 6: RELATED SEARCHES
   Google-style search chip pills
   ============================================================ */
.market-related-searches {
  position: relative;
  padding: 3rem 32px;
  background: #ffffff;
}

.market-search-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.market-search-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--mp-bg);
  border: 1.5px solid var(--mp-border);
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  color: var(--mp-text-body);
  text-decoration: none;
  transition: all 0.28s var(--mp-ease);
  box-shadow: 0 2px 8px rgba(18,85,140,0.04);
  white-space: nowrap;
  max-width: 100%;
}

/* search icon via pseudo */
.market-search-chip::before {
  content: "\F52A"; /* bi-search */
  font-family: "bootstrap-icons";
  font-size: 11px;
  color: #94a3b8;
  transition: color 0.28s ease;
}

.market-search-chip:hover {
  background: var(--mp-grad);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(18,85,140,0.2);
}

.market-search-chip:hover::before { color: rgba(255,255,255,0.7); }

/* ============================================================
   SECTION 7: LOCATION / MAP
   ============================================================ */
.market-location-section {
  position: relative;
  padding: 3rem 32px;
  background: var(--mp-bg);
}

.market-map-wrapper {
  border-radius: var(--mp-radius);
  overflow: hidden;
  box-shadow: var(--mp-shadow-md);
  border: 1px solid var(--mp-border);
}

.market-map-wrapper iframe {
  display: block;
  width: 100%; height: 420px;
  border: none;
}

/* Dark contact card */
.market-contact-card {
  background: var(--mp-grad-dark);
  border-radius: var(--mp-radius);
  padding: 34px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 50px rgba(18,85,140,0.22);
  position: relative;
  overflow: hidden;
}

.market-contact-card::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(0,180,216,0.14) 0%,transparent 70%);
}

.market-contact-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}

.market-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.market-contact-icon {
  width: 36px; height: 36px;
  border-radius: var(--mp-radius-xs);
  background: rgba(255,255,255,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mp-cyan);
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

.market-contact-row p,
.market-contact-row a {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  margin: 0;
  text-decoration: none;
  line-height: 1.55;
  transition: color 0.25s ease;
}

.market-contact-row a:hover { color: var(--mp-cyan); }

/* CTA button inside contact card */
.market-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  margin-top: 8px;
  background: linear-gradient(135deg,var(--mp-cyan),#0077a8);
  border-radius: var(--mp-radius-sm);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.38s var(--mp-ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,180,216,0.28);
  white-space: nowrap;
}

.market-cta-btn-primary::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,0.2),transparent);
  transform: skewX(-25deg);
}

.market-cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,180,216,0.38);
  color: #ffffff;
}

.market-cta-btn-primary:hover::after {
  left: 150%;
  transition: left 0.65s ease;
}

/* ============================================================
   SECTION 8: FAQ
   Modern accordion with animated left border + smooth expand
   ============================================================ */
.market-faq-section {
  position: relative;
  padding: 3rem 32px;
  background: #ffffff;
}

.market-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 860px;
  margin: 0 auto;
}

.market-faq-item {
  background: var(--mp-bg);
  border-radius: var(--mp-radius);
  border: 1px solid var(--mp-border);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.market-faq-item.market-faq-open {
  border-color: var(--mp-border-md);
  box-shadow: var(--mp-shadow-sm);
  background: #ffffff;
}

.market-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  position: relative;
  transition: background 0.25s ease;
}

/* Animated left accent bar */
.market-faq-question::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--mp-grad);
  border-radius: 4px 0 0 4px;
  transform: scaleY(0);
  transition: transform 0.3s var(--mp-ease);
}

.market-faq-item.market-faq-open .market-faq-question::before { transform: scaleY(1); }

.market-faq-q-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--mp-blue-dark);
  line-height: 1.45;
  flex: 1;
  transition: color 0.25s ease;
}

.market-faq-item.market-faq-open .market-faq-q-text { color: var(--mp-blue); }

.market-faq-icon {
  width: 30px; height: 30px;
  border-radius: var(--mp-radius-xs);
  background: var(--mp-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mp-blue);
  font-size: 14px;
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.4s var(--mp-ease);
}

.market-faq-item.market-faq-open .market-faq-icon {
  background: var(--mp-grad);
  color: #ffffff;
  transform: rotate(45deg);
}

.market-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--mp-ease);
}

.market-faq-item.market-faq-open .market-faq-answer { max-height: 280px; }

.market-faq-answer-inner {
  padding: 0 22px 20px 26px;
  font-size: 16px;
  color: var(--mp-text-body);
  line-height: 1.78;
}

/* ============================================================
   SECTION 9: CTA BANNER
   Full-width dark gradient — premium industrial feel
   ============================================================ */
.market-cta {
  position: relative;
  padding: 100px 0;
  background: var(--mp-grad-dark);
  overflow: hidden;
}

/* Mesh grid lines overlay */
.market-cta-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,0.018) 1px,transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

/* Ambient blobs */
.market-cta::before {
  content: "";
  position: absolute;
  top: -140px; left: -140px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(0,180,216,0.11) 0%,transparent 70%);
}

.market-cta::after {
  content: "";
  position: absolute;
  bottom: -100px; right: -100px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(18,85,140,0.18) 0%,transparent 70%);
}

.market-cta .container { position: relative; z-index: 2; }

.market-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(0,180,216,0.12);
  border: 1px solid rgba(0,180,216,0.25);
  border-radius: 100px;
  color: var(--mp-cyan);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.market-cta-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}

.market-cta-title span {
  background: linear-gradient(135deg,var(--mp-cyan),#38f0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.market-cta-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.58);
  line-height: 1.72;
  max-width: 520px;
  margin-bottom: 36px;
}

.market-cta-btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.market-cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--mp-radius-sm);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.market-cta-btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.28);
  transform: translateY(-3px);
  color: #ffffff;
}

/* Right feature card */
.market-cta-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--mp-radius);
  padding: 34px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.market-cta-feature-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.market-cta-feature-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
  line-height: 1.45;
}

/* Checkmark via CSS */
.market-cta-feature-list li::before {
  content: "";
  width: 22px; height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--mp-grad) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E") no-repeat center;
  background-size: auto, 11px;
}

.market-cta-rating-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.market-cta-stars {
  display: flex;
  gap: 3px;
  color: #fbbf24;
  font-size: 13px;
}

.market-cta-rating-text {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.market-cta-rating-text strong { color: rgba(255,255,255,0.82); }

/* ============================================================
   RESPONSIVE — Tablet 991px
   ============================================================ */
@media (max-width: 1199px) {
  .market-why-headline { font-size: 3rem; }
  .market-cta-title { font-size: 2.5rem; }
}

@media (max-width: 991px) {

  .market-intro,
  .market-product-section,
  .market-applications,
  .market-why,
  .market-service-areas,
  .market-related-searches,
  .market-location-section,
  .market-faq-section,
  .market-cta { padding: 2.5rem 24px !important; }

  .market-intro::before {
    width: 100%;
    clip-path: none;
    height: 45%;
    top: 0;
  }

  .market-stat-row { grid-template-columns: repeat(4,1fr); }
  .market-stats-float { margin-top: 24px; }

  .market-app-grid { grid-template-columns: repeat(2,1fr); }
  .market-app-card.market-app-featured { grid-column: span 2; }

  .market-why-headline { font-size: 2.6rem; }
  .market-why-grid { grid-template-columns: 1fr 1fr; }
  .market-why-visual { min-height: auto; margin-bottom: 32px; }
  .market-why-float-badge { right: 0; }

  .market-area-grid { grid-template-columns: repeat(2,1fr); }

  .market-cta-title { font-size: 2.3rem; }

  .market-product-block { padding: 48px 0; }
}

/* ============================================================
   RESPONSIVE — Mobile 767px
   ============================================================ */
@media (max-width: 767px) {

  .market-intro,
  .market-product-section,
  .market-applications,
  .market-why,
  .market-service-areas,
  .market-related-searches,
  .market-location-section,
  .market-faq-section,
  .market-cta { padding: 2rem 16px !important; }

  .market-intro-text h2 { font-size: 1.75rem; }
  .market-stat-row { grid-template-columns: repeat(2,1fr); gap: 10px; }

  .market-app-grid { grid-template-columns: 1fr; }
  .market-app-card.market-app-featured {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
  }

  .market-why-headline { font-size: 2rem; }
  .market-why-grid { grid-template-columns: 1fr; }
  .market-why-float-badge { position: static; margin-top: 16px; display: inline-flex; }

  .market-area-grid { grid-template-columns: 1fr; }

  .market-cta-title { font-size: 1.9rem; }
  .market-cta-btn-group { flex-direction: column; }

  .market-faq-list { max-width: 100%; }

  .market-map-wrapper iframe { height: 270px; }
  .market-contact-card { margin-top: 20px; }

  .market-intro-cta-group { flex-direction: column; gap: 10px; }

  .market-search-chip {
    font-size: 15px;
    padding: 8px 14px;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }

  .market-toc-mobile-nav { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — Small 575px
   ============================================================ */
@media (max-width: 575px) {
  .market-section-title { font-size: 1.5rem; }
  .market-why-headline { font-size: 1.75rem; }
  .market-cta-title { font-size: 1.65rem; }
  .market-stat-number { font-size: 1.55rem; }
  .market-why-block-number { font-size: 2.5rem; }
  .market-why-block { padding: 20px 18px; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  #market-toc,
  .market-toc-mobile,
  .market-reading-progress { display: none !important; }

  .market-why,
  .market-cta {
    background: #f8fafc !important;
    -webkit-print-color-adjust: exact;
  }

  .market-why .market-section-title,
  .market-why-headline,
  .market-cta-title {
    color: #0b1e33 !important;
    -webkit-text-fill-color: #0b1e33 !important;
  }
}

/* ============================================================
   UI/UX IMPROVEMENTS & TYPOGRAPHY STANDARDS
   ============================================================ */
.col-lg-9 p,
.col-lg-9 li,
.market-contact-row p,
.market-contact-row a,
.market-faq-answer-inner,
.market-faq-q-text,
.market-toc-nav li a,
.mobile-toc-nav .nav-link {
  font-size: 16px !important;
  line-height: 1.8 !important;
}

.col-lg-9 h2 {
  margin-bottom: 1.5rem !important;
}

.col-lg-9 p {
  margin-bottom: 1.5rem !important;
}

.market-intro-cta-group {
  margin-top: 2rem !important;
}

.market-section-title-underline {
  margin-bottom: 1.5rem !important;
}

/* Ensure cards and grids breathe */
.market-app-card,
.market-why-block,
.market-city-card,
.market-product-card-stagger {
  padding: 30px !important;
}

.market-app-card p,
.market-why-block p,
.market-product-card-stagger p {
  font-size: 16px !important;
  line-height: 1.6 !important;
}

/* Verified Customer Reviews Card Widget */
.market-review-widget-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
  padding: 34px 28px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.verified-badge-wrapper {
  margin-bottom: 22px;
  display: flex;
  justify-content: center;
}

.verified-circle-outer {
  width: 72px;
  height: 72px;
  border: 2px solid #3b82f6; /* Blue ring */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.verified-circle-inner {
  width: 100%;
  height: 100%;
  background: #10b981; /* Green fill */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 26px;
}

.reviews-card-title {
  font-size: 22px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 6px;
  line-height: 1.25;
}

.reviews-card-subtitle {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

.reviews-card-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}

.reviews-card-stars i {
  color: #fbbf24; /* Gold stars */
  font-size: 22px;
}

.reviews-card-count {
  font-size: 16px;
  font-weight: 700;
  color: #334155;
}

.reviews-card-action {
  width: 100%;
}

.reviews-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 220px;
  padding: 12px 28px;
  background: #dc2626; /* Premium Red button */
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 700;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(220, 38, 38, 0.25);
  transition: all 0.3s ease;
}

.reviews-card-btn:hover {
  background: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(220, 38, 38, 0.35);
}

/* Inline highlighted link for text */
.market-inline-link {
  color: var(--mp-blue);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease;
}

.market-inline-link:hover {
  color: var(--mp-cyan);
}
