/* ====================================================
   HERO FIRST-FOLD OPTIMIZATION (14-INCH LAPTOP & ALL DEVICES)
   ==================================================== */
.hero-section {
  position: relative;
  padding-top: clamp(28px, 3.5vw, 48px);
  padding-bottom: clamp(20px, 2.5vw, 36px);
  background: radial-gradient(circle at 85% 15%, rgba(212, 175, 55, 0.14) 0%, transparent 45%),
              radial-gradient(circle at 15% 85%, rgba(232, 165, 152, 0.12) 0%, transparent 50%),
              linear-gradient(135deg, #FCF8F3 0%, #F7F2EA 100%);
  overflow: hidden;
  height: auto;
  min-height: auto;
  display: flex;
  align-items: center;
}

.hero-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: var(--container-padding-mobile);
  padding-right: var(--container-padding-mobile);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

/* Desktop Grid (45% Content / 55% Visual) */
@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 0.88fr 1.12fr;
    gap: 2.25rem;
    align-items: center;
  }
  .hero-content-col {
    order: 1;
  }
  .hero-img-col {
    order: 2;
  }
}

/* Mobile Image First */
@media (max-width: 991px) {
  .hero-img-col {
    order: 1;
  }
  .hero-content-col {
    order: 2;
  }
}

/* Compact Header Badges Strip */
.hero-badges-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.6rem;
}

.hero-badge-pill {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.hero-badge-pill.gold-rating {
  background: #2a040b;
  color: #fff;
  border-color: var(--accent);
}

.hero-badge-pill.gold-rating .stars {
  color: var(--accent);
}

/* Hero Typography - 14-inch Laptop Responsive Scaling */
.hero-content-col h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 2.8vw, 2.65rem);
  line-height: 1.08;
  margin-bottom: 0.6rem;
  letter-spacing: -0.5px;
  color: var(--dark);
  max-width: 540px;
}

/* 14-Inch Laptop Media Query (1024px to 1440px or screens with <= 820px height) */
@media (min-width: 992px) and (max-width: 1440px), (max-height: 820px) and (min-width: 992px) {
  .hero-section {
    padding-top: 24px;
    padding-bottom: 20px;
  }
  .hero-content-col h1 {
    font-size: clamp(1.65rem, 2.4vw, 2.25rem);
    line-height: 1.1;
    margin-bottom: 0.45rem;
  }
  .hero-subheading {
    font-size: 0.88rem;
    line-height: 1.45;
    margin-bottom: 0.75rem;
  }
  .hero-cta-row {
    margin-bottom: 0.75rem;
  }
  .hero-trust-grid {
    margin-bottom: 0.65rem;
  }
  .hero-trust-card {
    height: 40px;
    padding: 0.35rem 0.6rem;
  }
  .hero-trust-title {
    font-size: 0.78rem;
  }
  .hero-trust-sub {
    font-size: 0.68rem;
  }
  .hero-img-card {
    max-height: 360px !important;
  }
  .hero-gbp-strip {
    padding: 0.4rem 0.75rem;
  }
}

.hero-subheading {
  font-size: clamp(0.88rem, 1vw, 0.98rem);
  color: var(--text-muted);
  margin-bottom: 1rem;
  max-width: 540px;
  line-height: 1.5;
}

.hero-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  width: 100%;
}

@media (max-width: 576px) {
  .hero-cta-row {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
}

.hero-cta-row .btn {
  width: 100%;
  height: 52px;
  min-height: 52px;
  font-size: 15px;
  border-radius: 16px;
  justify-content: center;
}

/* Instagram Pill Badge */
.hero-insta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1.5px solid rgba(220, 39, 67, 0.35);
  padding: 0.45rem 1rem;
  border-radius: 50px;
  color: #1c0205;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(92, 13, 24, 0.05);
  margin-bottom: 1.1rem;
}

.hero-insta-pill:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff !important;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(220, 39, 67, 0.35);
}

.hero-insta-pill strong {
  color: #dc2743;
}

.hero-insta-pill:hover strong {
  color: #ffffff;
}

/* Premium Luxury Feature Cards Row */
.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

@media (max-width: 767px) {
  .hero-trust-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
}

.hero-trust-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(253, 248, 243, 0.9) 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: 16px;
  padding: 0.65rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: 0 6px 18px rgba(92, 13, 24, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-trust-card:hover {
  transform: translateY(-3px);
  border-color: #d4af37;
  box-shadow: 0 12px 28px rgba(92, 13, 24, 0.12), 0 0 18px rgba(212, 175, 55, 0.35);
  background: #ffffff;
}

.hero-trust-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, #3b040b 0%, #1c0205 100%);
  color: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 4px 10px rgba(59, 4, 11, 0.2);
}

.hero-trust-info {
  display: flex;
  flex-direction: column;
}

.hero-trust-title {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 0.85rem;
  font-weight: 700;
  color: #1c0205;
  margin-bottom: 2px;
  line-height: 1.15;
}

.hero-trust-sub {
  font-size: 0.72rem;
  color: #595959;
  line-height: 1.15;
  font-weight: 500;
}

/* Google Business Strip - 3-Column Luxury Trust Bar */
.hero-gbp-strip {
  background: linear-gradient(135deg, #3b040b 0%, #1c0205 100%);
  border: 1.5px solid #d4af37;
  border-radius: 20px;
  padding: 0.75rem 1rem;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1.05fr;
  align-items: center;
  gap: 0;
  box-shadow: 0 14px 35px rgba(59, 4, 11, 0.35), 0 0 25px rgba(212, 175, 55, 0.25);
  position: relative;
  overflow: hidden;
  transition: all 300ms ease;
}

.hero-gbp-strip:hover {
  border-color: #f7e7b4;
  box-shadow: 0 16px 40px rgba(59, 4, 11, 0.45), 0 0 35px rgba(212, 175, 55, 0.4);
}

.hero-gbp-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  padding: 0.15rem 0.6rem;
  text-align: left;
}

.hero-gbp-item:not(:last-child) {
  border-right: 1px solid rgba(212, 175, 55, 0.35);
}

@media (max-width: 640px) {
  .hero-gbp-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.25rem;
    padding: 0.55rem 0.35rem;
    border-radius: 14px;
  }

  .hero-gbp-item {
    font-size: 0.7rem;
    gap: 0.2rem;
    padding: 0 0.2rem;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    line-height: 1.15;
  }

  .hero-gbp-item:not(:last-child) {
    border-right: 1px solid rgba(212, 175, 55, 0.35);
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media (max-width: 480px) {
  .hero-insta-pill {
    font-size: 0.76rem;
    padding: 0.45rem 0.75rem;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
    text-align: center;
  }
}




/* Right Side Storefront Image Column - 14-inch Laptop Compact Max Height */
.hero-img-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(92, 13, 24, 0.12), 0 0 0 1px rgba(212, 175, 55, 0.4);
  background: #FCF8F3;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  aspect-ratio: 16 / 10;
  max-height: 390px;
}

.hero-img-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 20px;
}

.hero-img-card:hover {
  transform: scale(1.015);
  box-shadow: 0 28px 50px rgba(92, 13, 24, 0.16), 0 0 20px rgba(212, 175, 55, 0.5);
}

.hero-img-col {
  position: relative;
}

/* Compact Floating Glass Overlay Badge on Image */
.hero-floating-glass-badge {
  background: linear-gradient(135deg, #3b040b 0%, #1c0205 100%);
  border: 1.5px solid #d4af37;
  padding: 0.55rem 0.85rem;
  border-radius: 16px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-around;
  box-shadow: 0 8px 24px rgba(59, 4, 11, 0.25);
  transition: all 300ms ease;
}

.hero-floating-glass-badge p {
  font-size: 0.75rem;
  margin: 0;
  line-height: 1.2;
}

.hero-floating-glass-badge strong {
  color: var(--accent-light);
  display: block;
}

/* Desktop: Overlay at bottom inside image container */
@media (min-width: 992px) {
  .hero-floating-glass-badge {
    position: absolute;
    bottom: 0.85rem;
    left: 0.85rem;
    right: 0.85rem;
    z-index: 5;
    background: rgba(15, 15, 15, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(212, 175, 55, 0.5);
  }
}

/* Mobile & Tablet: Move COMPLETELY BELOW image so photo is 100% clear */
@media (max-width: 991px) {
  .hero-floating-glass-badge {
    position: relative;
    margin-top: 0.75rem;
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .hero-floating-glass-badge {
    padding: 0.5rem 0.25rem;
    gap: 0.15rem;
  }
  .hero-floating-glass-badge strong {
    font-size: 0.71rem;
  }
}


/* GPU Accelerated Infinite Marquee Brands Bar */
.brands-bar {
  padding: 1rem 0;
  background: var(--surface-cream);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
  position: relative;
}

.brands-bar::before,
.brands-bar::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.brands-bar::before {
  left: 0;
  background: linear-gradient(to right, var(--surface-cream), transparent);
}

.brands-bar::after {
  right: 0;
  background: linear-gradient(to left, var(--surface-cream), transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 3.5rem;
  animation: marqueeScroll 28s linear infinite;
  will-change: transform;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.brand-badge {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 2px;
  white-space: nowrap;
  opacity: 0.85;
  transition: opacity var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.brand-badge:hover {
  opacity: 1;
  color: var(--primary);
  transform: scale(1.05);
}

/* ====================================================
   LUXURY REAL PHOTOGRAPHY BEFORE & AFTER GALLERY
   ==================================================== */
.ba-section-wrapper {
  background: linear-gradient(180deg, #fffdfa 0%, #fbf8f5 100%);
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.ba-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3rem auto;
}

.ba-header h2 {
  font-size: var(--fs-h2);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.ba-header p {
  color: var(--text-muted);
  font-size: var(--fs-body);
  line-height: 1.6;
}

/* Main Comparison Canvas */
.ba-slider-card {
  max-width: 940px;
  margin: 0 auto;
  position: relative;
}

.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;
  box-shadow: 0 24px 48px rgba(92, 13, 24, 0.14), 0 0 0 1px var(--border-gold);
  background: #0f0f0f;
}

@media (max-width: 600px) {
  .ba-slider {
    aspect-ratio: 4 / 3;
  }
}

.ba-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ba-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  border-right: 2.5px solid #d4af37;
  box-shadow: 2px 0 10px rgba(0,0,0,0.5);
  will-change: width;
}

.ba-overlay img {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--ba-container-width, 100%);
  min-width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ba-badge-floating {
  position: absolute;
  top: 1.25rem;
  z-index: 9;
  background: rgba(15, 15, 15, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md, 12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.ba-badge-floating.badge-before {
  left: 1.25rem;
  text-align: left;
}

.ba-badge-floating.badge-after {
  right: 1.25rem;
  text-align: right;
}

/* Mobile responsive badge scaling */
@media (max-width: 600px) {
  .ba-badge-floating {
    padding: 0.35rem 0.75rem;
  }
  .ba-badge-title {
    font-size: 0.72rem;
  }
  .ba-badge-desc {
    font-size: 0.68rem;
  }
  .ba-badge-floating.badge-before {
    left: 0.5rem;
    top: 0.5rem;
  }
  .ba-badge-floating.badge-after {
    right: 0.5rem;
    top: 0.5rem;
  }
}

.ba-badge-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-light);
  text-transform: uppercase;
}

.ba-badge-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 2px;
}

/* Bottom Overlay Info Pill */
.ba-bottom-overlay {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 8;
  background: rgba(15, 15, 15, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.5);
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: #fff;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.ba-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
}

.ba-info-item strong {
  color: var(--accent-light);
}

@media (max-width: 680px) {
  .ba-bottom-overlay {
    display: none;
  }
}

/* Luxury Gold Divider Handle */
.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #f7e7b4, #d4af37, #f7e7b4);
  cursor: ew-resize;
  transform: translateX(-50%);
  z-index: 10;
  box-shadow: 0 0 18px rgba(212, 175, 55, 1);
  transition: transform var(--transition-fast);
}

.ba-slider.is-dragging .ba-handle {
  transform: translateX(-50%) scaleX(1.5);
}

.ba-handle-pill {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: var(--dark);
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.7);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.ba-handle:hover .ba-handle-pill,
.ba-slider.is-dragging .ba-handle-pill {
  transform: translate(-50%, -50%) scale(1.18);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.7), 0 0 28px rgba(212, 175, 55, 1);
  background: #2a040b;
}

/* Trust Badges Bar */
.ba-trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
  padding: 0.9rem 1.5rem;
  background: rgba(212, 175, 55, 0.06);
  border: 1px dashed var(--border-gold);
  border-radius: var(--radius-md);
}

.ba-trust-item {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.ba-trust-item span {
  color: var(--accent);
  font-weight: 700;
}

/* 4 Transformation Cards Below Slider */
.ba-cards-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (min-width: 600px) {
  .ba-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .ba-cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ba-card-item {
  background: var(--surface-cream);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.ba-card-item:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md), var(--shadow-gold);
}

.ba-card-item.active {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-md), 0 0 16px rgba(212, 175, 55, 0.3);
  background: #fffdfa;
}

.ba-card-thumb-split {
  display: flex;
  width: 100%;
  height: 140px;
  position: relative;
  overflow: hidden;
}

.ba-card-thumb-split img {
  width: 50%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--dark, #1c1214);
}

.ba-card-divider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: var(--accent);
  transform: translateX(-50%);
}

.ba-card-body {
  padding: 1rem;
  text-align: center;
}

.ba-card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.ba-card-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* CTA Container */
.ba-cta-box {
  text-align: center;
  margin-top: 3rem;
}

/* ====================================================
   CREATIVE LUXURY STATS CARDS SECTION
   ==================================================== */
.stat-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

@media (max-width: 991px) {
  .stat-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 576px) {
  .stat-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.stat-card-creative {
  position: relative;
  background: linear-gradient(145deg, #ffffff 0%, #fffbf5 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: 22px;
  padding: 2rem 1.25rem 1.75rem 1.25rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(92, 13, 24, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.stat-card-creative::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  border-radius: 4px;
  opacity: 0.6;
  transition: width 300ms ease, opacity 300ms ease;
}

.stat-card-creative:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: #d4af37;
  background: #ffffff;
  box-shadow: 0 20px 45px rgba(92, 13, 24, 0.12), 0 0 25px rgba(212, 175, 55, 0.35);
}

.stat-card-creative:hover::before {
  width: 90%;
  opacity: 1;
}

.stat-icon-badge {
  width: 50px;
  height: 50px;
  margin: 0 auto 1.1rem auto;
  border-radius: 16px;
  background: linear-gradient(135deg, #3b040b 0%, #1c0205 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.5);
  color: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 8px 18px rgba(59, 4, 11, 0.25);
  transition: transform 350ms ease, background 350ms ease;
}

.stat-card-creative:hover .stat-icon-badge {
  transform: scale(1.12) rotate(6deg);
  background: linear-gradient(135deg, #5c0d18 0%, #3b040b 100%);
}

.stat-number-gradient {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #3b040b 0%, #7c1a29 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card-creative.gold-card .stat-number-gradient {
  background: linear-gradient(135deg, #b8860b 0%, #d4af37 50%, #e6ca65 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-title {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.98rem;
  font-weight: 700;
  color: #1c0205;
  margin-bottom: 0.25rem;
  line-height: 1.25;
}

/* ====================================================
   LUXURY TREATMENT COMPARISON GUIDES
   ==================================================== */
.comparison-card-luxury {
  background: #ffffff;
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(92, 13, 24, 0.06), 0 0 20px rgba(212, 175, 55, 0.15);
  margin-bottom: 2.25rem;
  transition: all 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.comparison-card-luxury:hover {
  border-color: #d4af37;
  box-shadow: 0 20px 50px rgba(92, 13, 24, 0.12), 0 0 30px rgba(212, 175, 55, 0.3);
}

.comparison-card-header {
  background: linear-gradient(135deg, #3b040b 0%, #1c0205 100%);
  padding: 1.25rem 1.75rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #d4af37;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.comparison-card-title-group {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.comparison-header-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.comparison-card-header h3 {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 1.25rem;
  color: #ffffff;
  margin: 0 0 2px 0;
  line-height: 1.2;
}

.comparison-card-header p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0;
  width: 100%;
  position: relative;
}

.comparison-table-wrapper::-webkit-scrollbar {
  height: 6px;
}

.comparison-table-wrapper::-webkit-scrollbar-track {
  background: rgba(92, 13, 24, 0.05);
}

.comparison-table-wrapper::-webkit-scrollbar-thumb {
  background: #d4af37;
  border-radius: 10px;
}

/* Mobile Swipe Hint Bar */
.mobile-table-scroll-hint {
  display: none;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.15) 0%, rgba(92, 13, 24, 0.08) 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  color: #3b040b;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.45rem 0.85rem;
  text-align: center;
}

@media (max-width: 768px) {
  .mobile-table-scroll-hint {
    display: block;
  }
  .comparison-table-luxury {
    min-width: 620px;
  }
  .comparison-table-luxury th,
  .comparison-table-luxury td {
    padding: 0.75rem 0.85rem;
    font-size: 0.82rem;
  }
}

.comparison-table-luxury {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.92rem;
}


.comparison-table-luxury th {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.14) 0%, rgba(92, 13, 24, 0.08) 100%);
  color: #3b040b;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 1rem 1.25rem;
  border-bottom: 2px solid rgba(212, 175, 55, 0.35);
  white-space: nowrap;
}

.comparison-table-luxury td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(92, 13, 24, 0.08);
  color: #444;
  vertical-align: middle;
}

.comparison-table-luxury tbody tr {
  transition: background 200ms ease;
}

.comparison-table-luxury tbody tr:nth-child(even) {
  background: #fcfaf7;
}

.comparison-table-luxury tbody tr:hover {
  background: rgba(212, 175, 55, 0.1) !important;
}

.comparison-table-luxury td.feature-title {
  font-weight: 700;
  color: #1c0205;
}

.price-tag-gold {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #3b040b 0%, #1c0205 100%);
  color: #d4af37 !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  border: 1px solid #d4af37;
  box-shadow: 0 4px 10px rgba(59, 4, 11, 0.15);
  white-space: nowrap;
}

.comparison-card-footer {
  background: #fffdfa;
  padding: 0.9rem 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ====================================================
   EQUAL-HEIGHT LUXURY PRICING CARDS
   ==================================================== */
.pricing-grid-equal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

@media (max-width: 991px) {
  .pricing-grid-equal {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}

.pricing-card-luxury {
  background: linear-gradient(145deg, #ffffff 0%, #fffbf5 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: 24px;
  padding: 1.75rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 10px 30px rgba(92, 13, 24, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 350ms cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

@media (max-width: 480px) {
  .pricing-card-luxury {
    padding: 1.25rem 1rem 1.25rem 1rem;
    border-radius: 20px;
  }
}

.pricing-card-luxury.featured-card {
  border-color: #d4af37;
  box-shadow: 0 14px 40px rgba(92, 13, 24, 0.1), 0 0 25px rgba(212, 175, 55, 0.25);
}

.pricing-card-luxury:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: #d4af37;
  background: #ffffff;
  box-shadow: 0 22px 50px rgba(92, 13, 24, 0.14), 0 0 30px rgba(212, 175, 55, 0.35);
}

.pricing-card-header {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.pricing-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #3b040b 0%, #1c0205 100%);
  border: 1px solid #d4af37;
  color: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(59, 4, 11, 0.2);
}

.pricing-card-title {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #1c0205;
  margin: 0;
}

.pricing-card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: #333333;
  padding-bottom: 0.6rem;
  border-bottom: 1px dashed rgba(92, 13, 24, 0.08);
}

.pricing-item-name {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
}

.pricing-item-name span.check-icon {
  color: #1eb954;
  font-weight: bold;
}

.price-badge-gold {
  font-weight: 700;
  color: #3b040b;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  font-size: 0.78rem;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .pricing-item {
    font-size: 0.82rem;
    gap: 0.35rem;
  }
  .price-badge-gold {
    font-size: 0.72rem;
    padding: 0.2rem 0.5rem;
  }
}



.pricing-card-footer {
  margin-top: auto;
  padding-top: 1rem;
}

/* ====================================================
   LUXURY 6-STEP WORKFLOW TIMELINE GRID
   ==================================================== */
.workflow-grid-luxury {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

@media (max-width: 991px) {
  .workflow-grid-luxury {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 600px) {
  .workflow-grid-luxury {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}

.workflow-card-luxury {
  position: relative;
  background: linear-gradient(145deg, #ffffff 0%, #fffbf5 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: 22px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 10px 30px rgba(92, 13, 24, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.workflow-card-luxury::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #d4af37 0%, #3b040b 100%);
  transition: width 300ms ease;
}

.workflow-card-luxury:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: #d4af37;
  background: #ffffff;
  box-shadow: 0 20px 45px rgba(92, 13, 24, 0.12), 0 0 25px rgba(212, 175, 55, 0.35);
}

.workflow-card-luxury:hover::before {
  width: 7px;
}

.workflow-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.workflow-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(92, 13, 24, 0.08) 100%);
  border: 1px solid rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 300ms ease, background 300ms ease;
}

.workflow-card-luxury:hover .workflow-icon-box {
  transform: scale(1.1) rotate(5deg);
  background: rgba(212, 175, 55, 0.25);
}

.workflow-step-num {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 0.88rem;
  font-weight: 700;
  background: linear-gradient(135deg, #3b040b 0%, #1c0205 100%);
  color: #d4af37;
  border: 1.5px solid #d4af37;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(59, 4, 11, 0.2);
  transition: transform 300ms ease;
}

.workflow-card-luxury:hover .workflow-step-num {
  transform: scale(1.08);
}

.workflow-card-title {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: #1c0205;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

/* ====================================================
   LUXURY CLINICAL SANITATION CARDS
   ==================================================== */
.sanitation-grid-luxury {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 991px) {
  .sanitation-grid-luxury {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 576px) {
  .sanitation-grid-luxury {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}

.sanitation-card-luxury {
  position: relative;
  background: linear-gradient(145deg, #ffffff 0%, #fffbf5 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: 22px;
  padding: 1.75rem 1.25rem;
  box-shadow: 0 10px 30px rgba(92, 13, 24, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sanitation-card-luxury::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  border-radius: 4px;
  opacity: 0.6;
  transition: width 300ms ease, opacity 300ms ease;
}

.sanitation-card-luxury:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: #d4af37;
  background: #ffffff;
  box-shadow: 0 20px 45px rgba(92, 13, 24, 0.12), 0 0 25px rgba(212, 175, 55, 0.35);
}

.sanitation-card-luxury:hover::before {
  width: 90%;
  opacity: 1;
}

.sanitation-icon-box {
  width: 52px;
  height: 52px;
  margin: 0 0 1.1rem 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #3b040b 0%, #1c0205 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.5);
  color: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 18px rgba(59, 4, 11, 0.25);
  transition: transform 350ms ease;
}

.sanitation-card-luxury:hover .sanitation-icon-box {
  transform: scale(1.12) rotate(6deg);
  background: linear-gradient(135deg, #5c0d18 0%, #3b040b 100%);
}

.sanitation-card-title {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #1c0205;
  margin-bottom: 0.4rem;
}

.sanitation-card-desc {
  font-size: 0.86rem;
  color: #555555;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.sanitation-tag {
  margin-top: auto;
  font-size: 0.76rem;
  font-weight: 700;
  color: #1eb954;
  background: rgba(30, 185, 84, 0.1);
  border: 1px solid rgba(30, 185, 84, 0.3);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  align-self: flex-start;
}

/* ====================================================
   LUXURY BEFORE VISIT & AFTERCARE GUIDANCE
   ==================================================== */
.guidance-grid-luxury {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 991px) {
  .guidance-grid-luxury {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
}

.guidance-card-luxury {
  background: #ffffff;
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(92, 13, 24, 0.06), 0 0 20px rgba(212, 175, 55, 0.15);
  transition: all 350ms ease;
}

.guidance-card-luxury:hover {
  border-color: #d4af37;
  box-shadow: 0 20px 50px rgba(92, 13, 24, 0.12), 0 0 30px rgba(212, 175, 55, 0.3);
}

.guidance-card-header {
  background: linear-gradient(135deg, #3b040b 0%, #1c0205 100%);
  padding: 1.25rem 1.5rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-bottom: 2px solid #d4af37;
}

.guidance-header-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.guidance-card-header h3 {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 1.2rem;
  color: #ffffff;
  margin: 0;
}

.guidance-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.guidance-item-chip {
  background: #fcfaf7;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  transition: background 200ms ease;
}

.guidance-item-chip:hover {
  background: rgba(212, 175, 55, 0.08);
}

.guidance-item-title {
  font-weight: 700;
  font-size: 0.92rem;
  color: #3b040b;
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ====================================================
   LUXURY GEOGRAPHIC LOCATION COVERAGE GRID
   ==================================================== */
.location-grid-luxury {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 991px) {
  .location-grid-luxury {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 600px) {
  .location-grid-luxury {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}

.location-card-luxury {
  position: relative;
  background: linear-gradient(145deg, #ffffff 0%, #fffbf5 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(92, 13, 24, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.location-card-luxury.primary-base {
  border-color: #d4af37;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(92, 13, 24, 0.08), 0 0 20px rgba(212, 175, 55, 0.2);
}

.location-card-luxury::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  border-radius: 4px;
  opacity: 0.6;
  transition: width 300ms ease, opacity 300ms ease;
}

.location-card-luxury:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: #d4af37;
  background: #ffffff;
  box-shadow: 0 20px 45px rgba(92, 13, 24, 0.12), 0 0 25px rgba(212, 175, 55, 0.35);
}

.location-card-luxury:hover::before {
  width: 90%;
  opacity: 1;
}

.location-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.location-card-title {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #1c0205;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.location-dist-badge {
  font-size: 0.76rem;
  font-weight: 700;
  color: #3b040b;
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  white-space: nowrap;
}

.location-card-desc {
  font-size: 0.86rem;
  color: #555555;
  line-height: 1.5;
  margin: 0;
}

/* ====================================================
   LUXURY QUICK AI CITATION KNOWLEDGE CARDS
   ==================================================== */
.citation-grid-luxury {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 991px) {
  .citation-grid-luxury {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}

.citation-card-luxury {
  position: relative;
  background: #ffffff;
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(92, 13, 24, 0.05);
  transition: all 350ms ease;
  display: flex;
  flex-direction: column;
}

.citation-card-luxury::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #d4af37 0%, #3b040b 100%);
  border-radius: 4px 0 0 4px;
  transition: width 300ms ease;
}

.citation-card-luxury:hover {
  transform: translateY(-6px);
  border-color: #d4af37;
  box-shadow: 0 18px 45px rgba(92, 13, 24, 0.1), 0 0 25px rgba(212, 175, 55, 0.25);
}

.citation-card-luxury:hover::before {
  width: 6px;
}

.citation-card-title {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: #3b040b;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ====================================================
   LUXURY AI EXECUTIVE CONTEXT & ENTITY PROFILE
   ==================================================== */
.entity-profile-container {
  background: #ffffff;
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(92, 13, 24, 0.06), 0 0 20px rgba(212, 175, 55, 0.15);
  transition: all 350ms ease;
}

.entity-profile-container:hover {
  border-color: #d4af37;
  box-shadow: 0 20px 50px rgba(92, 13, 24, 0.12), 0 0 30px rgba(212, 175, 55, 0.3);
}

.entity-profile-header {
  background: linear-gradient(135deg, #3b040b 0%, #1c0205 100%);
  padding: 1.25rem 1.75rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #d4af37;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.entity-header-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.entity-header-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.entity-profile-header h2 {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 1.3rem;
  color: #ffffff;
  margin: 0 0 2px 0;
}

.entity-profile-header p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.entity-profile-body {
  padding: 1.75rem 1.5rem;
  background: linear-gradient(145deg, #ffffff 0%, #fffbf5 100%);
}

.entity-profile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 991px) {
  .entity-profile-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 576px) {
  .entity-profile-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}

.entity-card-luxury {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
  transition: all 350ms cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.entity-card-luxury::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #d4af37 0%, #3b040b 100%);
  border-radius: 4px 0 0 4px;
  transition: width 300ms ease;
}

.entity-card-luxury:hover {
  transform: translateY(-6px);
  border-color: #d4af37;
  box-shadow: 0 16px 35px rgba(92, 13, 24, 0.1), 0 0 20px rgba(212, 175, 55, 0.25);
}

.entity-card-luxury:hover::before {
  width: 6px;
}

.entity-card-top {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.entity-card-icon {
  font-size: 1.25rem;
}

.entity-card-title {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #3b040b;
  margin: 0;
}

/* ====================================================
   LUXURY AUTO-SLIDING REVIEWS CAROUSEL
   ==================================================== */
.reviews-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 1rem 0 2rem 0;
}

.reviews-slider-container::before,
.reviews-slider-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.reviews-slider-container::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-light) 0%, transparent 100%);
}

.reviews-slider-container::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-light) 0%, transparent 100%);
}

.reviews-slider-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: reviewsAutoScroll 55s linear infinite;
}

.reviews-slider-container:hover .reviews-slider-track {
  animation-play-state: paused;
}

@keyframes reviewsAutoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.review-card-luxury {
  width: 350px;
  flex-shrink: 0;
  background: linear-gradient(145deg, #ffffff 0%, #fffbf5 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(92, 13, 24, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 350ms cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card-luxury:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: #d4af37;
  background: #ffffff;
  box-shadow: 0 20px 45px rgba(92, 13, 24, 0.12), 0 0 25px rgba(212, 175, 55, 0.35);
}

.review-card-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.review-stars {
  color: #d4af37;
  font-size: 1rem;
  letter-spacing: 1px;
}

.review-category-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: #3b040b;
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  white-space: nowrap;
}

.review-text-quote {
  font-size: 0.88rem;
  color: #444444;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.review-user-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(92, 13, 24, 0.08);
}

.review-avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b040b 0%, #1c0205 100%);
  border: 1px solid #d4af37;
  color: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.review-user-info {
  display: flex;
  flex-direction: column;
}

.review-user-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: #1c0205;
}

/* ====================================================
   LUXURY SYMMETRIC TRUST & DIFFERENTIATOR GRID
   ==================================================== */
.trust-grid-luxury {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 991px) {
  .trust-grid-luxury {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .trust-grid-luxury {
    grid-template-columns: repeat(1, 1fr);
  }
}

.trust-card-luxury {
  background: linear-gradient(145deg, #ffffff 0%, #fffbf5 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: 20px;
  padding: 1.6rem;
  box-shadow: 0 8px 25px rgba(92, 13, 24, 0.04);
  transition: all 350ms cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.trust-card-luxury::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #d4af37 50%, transparent 100%);
  opacity: 0.4;
  transition: opacity 300ms ease;
}

.trust-card-luxury:hover {
  transform: translateY(-8px);
  border-color: #d4af37;
  box-shadow: 0 20px 45px rgba(92, 13, 24, 0.12), 0 0 25px rgba(212, 175, 55, 0.3);
}

.trust-card-luxury:hover::after {
  opacity: 1;
}

.trust-card-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}

.trust-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #3b040b 0%, #1c0205 100%);
  border: 1px solid #d4af37;
  color: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 6px 15px rgba(59, 4, 11, 0.2);
}

.trust-pill-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: #3b040b;
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
}

.trust-card-title {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #3b040b;
  margin: 0 0 0.5rem 0;
}

/* ====================================================
   LUXURY ABOUT NARRATIVE STORY PILLARS
   ==================================================== */
.narrative-lead-card {
  background: linear-gradient(135deg, #3b040b 0%, #1c0205 100%);
  border: 1.5px solid #d4af37;
  border-radius: 24px;
  padding: 2rem;
  color: #ffffff;
  box-shadow: 0 12px 35px rgba(59, 4, 11, 0.2);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.narrative-lead-card::after {
  content: '“';
  position: absolute;
  top: -20px;
  right: 20px;
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 10rem;
  color: rgba(212, 175, 55, 0.08);
  pointer-events: none;
  line-height: 1;
}

.narrative-lead-text {
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

.narrative-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .narrative-cards-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.story-pillar-card {
  background: linear-gradient(145deg, #ffffff 0%, #fffbf5 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 8px 25px rgba(92, 13, 24, 0.04);
  transition: all 350ms cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.story-pillar-card:hover {
  transform: translateY(-6px);
  border-color: #d4af37;
  box-shadow: 0 18px 40px rgba(92, 13, 24, 0.12), 0 0 25px rgba(212, 175, 55, 0.25);
}

.story-pillar-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.story-pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #3b040b 0%, #1c0205 100%);
  border: 1px solid #d4af37;
  color: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.story-pillar-title {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: #3b040b;
  margin: 0;
}

.story-pillar-desc {
  font-size: 0.92rem;
  color: #444444;
  line-height: 1.7;
  margin: 0;
}

.narrative-bottom-banner {
  background: #FFFDF9;
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: 18px;
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}










