/* ==========================================================================
   SENMAKETE - HOME REDESIGN STYLESHEET
   ========================================================================== */

:root {
  /* Elevate brand colors */
  --primary-rgb: 37, 99, 235; /* #2563eb */
  --secondary-rgb: 100, 116, 139; /* #64748b */
  --accent-teal: #0d9488;
  --accent-teal-rgb: 13, 148, 136;
  --accent-violet: #8b5cf6;
  --accent-violet-rgb: 139, 92, 246;
  
  /* Dark mode / Hero variables */
  --c-dark-bg: #070a13;
  --c-dark-card: rgba(15, 23, 42, 0.45);
  --c-glass-border: rgba(255, 255, 255, 0.08);
  --c-glass-shine: rgba(255, 255, 255, 0.03);
  
  /* Standard values */
  --font-serif: 'Cormorant Garamond', 'Playfair Display', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  --shadow-premium: 0 10px 30px -10px rgba(0, 0, 0, 0.08), 0 1px 1px 0 rgba(0, 0, 0, 0.04);
  --shadow-premium-hover: 0 20px 40px -15px rgba(37, 99, 235, 0.15), 0 8px 16px -8px rgba(139, 92, 246, 0.1);
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

/* --------------------------------------------------------------------------
   1. HERO SLIDER REDESIGN
   -------------------------------------------------------------------------- */
.hero-slider-redesign {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 650px;
  background-color: var(--c-dark-bg);
  overflow: hidden;
}

/* Slides structure */
.redesign-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  padding: 0 8%;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.redesign-slide.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

/* Background image with Ken Burns effect */
.slide-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.1);
  opacity: 0;
  transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.2s ease;
}

.redesign-slide.active .slide-backdrop {
  transform: scale(1);
  opacity: 0.35; /* Darkened backdrop to make text pop */
}

.redesign-slide.leave .slide-backdrop {
  transform: scale(0.95);
  opacity: 0;
  transition: transform 1s ease, opacity 0.8s ease;
}

/* Dark gradient overlay for text readability */
.slider-overlay-mesh {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(15, 23, 42, 0.85) 0%, rgba(7, 10, 19, 0.95) 70%);
  z-index: 2;
}

/* Ambient glow blobs */
.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.15;
  z-index: 1;
  animation: pulse-glow 8s infinite alternate ease-in-out;
}

.glow-blob-1 {
  top: 10%;
  left: 15%;
  width: 350px;
  height: 350px;
  background: rgba(var(--primary-rgb), 0.5);
}

.glow-blob-2 {
  bottom: 10%;
  right: 15%;
  width: 400px;
  height: 400px;
  background: rgba(var(--accent-violet-rgb), 0.4);
}

@keyframes pulse-glow {
  0% { transform: scale(1) translate(0, 0); opacity: 0.12; }
  100% { transform: scale(1.15) translate(20px, -20px); opacity: 0.2; }
}

/* ── SLIDE CONTENT ── */
.slide-info-panel {
  position: relative;
  z-index: 3;
  max-width: 680px;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--accent-violet-rgb), 0.12);
  border: 1px solid rgba(var(--accent-violet-rgb), 0.25);
  color: #c084fc;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-smooth);
  transition-delay: 0.2s;
}

.redesign-slide.active .slide-badge {
  opacity: 1;
  transform: translateY(0);
}

.slide-badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-violet);
  box-shadow: 0 0 8px var(--accent-violet);
}

.slide-main-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-smooth);
  transition-delay: 0.35s;
}

.redesign-slide.active .slide-main-title {
  opacity: 1;
  transform: translateY(0);
}

.slide-main-title span {
  background: linear-gradient(135deg, #60a5fa 0%, var(--accent-violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slide-main-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}

.slide-text-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #cbd5e1;
  margin-bottom: 36px;
  max-width: 520px;
  opacity: 0;
  transform: translateY(25px);
  transition: var(--transition-smooth);
  transition-delay: 0.5s;
}

.redesign-slide.active .slide-text-desc {
  opacity: 1;
  transform: translateY(0);
}

.slide-action-row {
  display: flex;
  gap: 16px;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-smooth);
  transition-delay: 0.65s;
}

.redesign-slide.active .slide-action-row {
  opacity: 1;
  transform: translateY(0);
}

/* Premium Buttons */
.btn-redesign-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 1) 0%, rgba(var(--accent-violet-rgb), 1) 100%);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.35);
  transition: var(--transition-smooth);
}

.btn-redesign-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(var(--accent-violet-rgb), 0.45);
}

.btn-redesign-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-redesign-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
  transform: translateY(-3px);
}

/* ── VISUAL PANEL (Right Side Stats) ── */
.slide-visual-panel {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 340px;
  margin-left: auto;
  opacity: 0;
  transform: translateX(40px);
  transition: var(--transition-smooth);
  transition-delay: 0.6s;
}

.redesign-slide.active .slide-visual-panel {
  opacity: 1;
  transform: translateX(0);
}

.glass-stat-card {
  background: var(--c-dark-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--c-glass-border);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-glass);
  position: relative;
  overflow: hidden;
}

.glass-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
}

.stat-item-redesign {
  margin-bottom: 24px;
}

.stat-item-redesign:last-child {
  margin-bottom: 0;
}

.stat-number-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.stat-value {
  font-family: var(--font-sans);
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-unit {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-violet);
}

.stat-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
  margin-top: 6px;
}

.stat-indicator-bar {
  margin-top: 10px;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 9999px;
  overflow: hidden;
}

.stat-fill-bar {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, var(--accent-violet));
  border-radius: 9999px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.8s;
}

.redesign-slide.active .stat-fill-bar {
  /* Dynamically configured in HTML/JS */
}

/* ── SLIDER CONTROLS ── */
.slider-footer-controls {
  position: absolute;
  bottom: 40px;
  left: 8%;
  right: 8%;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ctrl-arrows-container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ctrl-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.ctrl-arrow-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.ctrl-dots-group {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ctrl-dot-pill {
  cursor: pointer;
  position: relative;
  width: 24px;
  height: 4px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  transition: var(--transition-smooth);
}

.ctrl-dot-pill::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: linear-gradient(90deg, #3b82f6, var(--accent-violet));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.1s linear;
}

.ctrl-dot-pill.active {
  width: 40px;
  background: rgba(255, 255, 255, 0.1);
}

.ctrl-dot-pill.active::after {
  transform: scaleX(1);
  transition: transform var(--slide-dur, 6000ms) linear;
}

.redesign-progress-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, var(--accent-violet), var(--accent-teal));
  transform: scaleX(0);
  transform-origin: left;
  z-index: 20;
}

.redesign-progress-line.running {
  transform: scaleX(1);
  transition: transform var(--slide-dur, 6000ms) linear;
}

.slide-num-indicator {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.slide-num-current {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

/* Floating particle layer */
.space-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.space-particles .particle-dot {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: float-up linear infinite;
}

@keyframes float-up {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.5; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* --------------------------------------------------------------------------
   2. BOUTIQUE SECTION & INTERACTIVE FILTER
   -------------------------------------------------------------------------- */
.section-premium-head {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3rem;
  padding: 0 20px;
}

.redesign-badge {
  display: inline-block;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 9999px;
  border: 1px solid rgba(37, 99, 235, 0.15);
  margin-bottom: 12px;
}

.section-premium-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-premium-head p {
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.5;
}

/* Category Filter Tabs */
.filter-tabs-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
  padding: 0 20px;
}

.filter-tabs-pills {
  display: flex;
  background: #f1f5f9;
  border-radius: 14px;
  padding: 6px;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none; /* Hide scrollbar Firefox */
  max-width: 100%;
}

.filter-tabs-pills::-webkit-scrollbar {
  display: none; /* Hide scrollbar Chrome/Safari */
}

.filter-tab-pill {
  border: none;
  background: transparent;
  padding: 8px 20px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748b;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.filter-tab-pill:hover {
  color: #0f172a;
}

.filter-tab-pill.active {
  background: #ffffff;
  color: #2563eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Grid layout with flex animations */
.redesign-boutique-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

/* Redesigned Card */
.boutique-card-redesign {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid #f1f5f9;
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.boutique-card-redesign:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium-hover);
  border-color: rgba(var(--primary-rgb), 0.15);
}

/* Card Visual Header */
.card-media-box {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #f8fafc;
}

.card-media-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.boutique-card-redesign:hover .card-media-box img {
  transform: scale(1.08);
}

/* Float Experience Badge */
.card-exp-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(13, 148, 136, 0.85); /* Emerald accent */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 6px 12px;
  text-align: center;
  color: #ffffff;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-exp-val {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
}

.card-exp-lbl {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 2px;
  line-height: 1.1;
}

/* Hover overlay link */
.card-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.2) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 3;
  transition: opacity 0.35s ease;
}

.boutique-card-redesign:hover .card-hover-overlay {
  opacity: 1;
}

.card-overlay-btn {
  background: #ffffff;
  color: #0f172a;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(15px);
  transition: var(--transition-smooth);
}

.card-overlay-btn:hover {
  background: var(--accent-teal);
  color: #ffffff;
  transform: translateY(15px) scale(1.05); /* keep offset, add slight bounce */
}

.boutique-card-redesign:hover .card-overlay-btn {
  transform: translateY(0);
}

/* Card Body Info */
.card-content-box {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-name-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 8px;
  transition: var(--transition-fast);
}

.boutique-card-redesign:hover .card-name-title {
  color: #2563eb;
}

.card-cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748b;
  align-self: flex-start;
  text-transform: capitalize;
}

.card-cat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-teal);
}

/* --------------------------------------------------------------------------
   3. ABOUT SECTION - PREMIUM MULTILAYER LAYOUT
   -------------------------------------------------------------------------- */
.about-redesign-wrapper {
  padding: 7rem 0;
  background: #ffffff;
}

.about-redesign-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Custom left image cards stack */
.about-media-stack {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-main-img-box {
  width: 85%;
  aspect-ratio: 4/3;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(15, 23, 42, 0.25);
  position: relative;
}

.about-main-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-main-img-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(139, 92, 246, 0.15));
}

/* Overlapping glass floating badge */
.about-floating-glass-badge {
  position: absolute;
  bottom: -25px;
  right: 5%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.15);
  animation: float-badge 6s infinite alternate ease-in-out;
}

@keyframes float-badge {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.about-badge-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(13, 148, 136, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-teal);
}

.about-badge-details {
  display: flex;
  flex-direction: column;
}

.about-badge-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
  letter-spacing: -0.02em;
}

.about-badge-txt {
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748b;
  line-height: 1.3;
  margin-top: 2px;
}

/* Right side content layout */
.about-content-panel {
  display: flex;
  flex-direction: column;
}

.about-content-panel h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.about-content-panel p {
  color: #64748b;
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Custom interactive feature list */
.about-points-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.about-point-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  padding: 16px;
  transition: var(--transition-smooth);
}

.about-point-card:hover {
  background: #ffffff;
  box-shadow: var(--shadow-premium);
  border-color: rgba(37, 99, 235, 0.12);
  transform: translateY(-2px);
}

.about-point-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.about-point-card span {
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
}

/* --------------------------------------------------------------------------
   4. FUTURISTIC CTA BOUTIQUE SECTION
   -------------------------------------------------------------------------- */
.cta-premium-section {
  padding: 6rem 0;
  position: relative;
  background-color: #070910;
  overflow: hidden;
}

/* Background mesh */
.cta-mesh-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.cta-glass-box {
  position: relative;
  z-index: 2;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 5rem 2rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.cta-glass-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.cta-glass-box h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-glass-box p {
  color: #94a3b8;
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.cta-actions-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   5. RESPONSIVE DESIGN
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .redesign-slide {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 6%;
  }
  
  .slide-info-panel {
    max-width: 100%;
    margin-bottom: 2rem;
  }
  
  .slide-text-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .slide-action-row {
    justify-content: center;
  }
  
  .slide-visual-panel {
    display: none; /* Hide stats panel on tablet/mobile slider to fit content */
  }
  
  .about-redesign-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .about-media-stack {
    order: 2;
  }
  
  .about-content-panel {
    order: 1;
    text-align: center;
  }
  
  .about-point-card {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-slider-redesign {
    height: auto;
    padding-top: 80px;
    padding-bottom: 100px;
  }
  
  .redesign-slide {
    position: relative;
    grid-template-columns: 1fr;
    padding: 0 4%;
    opacity: 0;
    display: none;
  }
  
  .redesign-slide.active {
    opacity: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .slider-footer-controls {
    bottom: 24px;
    flex-direction: column;
    gap: 16px;
  }
  
  .about-points-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-glass-box {
    padding: 3.5rem 1.5rem;
  }
}
