@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/*
font-family: "Plus Jakarta Sans", sans-serif;
font-family: "Roboto", sans-serif;
font-family: "Playfair Display", serif;
*/

:root {
  --primary-text: #050040;
  --secondary-text: #475569;
  /* slate-600 */
  --light-gray: #e2e8f0;
  /* slate-200 */
  --border-color: #cbd5e1;
  /* slate-300 */
  --hover-bg: #f1f5f9;
  /* slate-100 */
  --dark-btn-bg: #1e293b;
  /* gray-800 */
  --dark-btn-hover: #000000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
}

.hero-section {
  background-image: url('https://raw.githubusercontent.com/prebuiltui/prebuiltui/main/assets/hero/gridBackground.png');
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  font-size: 0.875rem;
  /* 14px */
  padding-bottom: 11rem;
  /* pb-44 */
}

/* Navigation */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(229, 229, 229, 0.1));
  border-bottom: 0.5px solid rgba(226, 226, 226, 0.652);
}

.nav-title {
  font-size: 1.2rem;
  font-family: 'font-family: "Playfair Display", serif;';
}

.nav-title-container {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.dropdown-data-container {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.3rem;
}

.dropdown-text-container {
  display: flex;
  flex-direction: column;
}

.ikshana-icon,
.rishi-icon {
  width: 28px;
}

@media (min-width: 768px) {
  .navbar {
    padding: 1.5rem 4rem;
    /* md:px-16 md:py-6 */
  }
}

@media (min-width: 1024px) {
  .navbar {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  /* lg:px-24 */

}

@media (min-width: 1280px) {
  .navbar {
    padding-left: 8rem;
    padding-right: 8rem;
  }

  /* xl:px-32 */
}

.logo-container {
  width: 6%;
  padding: 0;
}

.logo {
  width: 100%;
}

/* Menu Layout */
.menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-weight: 500;
}

.nav-link {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #4b5563;
  /* gray-600 */
}

/* Dropdown */
.dropdown-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}

.dropdown-toggle:hover {
  color: #4b5563;
  /* gray-600 */
}

.dropdown-icon {
  transition: transform 0.3s ease;
}

/* Fixed: Added missing rotation class */
.dropdown-icon.rotate {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  background-color: white;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: max-content;
  border-radius: 0.5rem;
  padding: 1rem;
  top: 9rem;
  /* initial hidden state */
  left: 0;
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
  transition: all 0.3s;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  z-index: 60;
}

.dropdown-menu.show {
  pointer-events: auto;
  top: 2.5rem;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  gap: 0.2rem;
  transition: all 0.2s;
}

.dropdown-item:hover {
  transform: translateX(0.25rem);
  color: #64748b;
  /* slate-500 */
}

.dropdown-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  color: #0f172a;
  font-size: 1rem;
  /* slate-900 */
}


.dropdown-desc {
  font-size: 0.8rem;
  color: #64748b;
  font-family: "Plus Jakarta", sans-serif;
}

.mt-2 {
  margin-top: 0.5rem;
}

/* Desktop Buttons */
.desktop-cta {
  display: none;
  background-color: var(--dark-btn-bg);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
  font-size: 1.2 rem;
  font-family: "Plus Jakarta", sans-serif;
}

.desktop-cta:hover {
  background-color: var(--dark-btn-hover);
}

@media (min-width: 768px) {
  .desktop-cta {
    display: block;
  }
}

/* Mobile Menu Logic & Buttons */
.close-menu-btn,
.open-menu-btn {
  background-color: var(--dark-btn-bg);
  color: white;
  padding: 0.5rem;
  border-radius: 0.375rem;
  aspect-ratio: 1 / 1;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-menu-btn:hover,
.open-menu-btn:hover {
  background-color: var(--dark-btn-hover);
}

.close-menu-btn {
  display: none;
}

@media (min-width: 768px) {
  .open-menu-btn {
    display: none;
  }
}

@media (max-width: 767px) {
  .menu {
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s;
    overflow: hidden;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    flex-direction: column;
    justify-content: center;
    width: 0;
    /* Hidden by default via JS class toggle */
    z-index: 50;
  }

  .menu.open {
    width: 100%;
  }

  .close-menu-btn {
    display: flex;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
  }
}

/* Hero Content 
.announcement-banner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: 9999px;
  width: max-content;
  margin: 10rem auto 0;
  padding: 0.5rem 1rem;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  transition: border-color 0.2s;
  font-family: "Plus Jakarta", sans-serif;
}
*/

.hero-text-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


@media (min-width: 768px) {
  .announcement-banner {
    margin-top: 8rem;
  }
}

.announcement-banner:hover {
  border-color: rgba(148, 163, 184, 0.7);
  /* slate-400/70 */
}

.banner-divider {
  height: 1rem;
  width: 1px;
  background-color: var(--border-color);
  margin: 0 0.25rem;
}

.banner-cta {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 500;
  color: var(--primary-text);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  font-weight: 500;
  max-width: 1400px;
  text-align: center;
  margin: 2rem auto 0;
  line-height: 1.25;
  color: var(--primary-text);
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

/* text-6xl */
@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

/* text-7xl */

.hero-subtitle {
  font-family: "Plus Jakarta", sans-serif;
  font-size: 0.875rem;
  max-width: 42rem;
  /* max-w-2xl */
  text-align: center;
  margin: 1.5rem auto 0;
  padding: 0 1rem;
  color: var(--secondary-text);
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.1rem;
  }
}

.cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 2rem auto 0;
  width: 100%;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .cta-container {
    flex-direction: row;
  }
}

.primary-cta,
.secondary-cta {
  width: 100%;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-family: "Plus Jakarta", sans-serif;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s;
}

@media (min-width: 640px) {

  .primary-cta,
  .secondary-cta {
    width: auto;
  }
}

.primary-cta {
  background-color: var(--dark-btn-bg);
  color: white;
  border: none;
  font-weight: 500;
}

.primary-cta:hover {
  background-color: var(--dark-btn-hover);
}

.secondary-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: white;
  border: 1px solid var(--border-color);
}

.secondary-cta span {
  font-weight: 500;
  color: var(--primary-text);
}

.secondary-cta:hover {
  background-color: rgba(226, 232, 240, 0.3);
  /* bg-slate-200/30 */
}

/* Trusted By Section */

.trusted-by-section {
  position: relative;
  width: 100%;
  padding: 8rem 0 5rem 0;
  margin-top: -6rem;
  background: linear-gradient(to bottom, transparent 0%, #fafafa 25%, #fafafa 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.content-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  text-align: center;
}

.trusted-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--primary-text);
  margin-bottom: 4rem;
}

.text-gradient {
  background: linear-gradient(135deg, #db6ccc 0%, #f69a5c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-two {
  background: linear-gradient(135deg, #8a6cdb 0%, #5cacf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}



.logo-carousel {
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  position: relative;
  padding: 1rem 0;
  /* Perfect edge blur */
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.logo-track {
  display: inline-flex;
  gap: 6rem;
  align-items: center;
  padding-right: 6rem;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.client-logo {
  height: 4rem;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.4s ease;
  cursor: pointer;
}

.client-logo:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Solutions css */
.lifecycle-section {
  background: #fafafa;
  padding: 4rem 2rem;
  position: relative;
  background-position: center top;
}

.lifecycle-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(5, 0, 64, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 0, 64, 0.03) 1px, transparent 1px);
  background-size: 100px 100px;
  background-position: center top;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 100%);
}

.solutions-content-wrapper,
.lifecycle-container {
  position: relative;
  z-index: 10;
}

.section-heading {
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.5rem;
  color: var(--primary-text);
  margin-bottom: 1rem;
}

.section-subheading {
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--secondary-text);
  max-width: 900px;
  margin: 0 auto 5rem auto;
  line-height: 1.6;
}

/* Layout Grid */
.lifecycle-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .lifecycle-container {
    grid-template-columns: 300px 1fr;
    /* Sticky Nav | Content */
    gap: 6rem;
  }
}

/* Sticky Navigation (Desktop Only) */
.hidden-mobile {
  display: none;
}

@media (min-width: 1024px) {
  .hidden-mobile {
    display: block;
  }

  .lifecycle-nav {
    position: sticky;
    top: 8rem;
    /* Stays fixed 8rem from the top of the screen */
    height: max-content;
    display: flex;
    gap: 2rem;
  }

  .nav-track {
    width: 2px;
    background-color: var(--light-gray);
    border-radius: 2px;
    position: relative;
  }

  .nav-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 33%;
    /* Updated via JS */
    background: linear-gradient(to bottom, rgba(179, 73, 3, 0.221), rgb(82, 34, 2));
    transition: height 0.4s ease;
  }

  .nav-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

  .nav-item {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.1rem;
    color: var(--border-color);
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
  }

  .step-num {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    letter-spacing: 1px;
  }

  .nav-item.active {
    color: var(--primary-text);
    transform: translateX(10px);
  }
}

/* Scrolling Content */
.lifecycle-content {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  /* Large gap between steps to allow distinct scrolling */
}

.lifecycle-step {
  scroll-margin-top: 10rem;
}

.step-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.75rem;
  color: var(--primary-text);
  margin-bottom: 1rem;
}

.step-desc {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--secondary-text);
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 700px;
}

/* Modern Bento Box Grid for Ikshana Modules */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.bento-card {
  background-color: #ffffff;
  border: 1px solid var(--light-gray);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-color: #cbd5e1;
}

.card-icon {
  width: 20%;
  margin-bottom: 1rem;
}

.card-icon img {
  width: 100%;
}

.bento-card h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.1rem;
  color: var(--primary-text);
  margin-bottom: 0.75rem;
}

.bento-card p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.9rem;
  color: var(--secondary-text);
  line-height: 1.5;
}

/* Products section */

.products-section {
  background-color: #fafafa;
  padding: 4rem 0 0 0;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.product-tabs-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  background: #f1f5f9;
  /* Slate 100 */
  padding: 0.5rem;
  border-radius: 99px;
  width: max-content;
  margin: 0 auto;
  border: 1px solid var(--border-color);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.p-tab-btn {
  background: transparent;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 99px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--secondary-text);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.p-tab-btn:hover {
  color: var(--primary-text);
}

.p-tab-btn.active {
  background: #050040;
  /* Linecraft Deep Blue */
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(5, 0, 64, 0.2);
}


.p-tab-pane {
  display: none;
  animation: tabFadeUp 0.4s ease-out forwards;
}

.p-tab-pane.active {
  display: block;
}

@keyframes tabFadeUp {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-showcase {
  padding: 6rem 2rem 8rem 2rem;
}

/* Added specific subtle backgrounds to separate the products */
.ikshana-showcase {
  border-radius: 50px;
  background: radial-gradient(ellipse at top left, rgba(246, 154, 92, 0.05) 0%, transparent 60%);
  border-bottom: 1px solid var(--light-gray);
}

.feature-text-container {
  display: flex;
  justify-content: space-between;
}

.feature-icon {
  width: 40%;
  margin-right: .75rem;
}

.feature-icon img {
  width: 100%;
}

.rishi-showcase {
  border-radius: 50px;
  margin-top: 4rem;
  background: radial-gradient(ellipse at top left, rgba(139, 92, 246, 0.05) 0%, transparent 60%);
}

/* ALIGNMENT FIX: Overrides global center-alignment so grids format cleanly */
.showcase-wrapper {
  text-align: left;
}

.product-header {
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .product-header {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.product-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.5rem;
  line-height: 1.2;
  color: var(--primary-text);
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .product-title {
    font-size: 3rem;
  }
}

.product-desc {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.4rem;
  color: var(--secondary-text);
  line-height: 1.6;
  text-align: justify;
}

.product-image-container {
  width: 90%;
  margin: 0 auto 5rem auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(203, 213, 225, 0.6);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.08), 0 0 40px rgba(0, 0, 0, 0.02);
  background-color: #ffffff;
}

.product-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: fill;
}

/* Feature Grid */
.feature-4-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .feature-4-col {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .feature-4-col {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-item h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.4rem;
  color: var(--primary-text);
  margin-bottom: 0.75rem;
}

.feature-item p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  color: var(--secondary-text);
  line-height: 1.5;
}

/* Interactive heatmap */

.interactive-heatmap-wrapper {
  background: #ffffff;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  aspect-ratio: auto !important;
  min-height: 350px;
}

.heatmap-header,
.heatmap-row {
  display: grid;
  grid-template-columns: 120px repeat(7, 1fr);
  gap: 4px;
  align-items: center;
}

.heatmap-header {
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 0.5rem;
}

.hm-cell-label {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--secondary-text);
  text-align: center;
}

.corner-label,
.row-label {
  text-align: left;
  padding-left: 0.5rem;
}

.row-label {
  font-family: "Roboto", monospace;
  /* Tech feel for asset names */
  color: var(--primary-text);
  font-weight: 400;
}

.hm-cell {
  height: 32px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.hm-cell:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 5;
  border-color: rgba(0, 0, 0, 0.2);
}

/* Base Color Classes (Applied via JS based on data-val) */
.hm-excellent {
  background-color: #4ade80;
}

/* Bright Green */
.hm-good {
  background-color: #86efac;
}

/* Light Green */
.hm-warning {
  background-color: #fde047;
}

/* Yellow */
.hm-poor {
  background-color: #f87171;
}

/* Red */
.hm-critical {
  background-color: #ef4444;
}

/* Deep Red */


/* --- Tooltip Styling --- */
.hm-tooltip {
  position: absolute;
  top: 0;
  left: 0;
  background: #1e293b;
  /* Dark slate for contrast */
  color: white;
  padding: 1rem;
  border-radius: 8px;
  width: 200px;
  pointer-events: none;
  /* Prevents tooltip from interfering with mouse moves */
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 100;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.hm-tooltip.show {
  opacity: 1;
  transform: translateY(0);
}

.tt-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #94a3b8;
  /* Light slate */
}

#tt-asset {
  font-family: "Roboto", monospace;
  color: white;
}

.tt-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.tt-label {
  font-size: 0.85rem;
  color: #cbd5e1;
}

.tt-value {
  font-size: 1.25rem;
  font-weight: 700;
}

.tt-status-indicator {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  display: inline-block;
}

/* Tooltip Status Colors */
.tt-status-good {
  background: rgba(74, 222, 128, 0.2);
  color: #4ade80;
}

.tt-status-warn {
  background: rgba(253, 224, 71, 0.2);
  color: #fde047;
}

.tt-status-bad {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
}

/* ==========================================================
   Interactive Tab System
   ========================================================== */

.product-interactive-container {
  width: 100%;
  margin: 0 auto 5rem auto;
  border-radius: 16px;
  background-color: #ffffff;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.08), 0 0 40px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(203, 213, 225, 0.6);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ikshana-tabs-nav {
  display: flex;
  background: #f8fafc;
  border-bottom: 1px solid var(--border-color);
  padding: 0.5rem 1rem 0 1rem;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  /* Hide scrollbar for clean look */
}

.ikshana-tabs-nav::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  background: transparent;
  border: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary-text);
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.tab-btn:hover:not(.explore-tab) {
  color: var(--primary-text);
  background: rgba(0, 0, 0, 0.02);
  border-radius: 6px 6px 0 0;
}

.tab-btn.active {
  color: var(--primary-text);
  border-bottom: 2px solid #db6ccc;
  /* Brand pink */
}

/* The non-clickable 4th tab */
.tab-btn.explore-tab {
  margin-left: auto;
  /* Pushes it to the far right */
  color: #db6ccc;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: default;
  /* Not clickable */
  opacity: 0.7;
  cursor: pointer;
}

a {
  text-decoration: none;
}

.ikshana-tabs-content {
  position: relative;
  min-height: 380px;
}

.tab-pane {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUpIn 0.3s forwards ease-out;
}

.tab-pane.active {
  display: block;
}

@keyframes fadeUpIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Dashboard Tab UI --- */
.interactive-dashboard-wrapper {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.dash-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.dash-metric-card {
  padding: 1.25rem;
  border-radius: 8px;
  border: 1px solid var(--light-gray);
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
}

.dash-metric-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  background: #ffffff;
}

.dm-label {
  font-size: 1rem;
  color: var(--secondary-text);
  font-weight: 300;
}

.dm-value {
  font-size: 2rem;
  font-weight: 400;
  color: var(--primary-text);
}

.dm-trend {
  font-size: 1.1rem;
  font-weight: 500;
}

.dm-trend.positive {
  color: #37a05d;
}

.dm-trend.negative {
  color: #bc6262;
}

.dash-chart-container {
  flex: 1;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  padding: 2rem;
  font-family: "Poppins", sans-serif;
}

.dash-chart-title {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--secondary-text);
  margin-bottom: 1rem;
}

.dash-chart {
  height: 150px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.dash-bar-col {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: flex-end;
  background: #f1f5f9;
  border-radius: 4px;
}

/* Uses the same JS logic as heatmap cells! */
.dash-bar {
  width: 100%;
  background: linear-gradient(to top, #db6ccc, #f69a5c);
  /* Brand gradient */
  border-radius: 4px;
  transition: opacity 0.2s;
  cursor: pointer;
}

.dash-bar:hover {
  opacity: 0.8;
}


/* --- Reports Tab UI --- */
.interactive-reports-wrapper {
  padding: 1rem;
  font-family: "Poppins", sans-serif;
}

.report-list-header {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #94a3b8;
  border-bottom: 1px solid var(--light-gray);
}

.report-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--light-gray);
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}

.report-row:hover {
  background: #f8fafc;
  cursor: pointer;
}

.report-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.report-info h4 {
  font-size: 1.4rem;
  color: var(--primary-text);
  margin-bottom: 0.2rem;
  font-weight: 400;
}

.report-info p {
  font-size: 1rem;
  color: var(--secondary-text);
}

.report-meta {
  font-size: 1rem;
  color: var(--secondary-text);
  font-weight: 500;
  transition: opacity 0.2s;
}

.report-btn {
  position: absolute;
  right: 1.5rem;
  background: var(--dark-btn-bg);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 99px;
  font-family: inherit;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.2s ease;
}

/* Interactive Hover State: Hides the date, slides in the button */
.report-row:hover .report-meta {
  opacity: 0;
}

.report-row:hover .report-btn {
  opacity: 1;
  transform: translateX(0);
}

/*Interactive Rishi Chatbot UI */

.rishi-interactive-container {
  width: 100%;
  max-width: 1000px;
  height: 650px;
  margin: 0 auto 5rem auto;
  border-radius: 12px;
  background-color: #0f1115;
  /* Deep dark background */
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25), 0 0 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  overflow: hidden;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Sidebar */
.rishi-bot-sidebar {
  width: 60px;
  background-color: #090a0c;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem 0;
  align-items: center;
}

.r-sidebar-top,
.r-sidebar-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.r-logo {
  width: 60px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.r-logo img {
  width: 100%;
}

.r-icon-btn {
  background: none;
  border: none;
  color: #64748b;
  cursor: pointer;
  transition: color 0.2s;
}

.r-icon-btn:hover {
  color: #ffffff;
}

/* Main Area */
.rishi-bot-main {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Home Screen */
.rishi-home-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeIn 0.4s ease;
}

.rishi-greeting {
  text-align: center;
  margin-bottom: 2rem;
}

.rishi-glow-logo {
  width: 100px;
  height: 60px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rishi-glow-logo img {
  width: 100%;
}

.rishi-greeting h3 {
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.rishi-greeting p {
  color: #94a3b8;
  font-size: 0.95rem;
}

/* Input Area */
.rishi-input-box {
  width: 100%;
  max-width: 750px;
  background-color: #1e2128;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 2rem;
  position: relative;
}

#rishi-chat-input {
  width: 100%;
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  margin-bottom: 1rem;
}

#rishi-chat-input::placeholder {
  color: #64748b;
  font-style: italic;
}

.rishi-input-actions {
  display: flex;
  align-items: center;
}

.r-add-btn {
  background: rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
}

.r-add-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* Context Menu Overlay */
.rishi-context-menu {
  position: absolute;
  top: 100%;
  left: 1rem;
  margin-top: 0.5rem;
  background-color: #252830;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  width: 220px;
  padding: 0.5rem 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  z-index: 50;
  display: none;
  /* Toggled by JS */
  flex-direction: column;
}

.rishi-context-menu.show {
  display: flex;
}

.r-ctx-item {
  padding: 0.6rem 1rem;
  color: #f1f5f9;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s;
}

.r-ctx-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.r-ctx-item svg {
  margin-left: auto;
  color: #64748b;
}

.r-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 12px;
}

.dot-blue {
  background: #3b82f6;
}

.dot-green {
  background: #22c55e;
}

.dot-pink {
  background: #d946ef;
}

.dot-cyan {
  background: #06b6d4;
}

.dot-orange {
  background: #f97316;
}

/* Preset Grid */
.rishi-presets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 750px;
}

.r-preset-col {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.r-preset-header {
  color: #cbd5e1;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.r-preset-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid transparent;
  color: #94a3b8;
  padding: 0.75rem;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.75rem;
  text-align: left;
  line-height: 1.4;
  cursor: pointer;
  transition: all 0.2s;
}

.r-preset-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #f1f5f9;
  border-color: rgba(255, 255, 255, 0.15);
}

/* Active Chat Screen */
.rishi-chat-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  overflow-y: auto;
  background: #0f1115;
}

.r-chat-history {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 750px;
  margin: 0 auto;
  width: 100%;
}

.r-bubble {
  max-width: 80%;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
  animation: fadeUpIn 0.3s forwards ease-out;
}

.r-bubble.user {
  align-self: flex-end;
  background: #252830;
  color: #ffffff;
  border-bottom-right-radius: 2px;
}

.r-bubble.ai {
  align-self: flex-start;
  background: transparent;
  color: #cbd5e1;
  border-bottom-left-radius: 2px;
}

.r-bubble.ai .ai-title {
  margin-bottom: 0.5rem;
}

.ai-title {
  width: 10%;
}

.ai-title img {
  width: 100%;
  margin-left: -1rem;
}

.r-waitlist-btn {
  display: inline-block;
  margin-top: 1rem;
  background: #ffffff;
  color: #050040;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.85rem;
  transition: opacity 0.2s;
}

.r-waitlist-btn:hover {
  opacity: 0.9;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Testimonials section */

.testimonials-section {
  padding: 4rem 0;
  background-color: #fafafa;
}

.text-center {
  text-align: center;
}

.stagger-container {
  position: relative;
  width: 100%;
  height: 600px;
  /* Matches style={{ height: 600 }} */
  overflow: hidden;
  background-color: rgba(241, 245, 249, 0.3);
  /* bg-muted/30 */
  margin-top: 3rem;
}

.stagger-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fafafa;
}

/* The Individual Card Base */
.stagger-card {
  position: absolute;
  left: 50%;
  top: 50%;
  cursor: pointer;
  border: 2px solid var(--border-color);
  padding: 2rem;
  transition: all 0.5s ease-in-out;
  /* Match duration-500 ease-in-out */
  display: flex;
  flex-direction: column;
  /* Match the exact dog-ear cut from the React code */
  clip-path: polygon(50px 0%, calc(100% - 50px) 0%, 100% 50px, 100% 100%, calc(100% - 50px) 100%, 50px 100%, 0 100%, 0 0);
}

/* State: Center Card */
.stagger-card.is-center {
  z-index: 10;
  background-color: #121212;
  /* bg-primary */
  color: #ffffff;
  /* text-primary-foreground */
  border-color: #121212;
  box-shadow: 0px 8px 0px 4px #cbd5e1;
  /* box-shadow from inline style */
}

/* State: Side Cards */
.stagger-card.is-side {
  z-index: 0;
  background-color: #ffffff;
  /* bg-card */
  color: #101010;
  /* text-card-foreground */
  box-shadow: 0px 0px 0px 0px transparent;
}

.stagger-card.is-side:hover {
  border-color: rgba(12, 12, 12, 0.5);
  /* hover:border-primary/50 */
}

/* The Dog-Ear Corner Line */
.stagger-corner-line {
  position: absolute;
  display: block;
  transform-origin: top right;
  transform: rotate(45deg);
  background-color: var(--border-color);
  right: -2px;
  top: 48px;
  width: 70.71px;
  /* Math.sqrt(5000) */
  height: 2px;
}

/* Card Content Styling */
.stagger-avatar {
  margin-bottom: 1rem;
  height: 3.5rem;
  /* h-14 */
  width: 3rem;
  /* w-12 */
  background-color: var(--light-gray);
  object-fit: cover;
  object-position: top;
  box-shadow: 3px 3px 0px #fafafa;
}

.stagger-quote {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.4;
}

.is-center .stagger-quote {
  color: #ffffff;
}

.is-side .stagger-quote {
  color: var(--primary-text);
}

.stagger-author {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-style: italic;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.is-center .stagger-author {
  color: rgba(255, 255, 255, 0.8);
}

.is-side .stagger-author {
  color: var(--secondary-text);
}

/* Bottom Controls */
.stagger-controls {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 20;
}

.stagger-btn {
  display: flex;
  height: 3.5rem;
  width: 3.5rem;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.2s;
  background-color: #ffffff;
  border: 2px solid var(--border-color);
  color: var(--primary-text);
  cursor: pointer;
}

.stagger-btn:hover {
  background-color: #050040;
  color: #ffffff;
}

.team-section {
  padding: 8rem 2rem;
  background-color: #fafafa;
  border-top: 1px solid var(--light-gray);
  position: relative;
}

.text-left {
  text-align: left;
  margin-left: 0;
}

.team-carousel-container {
  max-width: 1280px;
  margin: 0 auto;
}

.team-header {
  margin-bottom: 3rem;
}

.leadership-carousel {
  position: relative;
  overflow: hidden;
  padding: 0.5rem 0 1rem;
}

.leadership-carousel::before,
.leadership-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.leadership-carousel::before {
  left: 0;
  background: linear-gradient(to right, rgba(250, 250, 250, 1), rgba(250, 250, 250, 0));
}

.leadership-carousel::after {
  right: 0;
  background: linear-gradient(to left, rgba(250, 250, 250, 1), rgba(250, 250, 250, 0));
}

.leadership-track {
  display: flex;
  align-items: stretch;
  width: max-content;
  gap: 1.5rem;
  animation: leadership-marquee 60s linear infinite;
}

.leadership-card {
  flex: 0 0 320px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leadership-card:hover {
  transform: translateY(-4px);
}

.leadership-image {
  height: 350px;
  background: var(--light-gray);
  overflow: hidden;
}

.leadership-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.leadership-meta {
  padding: 1.5rem 1.25rem 1.75rem;
}

.leadership-meta h3 {
  margin: 0 0 0.45rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary-text);
}

.leadership-meta span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  color: #db6ccc;
  font-weight: 600;
}

@keyframes leadership-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 767px) {
  .team-section {
    padding: 6rem 1.25rem;
  }

  .team-header {
    margin-bottom: 2rem;
  }

  .leadership-card {
    flex-basis: 270px;
  }

  .leadership-image {
    height: 290px;
  }

  .leadership-carousel::before,
  .leadership-carousel::after {
    width: 60px;
  }
}

/* Culture section */
.culture-section {
  padding: 4rem 0 0 0;
  background-color: #fafafa;
  overflow: hidden;
  /* Crucial: stops horizontal scrollbar */
}

.text-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.culture-header {
  margin-bottom: 4rem;
}

.culture-marquee-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 8rem;
  /* Re-adding the bottom padding here */
}

/* The Marquee Row Base */
.culture-row {
  display: flex;
  width: max-content;
  /* Allows it to be as wide as it needs */
  gap: 1.5rem;
}

.culture-track {
  display: flex;
  gap: 1.5rem;
  /* Will be duplicated in JS to create the infinite loop */
}

/* Animation Definitions */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }

  /* Scrolls exactly half its width (the duplicated track) */
}

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

  100% {
    transform: translateX(0);
  }
}

.marquee-left {
  animation: scrollLeft 60s linear infinite;
}

.marquee-right {
  animation: scrollRight 60s linear infinite;
  margin-left: -500px;
  /* Offset so it doesn't look identical to the top row */
}

/* Pause on Hover */
.culture-marquee-container:hover .marquee-left,
.culture-marquee-container:hover .marquee-right {
  animation-play-state: paused;
}

/* The Individual Photos */
.culture-item {
  position: relative;
  height: 300px;
  /* Fixed height, variable width */
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--light-gray);
  cursor: pointer;
  /* The aspect ratio is determined by the image itself! */
}

@media (min-width: 1024px) {
  .culture-item {
    height: 350px;
  }
}

.culture-item img {
  height: 100%;
  width: auto;
  /* Scales width to maintain aspect ratio based on fixed height */
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  /* Smooth mask for safari border-radius bug */
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.culture-item:hover img {
  transform: scale(1.05);
}

/* The Caption Overlay */
.culture-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(5, 0, 64, 0.9) 0%, rgba(5, 0, 64, 0) 100%);
  color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.culture-item:hover .culture-caption {
  opacity: 1;
  transform: translateY(0);
}

.culture-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  text-align: center;
}

/* Footer section */
.footer-section {
  background-color: #fafafa;
  padding-top: 4rem;
  position: relative;
  z-index: 10;
}

/* Pre-Footer CTA Block */
.footer-cta-wrapper {
  max-width: 1200px;
  margin: 0 auto 6rem auto;
  padding: 0 2rem;
  position: relative;
}

.footer-cta-content {
  background-color: #050040;
  /* Brand deep blue */
  border-radius: 24px;
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 20px 40px -10px rgba(5, 0, 64, 0.3);
}

.footer-cta-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.footer-cta-desc {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.1rem;
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

.footer-cta-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-cta-buttons {
    flex-direction: row;
    gap: 1.5rem;
  }

  .footer-cta-title {
    font-size: 3.5rem;
  }
}

.footer-primary-btn {
  background-color: #ffffff;
  color: #050040;
}

.footer-primary-btn:hover {
  background-color: #f1f5f9;
}

.footer-secondary-btn {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.2);
}

.footer-secondary-btn span {
  color: #ffffff;
}

.footer-secondary-btn svg path {
  stroke: #ffffff;
}

.footer-secondary-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* The blurred glow behind the CTA */
.footer-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(219, 108, 204, 0.3) 0%, rgba(246, 154, 92, 0.3) 100%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

/* Main Footer Grid */
.footer-main {
  background-color: #ffffff;
  /* Clean white bottom */
  border-top: 1px solid var(--border-color);
  padding: 6rem 2rem 2rem 2rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 300px 1fr;
    /* Brand Col | Links */
    gap: 6rem;
  }
}

.footer-logo {
  width: 150px;
  margin-bottom: 1.5rem;
}

.footer-tagline {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--secondary-text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: #94a3b8;
  transition: color 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
  color: var(--primary-text);
  transform: translateY(-2px);
}

.footer-links-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-links-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-link-col h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.footer-link-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-link-col a {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--secondary-text);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link-col a:hover {
  color: #db6ccc;
  /* Brand pink */
}

/* Footer Bottom Bar */
.footer-bottom {
  max-width: 1200px;
  margin: 6rem auto 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--light-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.85rem;
  color: #94a3b8;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary-text);
}

/* Blogs styles */

/* Navbar Adjustment for non-hero pages */
.navbar.solid-nav {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--light-gray);
  position: sticky;
  top: 0;
  z-index: 100;
}

body {
  background-color: #fafafa;
  /* Keep the clean aesthetic across the whole page */
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Blog Header --- */
.blog-header-section {
  padding: 8rem 0 4rem 0;
  text-align: center;
}

/* --- Featured Post --- */
.featured-post-section {
  margin-bottom: 6rem;
}

.featured-card {
  display: grid;
  grid-template-columns: 1fr;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

@media (min-width: 1024px) {
  .featured-card {
    grid-template-columns: 3fr 2fr;
    align-items: center;
  }
}

.featured-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.f-image-wrapper {
  position: relative;
  height: 300px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .f-image-wrapper {
    height: 100%;
    min-height: 450px;
  }
}

.f-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.featured-card:hover .f-image {
  transform: scale(1.05);
}

.f-category {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: #ffffff;
  color: #db6ccc;
  padding: 0.5rem 1rem;
  border-radius: 99px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.f-content {
  padding: 3rem;
}

.post-meta {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.85rem;
  color: var(--secondary-text);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.meta-dot {
  color: #cbd5e1;
}

.f-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-text);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.f-excerpt {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.1rem;
  color: var(--secondary-text);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.read-more {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  color: #db6ccc;
  /* Brand pink */
  transition: gap 0.2s ease;
}

.featured-card:hover .read-more {
  gap: 0.75rem;
}

/* --- Blog Grid --- */
.blog-grid-section {
  padding-bottom: 8rem;
}

.b-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.b-filter-btn {
  background: #ffffff;
  border: 1px solid var(--border-color);
  color: var(--secondary-text);
  padding: 0.75rem 1.5rem;
  border-radius: 99px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.b-filter-btn:hover {
  background: var(--hover-bg);
  color: var(--primary-text);
}

.b-filter-btn.active {
  background: var(--dark-btn-bg);
  color: #ffffff;
  border-color: var(--dark-btn-bg);
}

/* CSS Grid for the posts */
.b-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

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

@media (min-width: 1024px) {
  .b-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.b-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.b-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.b-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--light-gray);
}

.b-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.b-card:hover .b-img-wrapper img {
  transform: scale(1.05);
}

.b-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-text);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.b-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.b-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-text);
  line-height: 1.4;
  margin-bottom: 1rem;
}

.b-excerpt {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  color: var(--secondary-text);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex: 1;
  /* Pushes meta to the bottom if excerpt is short */
}

/* --- Pagination --- */
.b-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 5rem;
  border-top: 1px solid var(--light-gray);
  padding-top: 3rem;
}

.b-page-btn {
  background: none;
  border: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  color: var(--primary-text);
  cursor: pointer;
  transition: color 0.2s;
}

.b-page-btn:disabled {
  color: #cbd5e1;
  cursor: not-allowed;
}

.b-page-btn:not(:disabled):hover {
  color: #db6ccc;
}

.b-page-numbers {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.b-page-num {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--secondary-text);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.b-page-num:hover {
  background: var(--hover-bg);
  color: var(--primary-text);
}

.b-page-num.active {
  background: #050040;
  color: #ffffff;
}

.b-page-dots {
  color: #94a3b8;
  padding: 0 0.5rem;
}

/* articles styles */

/* Progress Bar */
.reading-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  z-index: 1000;
}

.reading-progress-bar {
  height: 100%;
  background: #db6ccc;
  /* Brand Pink */
  width: 0%;
  transition: width 0.1s ease;
}

/* Article Header */
.article-header {
  padding: 8rem 0 4rem 0;
  background: #fafafa;
}

.article-img {
  width: 100%;
  margin-bottom: 1rem;
}

.article-img-text {
  font-style: italic;
  font-size: 0.8rem;
}

.article-container {
  max-width: 800px;
  /* Narrower width for optimal reading */
  margin: 0 auto;
  padding: 0 2rem;
}

.a-meta {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.9rem;
  color: var(--secondary-text);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.a-category {
  color: #db6ccc;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.a-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-text);
  line-height: 1.2;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .a-title {
    font-size: 3.5rem;
  }
}

.a-author-block {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.a-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.a-author-info {
  display: flex;
  flex-direction: column;
}

.a-author-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  color: var(--primary-text);
}

.a-author-role {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.85rem;
  color: var(--secondary-text);
}

/* Article Hero Image */
.article-hero-img-container {
  margin: 0 auto 4rem auto;
  padding: 0 2rem;
  width: 60%;
}

.a-hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
}

@media (min-width: 768px) {
  .a-hero-img {
    height: 600px;
  }
}

/* Article Layout Grid (TOC + Content) */
.article-body-section {
  padding-bottom: 8rem;
  background: #fafafa;
}

.article-layout-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .article-layout-grid {
    grid-template-columns: 250px 1fr 200px;
    /* TOC | Content | Empty spacer for center alignment */
  }
}

/* Table of Contents */
.a-toc-sticky {
  position: sticky;
  top: 8rem;
}

.a-toc-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-text);
  margin-bottom: 1.5rem;
}

.a-toc-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-left: 2px solid var(--light-gray);
}

.toc-link {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  color: var(--secondary-text);
  text-decoration: none;
  padding-left: 1rem;
  transition: all 0.2s;
  display: block;
}

.toc-link:hover {
  color: var(--primary-text);
}

.toc-link.active {
  color: #db6ccc;
  font-weight: 600;
  border-left: 2px solid #db6ccc;
  margin-left: -2px;
}

/* Article Typography Base */
.a-content {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #334155;
  /* Slate 700 */
}

.a-content h2 {
  font-size: 2rem;
  color: var(--primary-text);
  margin: 3.5rem 0 1.5rem 0;
  line-height: 1.3;
}

.a-content p {
  margin-bottom: 1.5rem;
}

.a-lead {
  font-size: 1.35rem;
  color: var(--primary-text);
  font-weight: 500;
  line-height: 1.6;
}

.a-quote {
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 600;
  color: var(--primary-text);
  border-left: 4px solid #db6ccc;
  padding-left: 2rem;
  margin: 3rem 0;
}

.a-inline-img {
  width: 100%;
  border-radius: 12px;
  margin: 3rem 0 1rem 0;
}

.a-img-caption {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  color: var(--secondary-text);
  margin-bottom: 3rem;
}

.a-code-block {
  background: #0f172a;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
  overflow-x: auto;
}

.a-code-block pre {
  margin: 0;
}

.a-code-block code {
  font-family: "Roboto", monospace;
  font-size: 0.95rem;
  color: #e2e8f0;
}

.a-cta-box {
  background: #e2e8f0;
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  margin-top: 4rem;
}

.a-cta-box h3 {
  font-size: 1.5rem;
  color: var(--primary-text);
  margin-bottom: 1rem;
}

/* Minimalist Back to blog link */
.back-to-blog {
  margin-right: auto;
  /* Pushes it left near logo */
  margin-left: 2rem;
  display: none;
}

@media (min-width: 768px) {
  .back-to-blog {
    display: block;
  }
}

.back-to-blog a {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary-text);
  text-decoration: none;
  transition: color 0.2s;
}

.back-to-blog a:hover {
  color: var(--primary-text);
}

/* case study listing */

.cs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cs-header-section {
  padding: 8rem 0 4rem 0;
  text-align: center;
  background-color: #fafafa;
}

/* Featured Case Study */
.cs-featured-section {
  padding-bottom: 6rem;
  background-color: #fafafa;
}

.cs-featured-card {
  display: grid;
  grid-template-columns: 1fr;
  background: #050040;
  /* Brand dark blue */
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(5, 0, 64, 0.15);
}

@media (min-width: 1024px) {
  .cs-featured-card {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.cs-featured-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px -12px rgba(5, 0, 64, 0.3);
}

.csf-image-wrapper {
  position: relative;
  height: 300px;
}

.csf-tile-image {
  width: 100%;
  border-radius: 24px;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .csf-image-wrapper {
    height: 100%;
    min-height: 500px;
  }
}

.csf-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  /* Slight dim to fit dark theme */
  transition: transform 0.6s ease;
}

.cs-featured-card:hover .csf-image {
  transform: scale(1.05);
}

.csf-brand-logo {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.csf-brand-logo img {
  height: 30px;
  width: auto;
}

.csf-content {
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.csf-industry {
  color: #db6ccc;
  /* Brand pink */
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.csf-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.csf-excerpt {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 3rem;
}

/* Metrics Row inside Featured Card */
.csf-metrics {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.csf-metric {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.csf-metric-val {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #4ade80;
  /* Success green */
}

.csf-metric-lbl {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.9rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Case Studies Grid */
.cs-grid-section {
  padding-bottom: 8rem;
  background-color: #fafafa;
}

.cs-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.cs-filter-btn {
  background: #ffffff;
  border: 1px solid var(--border-color);
  color: var(--secondary-text);
  padding: 0.75rem 1.5rem;
  border-radius: 99px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cs-filter-btn:hover {
  background: var(--hover-bg);
  color: var(--primary-text);
}

.cs-filter-btn.active {
  background: #050040;
  color: #ffffff;
  border-color: #050040;
}

.cs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

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

.cs-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.cs-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.csc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--light-gray);
}

.csc-logo {
  height: 35px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.csc-industry {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--secondary-text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.csc-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-text);
  line-height: 1.4;
  margin-bottom: 2rem;
  flex: 1;
  /* Pushes metric to bottom */
}

.csc-metric-callout {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #f8fafc;
  padding: 1rem 1.5rem;
  border-radius: 8px;
}

.csc-m-val {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #db6ccc;
  /* Brand pink */
}

.csc-m-lbl {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.85rem;
  color: var(--secondary-text);
  line-height: 1.3;
}


/* case study details */

/* Detail Hero */
.csd-hero-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem 2rem;
  overflow: hidden;
  margin-top: -80px;
  /* Pull up under transparent nav if needed */
}

.csd-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.csd-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.csd-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(5, 0, 64, 0.95) 0%, rgba(5, 0, 64, 0.8) 100%);
}

.csd-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.csd-client-logo {
  height: 40px;
  width: auto;
  background: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.csd-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .csd-title {
    font-size: 3.5rem;
  }
}

.csd-subtitle {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.25rem;
  color: #cbd5e1;
}

/* Detail Layout Grid */
.csd-body-section {
  padding: 6rem 0 8rem 0;
  background: #fafafa;
}

.csd-layout-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .csd-layout-grid {
    grid-template-columns: 350px 1fr;
    align-items: start;
  }
}

/* Sidebar Quick Facts */
.csd-sidebar {
  display: block;
}

/* Always visible, unlike blog TOC */

.csd-sticky-panel {
  position: sticky;
  top: 8rem;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.csd-panel-block {
  margin-bottom: 2.5rem;
}

.csd-panel-block:last-child {
  margin-bottom: 0;
}

.csd-panel-block h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94a3b8;
  margin-bottom: 1rem;
}

.csd-panel-block p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  color: var(--primary-text);
  line-height: 1.5;
  font-weight: 500;
}

.csd-tags {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.csd-tags li {
  background: var(--light-gray);
  color: var(--primary-text);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
}

.csd-results-block {
  padding-top: 2rem;
  border-top: 1px solid var(--light-gray);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}


/* ==========================================================
   Ikshana Product Page (Light Theme & Fixed Sticky)
   ========================================================== */

.prod-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Bright Product Hero --- */
.prod-hero-section {
  padding: 8rem 0 0 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.prod-badge {
  display: inline-block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #db6ccc;
  background: rgba(219, 108, 204, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 99px;
  margin-bottom: 2rem;
}

.prod-hero-section .hero-title {
  color: var(--primary-text);
  margin-top: 0;
  max-width: 900px;
}

.prod-hero-section .hero-subtitle {
  color: var(--secondary-text);
  max-width: 700px;
  margin-bottom: 3rem;
}

.prod-hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 5rem;
  justify-content: center;
}

.prod-hero-mockup {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  transform: translateY(20px);
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
  border-bottom: none;
}

.prod-hero-mockup img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Module Explorer Section --- */
.module-explorer-section {
  padding: 8rem 0;
  background: #ffffff;
}

.me-header {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.me-header h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-text);
  margin-bottom: 1rem;
}

.me-header p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.1rem;
  color: var(--secondary-text);
}

.me-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
  /* Crucial for sticky behavior */
}

@media (min-width: 1024px) {
  .me-layout {
    grid-template-columns: 280px 1fr;
  }
}

/* Sticky Navigation Sidebar */
.me-sidebar {
  display: none;
}

@media (min-width: 1024px) {
  .me-sidebar {
    display: block;
    position: sticky;
    top: 8rem;
    height: max-content;
  }
}

.me-nav-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-left: 2px solid #f1f5f9;
}

.me-link {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #94a3b8;
  text-decoration: none;
  padding: 0.5rem 0 0.5rem 1.5rem;
  display: block;
  transition: all 0.2s;
  border-left: 2px solid transparent;
  margin-left: -2px;
}

.me-link:hover {
  color: var(--primary-text);
}

.me-link.active {
  color: #050040;
  border-left-color: #050040;
}

/* Right Scrolling Content (Sleeker Cards) */
.me-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  /* Prevents grid blowout */
}

.module-card {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  padding: 3.5rem;
  margin-bottom: 5rem;
  scroll-margin-top: 8rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02), 0 10px 15px -3px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  /* Contains children */
}

.mc-icon {
  width: 56px;
  height: 56px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.mc-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.mc-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-text);
  margin-bottom: 1rem;
}

.mc-desc {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.1rem;
  color: var(--secondary-text);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.mc-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.mc-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary-text);
}

.mc-visual {
  border-radius: 12px;
  overflow: hidden;
}

.mc-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Sleek Read More CTA --- */
.mc-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #db6ccc;
  text-decoration: none;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--light-gray);
  width: 100%;
  transition: gap 0.2s ease, color 0.2s ease;
}

.mc-read-more:hover {
  gap: 0.75rem;
  color: #050040;
}

/* ==========================================================
   How It Works Section (Interactive Progression Layout)
   ========================================================== */
.how-it-works-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-top: 1px solid #e2e8f0;
}

.hiw-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-top: 4rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .hiw-layout {
    grid-template-columns: 1.2fr 1fr;
  }
}

/* Left Interactive Rows */
.hiw-steps-pane {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hiw-step-row {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.hiw-step-row:hover {
  border-color: #cbd5e1;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.02);
}

.hiw-step-row.active {
  background: #ffffff;
  box-shadow: 0 20px 30px -10px rgba(14, 165, 233, 0.08);
}

/* Connecting track down the active states */
.hiw-step-row.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: #0ea5e9;
  border-radius: 4px 0 0 4px;
}

.hiw-step-number {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #1d1d1d;
  transition: color 0.3s;
  line-height: 1;
}

.hiw-step-row.active .hiw-step-number {
  color: #0ea5e9;
}

.hiw-step-content h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.hiw-step-content p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.hiw-step-content strong {
  color: #0f172a;
}

/* Right Visualizing Panel */
@media (min-width: 1024px) {
  .hiw-visual-pane {
    position: sticky;
    top: 8rem;
  }
}

.hiw-blueprint-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

.blueprint-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #1e293b;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}

#bp-footer-text {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.bp-status {
  font-size: 0.75rem;
  font-weight: 600;
  color: whitesmoke;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #1d1d1d;
  padding: 0.6rem 1.2rem;
  border-radius: 40px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.bp-dot {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse-bp-green 2s infinite;
}

@keyframes pulse-bp-green {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.bp-step-indicator {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1d1d1d;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Canvas Display */
.blueprint-canvas {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.bp-graphic-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.bp-node-element {
  background: #1e293b;
  border: 1px solid #334155;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: whitesmoke;
  width: 180px;
  text-align: center;
  transition: all 0.4s ease;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.bp-connector-line {
  width: 2px;
  height: 20px;
  background: #334155;
  transition: all 0.4s ease;
}

.bp-connector-line.dashed {
  border-left: 2px dashed #334155;
  background: transparent;
}

/* Morphing State Modifications via JS classes */
.bp-node-element.highlight-blue {
  background: rgba(26, 168, 8, 0.1);
  border-color: #3c8604;
  color: #1b7404;
  box-shadow: 0 0 20px rgba(76, 233, 14, 0.2);
}

.bp-node-element.highlight-pink {
  background: rgba(236, 72, 153, 0.1);
  border-color: #ec4899;
  color: #ec4899;
  box-shadow: 0 0 20px rgba(236, 72, 153, 0.2);
}

.bp-connector-line.highlight-active {
  background: #0ea5e9;
}

.blueprint-footer {
  border-top: 1px solid #1e293b;
  margin-top: 1.5rem;
  padding-top: 1rem;
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.5;
}

/* ==========================================================
   Redesigned Enterprise Solutions Matrix
   ========================================================== */
.solutions-grid-section {
  padding: 8rem 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

.sol-matrix-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .sol-matrix-wrapper {
    grid-template-columns: 1fr 1.1fr;
  }
}

/* Left Selection Deck */
.sol-deck {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sol-deck-item {
  display: flex;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  cursor: pointer;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sol-deck-item:hover {
  border-color: #cbd5e1;
  transform: translateX(4px);
}

.sol-deck-item.active {
  border-color: #0ea5e9;
  box-shadow: 0 10px 25px -5px rgba(14, 165, 233, 0.08);
}

.sol-deck-indicator {
  width: 4px;
  height: calc(100% - 3rem);
  background: transparent;
  position: absolute;
  left: 0;
  top: 1.5rem;
  border-radius: 0 4px 4px 0;
  transition: background 0.3s;
}

.sol-deck-item.active .sol-deck-indicator {
  background: #0ea5e9;
}

.sol-deck-info h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.4rem 0;
}

.sol-deck-info p {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* Right Premium Application Screen Emulation */
.sol-screen-card {
  background: white;
  border: 1px solid #1e293b;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.screen-top-bar {
  background: whitesmoke;
  padding: 0.75rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #334155;
}

.screen-title {
  font-family: monospace;
  font-size: 0.75rem;
  color: #1d1d1d;
  letter-spacing: 1px;
}

.screen-dots {
  display: flex;
  gap: 4px;
}

.screen-dots span {
  width: 6px;
  height: 6px;
  background: #334155;
  border-radius: 50%;
}

.screen-body {
  padding: 2rem;
}

.matrix-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  animation: matrixPulse 0.4s ease;
}

.matrix-box {
  background: whitesmoke;
  border: 1px solid #334155;
  border-radius: 8px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.matrix-box.alert-box {
  border-color: rgba(236, 72, 153, 0.4);
  background: rgba(236, 72, 153, 0.05);
}

.matrix-box span {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #1d1d1d;
  font-family: "Plus Jakarta Sans", sans-serif;

}

.matrix-box strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #1d1d1d;
}

.screen-footer {
  background: whitesmoke;
  padding: 1rem 2rem;
  border-top: 1px solid #334155;
  font-size: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.label-muted {
  color: #1d1d1d;
  font-family: "Plus Jakarta Sans", sans-serif;
}

#matrix-footer-tag {
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.tag-pacing {
  background: rgba(14, 165, 233, 0.1);
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #087aaf;
}

.tag-fmcg {
  background: rgba(236, 72, 153, 0.1);
  color: #c02b75;
  font-family: "Plus Jakarta Sans", sans-serif;

}

.tag-metals {
  background: rgba(16, 185, 129, 0.1);
  color: #0a7853;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* ==========================================================
   ROI Financial Projection Module
   ========================================================== */
.roi-calculator-section {
  padding: 8rem 0;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
}

.roi-model-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-top: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .roi-model-layout {
    grid-template-columns: 1fr 1.1fr;
  }
}

/* Controls (Sliders) */
.roi-control-panel {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.roi-slider-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.roi-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.roi-slider-header label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
}

.roi-slider-value {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #1d1d1d;
  background: whitesmoke;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
}

/* Custom Range Input Styling */
.roi-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: #e2e8f0;
  border-radius: 5px;
  outline: none;
}

.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0f172a;
  cursor: pointer;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  transition: transform 0.1s ease;
}

.roi-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  background: #0ea5e9;
}

.roi-slider-bounds {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 500;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.roi-calc-note {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.5;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  background: #f8fafc;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Display Card Styling */
.roi-result-card {
  background: #0f172a;
  border: 1px solid #1e293b;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.2);
  color: #f8fafc;
}

.roi-result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #1e293b;
  padding-bottom: 1.25rem;
  font-size: 1rem;
  color: #8c9cb3;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
}


.roi-metrics-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 0;
}

.roi-metric-block {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.roi-metric-block h5 {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #8c9cb3;
  letter-spacing: 0.5px;
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.roi-metric-block strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
}

.text-gray-dim {
  color: #cbd5e1;
}

.text-green {
  color: #10b981;
}

.block-sub-text {
  margin-top: .25rem;
  font-size: 0.75rem;
  color: #8c9cb3;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.roi-metric-block.highlighted-pacing {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid #1e293b;
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid #10b981;
}

.roi-result-footer {
  border-top: 1px solid #1e293b;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-family: "Plus Jakarta Sans", sans-serif;
  gap: 1rem;
}

.roi-payback-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.roi-payback-stat span {
  font-size: 0.85rem;
  color: #8c9cb3;
  font-weight: 700;
}

.roi-payback-stat strong {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 700;
}

.roi-btn {
  padding: 0.5rem;
  color: #1d1d1d;
  font-weight: 500;
  font-family: "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
}


/* ==========================================================
   Linecraft AI: Live Flow & Bottleneck Dashboard Mockup
   ========================================================== */
.ikshana-live-dashboard {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(5, 0, 64, 0.05);
  margin: 0 auto 4rem auto;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #1e293b;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.dash-inner-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 1.25rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.dash-title-block h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-text);
  margin-bottom: 0.2rem;
}

.dash-matrix-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
}

@media (min-width: 1200px) {
  .dash-matrix-grid {
    grid-template-columns: 240px minmax(0, 1fr) 260px;
    /* Safe flex containment bounds */
  }
}

/* Column Overrides to protect layout bounds */
.dash-col-metrics,
.dash-col-flowmap,
.dash-col-analytics {
  min-width: 0;
  overflow: hidden;
}

.dash-subtitle-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #94a3b8;
  letter-spacing: 0.5px;
}

.dash-meta-pills {
  display: flex;
  gap: 0.75rem;
}

.pill-timestamp,
.pill-status {
  background: #f8fafc;
  border: 1px solid var(--light-gray);
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--secondary-text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pulse-dot-blue {
  width: 6px;
  height: 6px;
  background: #0ea5e9;
  border-radius: 50%;
  animation: pulse-bp-green 2s infinite;
}

/* Three Column Dashboard Grid Layout */
.dash-matrix-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .dash-matrix-grid {
    grid-template-columns: 240px 1fr 260px;
  }
}

/* Left Mini Metric Stack Column */
.dash-col-metrics {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.metric-mini-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 1rem;
}

.m-card-head {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.metric-mini-card h4 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-text);
  line-height: 1.2;
}

.simulated-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 24px;
  margin-top: 0.5rem;
}

.simulated-bar-chart span {
  flex: 1;
  background: rgba(14, 165, 233, 0.2);
  border-radius: 2px 2px 0 0;
  transition: height 0.3s;
}

/* Center Flow Map Columns */
.dash-col-flowmap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.flowmap-card-wrapper {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  background: #ffffff;
}

.flowmap-card-wrapper h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 1.5rem;
}

.node-network-canvas {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.node-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.2rem;
}

.node-block {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  padding: 0.6rem 0.85rem;
  display: flex;
  flex-direction: column;
  width: 125px;
  min-width: 125px;
  transition: all 0.2s ease;
}

.node-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.node-block .n-num {
  font-size: 0.65rem;
  font-weight: 800;
  color: #94a3b8;
  text-transform: uppercase;
}

.node-block .n-lbl {
  font-size: 0.8rem;
  font-weight: 700;
  color: #1e293b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Node Dynamic Categorical Status Coloring */
.node-block.status-normal {
  border-color: #06b6d4;
  background: rgba(6, 182, 212, 0.02);
}

.node-block.status-bottleneck {
  border-color: #f43f5e;
  background: rgba(244, 63, 94, 0.03);
}

.node-block.status-delay {
  border-color: #f97316;
  background: rgba(249, 115, 22, 0.02);
}

.node-pulse-pink {
  animation: pinkNodeBorderGlow 2s infinite;
}

@keyframes pinkNodeBorderGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(244, 63, 94, 0.2);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(244, 63, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(244, 63, 94, 0);
  }
}

.node-arrow-line {
  flex: 1;
  height: 2px;
  background: #e2e8f0;
  position: relative;
  min-width: 40px;
  margin: 0 0.25rem;
}

.node-arrow-line::after {
  content: '';
  position: absolute;
  right: 0;
  top: -4px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid #cbd5e1;
}

.node-arrow-line span {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: 700;
  color: #94a3b8;
  white-space: nowrap;
}

.node-canvas-legend {
  display: flex;
  gap: 1.25rem;
  margin-top: 1.5rem;
  border-top: 1px solid #f1f5f9;
  padding-top: 1rem;
}

.node-canvas-legend span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
}

.lg-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.bg-teal {
  background: #06b6d4;
}

.bg-pink {
  background: #f43f5e;
}

.bg-orange {
  background: #f97316;
}

.bg-cyan {
  background: #0ea5e9;
}

/* Stream Ingestion Timeline Strip */
.bottleneck-timeline-strip {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.25rem;
  background: #ffffff;
}

.bottleneck-timeline-strip h6 {
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.barcode-timeline-stream {
  height: 16px;
  background: #f1f5f9;
  border-radius: 4px;
  display: flex;
  overflow: hidden;
}

/* Right Analytics Column */
.dash-col-analytics {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.analytics-radial-card {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.25rem;
  background: #ffffff;
}

.analytics-radial-card h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 1rem;
}

.radial-gauge-container {
  display: flex;
  justify-content: center;
  padding: 0.5rem 0;
}

.semi-circle-gauge {
  width: 140px;
  height: 70px;
  background: #f1f5f9;
  border-radius: 140px 140px 0 0;
  position: relative;
  overflow: hidden;
  border: 12px solid #e2e8f0;
  border-bottom: none;
}

.semi-circle-gauge::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  width: 140px;
  height: 70px;
  border-radius: 140px 140px 0 0;
  border: 12px solid #f43f5e;
  border-bottom: none;
  transform-origin: bottom center;
  transform: rotate(45deg);
}

.gauge-value-text {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-text);
}

.radial-stats-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.radial-stats-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 600;
}

.lbl-indicator {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.lbl-indicator::before {
  content: '■';
  font-size: 0.9rem;
}

.distribution-stacked-bar {
  display: flex;
  height: 12px;
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.distribution-legend {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.dist-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--secondary-text);
}

/* ==========================================================
   Rishi RAG Platform Workspace Module
   ========================================================== */
.rag-document-sidebar {
  width: 250px;
  background-color: #090a0c;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.rag-input-wrapper-row {
  display: flex;
  align-items: center;
  background-color: #1e2128;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0.5rem 0.75rem;
  width: 100%;
  max-width: 650px;
  margin: 0 auto 2rem auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

#rag-chat-input {
  flex: 1;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  color: #ffffff !important;
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.5rem;
}

#rag-chat-input::placeholder {
  color: #57657a;
}

.rag-send-icon-btn {
  background: #3b82f6;
  border: none;
  color: #ffffff;
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.rag-send-icon-btn:hover {
  background: #2563eb;
  transform: scale(1.02);
}

/* Presets Layout Alignment */
.rag-presets-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
}

.rag-sample-pill {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  color: #94a3b8 !important;
  padding: 0.85rem 1.25rem;
  border-radius: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: left;
  line-height: 1.4;
  cursor: pointer;
  transition: all 0.25s ease;
  width: 100%;
}

.rag-sample-pill:hover {
  background: rgba(59, 130, 246, 0.04) !important;
  border-color: rgba(59, 130, 246, 0.3) !important;
  color: #ffffff !important;
  transform: translateX(4px);
}

.rag-sb-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748b;
  letter-spacing: 0.5px;
  margin-bottom: 1.25rem;
}

.rag-file-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.rag-file-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 0.65rem;
  border-radius: 6px;
  transition: background 0.2s;
}

.rag-file-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.rag-file-item svg {
  margin-top: 0.15rem;
  min-width: 14px;
}

.file-meta {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.file-meta span {
  font-size: 0.8rem;
  font-weight: 600;
  color: #cbd5e1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-meta small {
  font-size: 0.65rem;
  color: #64748b;
  font-weight: 500;
}

.rag-sb-footer {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.rag-upload-piston {
  font-size: 0.7rem;
  font-weight: 600;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.upload-pulse-node {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  animation: pulse-bp-green 2s infinite;
}

.rag-input-override {
  max-width: 680px !important;
}

.rag-sample-queries-strip {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
  max-width: 680px;
}

.rag-sample-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #94a3b8;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.8rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}

.rag-sample-pill:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
}

/* Citation Engine Formatting */
.rag-processing-msg {
  color: #0ea5e9;
  font-family: monospace;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rag-citation-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(14, 165, 233, 0.15);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: #0ea5e9;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  margin-top: 1rem;
  text-transform: uppercase;
  font-family: monospace;
  cursor: help;
}

.rag-floating-input-container {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
}

#rag-floating-input {
  width: 100%;
  background: #1e2128;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
}

/* ==========================================================
   Footer Trust Badges
   ========================================================== */
.footer-badges {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.trust-badge {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.04));
}

.trust-badge:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 4px 12px rgba(5, 0, 64, 0.08));
}

/* ==========================================================
   Google Maps Location Section
   ========================================================== */
.location-section {
  padding: 6rem 0;
  background-color: #fafafa;
  border-top: 1px solid var(--light-gray);
}

.location-card {
  display: grid;
  grid-template-columns: 1fr;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(5, 0, 64, 0.05);
}

@media (min-width: 1024px) {
  .location-card {
    grid-template-columns: 380px 1fr;
  }
}

.location-info {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--light-gray);
}

@media (min-width: 1024px) {
  .location-info {
    border-bottom: none;
    border-right: 1px solid var(--light-gray);
  }
}

.loc-badge {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #db6ccc;
  margin-bottom: 1rem;
}

.loc-company {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-text);
  margin-bottom: 1rem;
}

.loc-address {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  color: var(--secondary-text);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.loc-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
}

.loc-item strong {
  color: var(--primary-text);
}

.loc-item a {
  color: #db6ccc;
  text-decoration: none;
  font-weight: 600;
}

.loc-item a:hover {
  color: var(--primary-text);
}

.loc-directions-btn {
  text-align: center;
  display: inline-block;
  text-decoration: none;
  font-size: 1rem;
}

.location-map-container {
  width: 100%;
  min-height: 400px;
  background: var(--light-gray);
}

.location-map-container iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* ==========================================================
   Consult an Expert Outlook Modal
   ========================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 0, 64, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  width: 90%;
  max-width: 580px;
  padding: 2.5rem;
  box-shadow: 0 25px 50px -12px rgba(5, 0, 64, 0.25);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.modal-overlay.open .modal-card {
  transform: translateY(0);
}

.modal-close-icon {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  font-size: 1.75rem;
  color: var(--secondary-text);
  cursor: pointer;
  line-height: 1;
}

.modal-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #db6ccc;
  letter-spacing: 1px;
}

.modal-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-text);
  margin: 0.25rem 0 0.5rem 0;
}

.modal-desc {
  font-size: 0.9rem;
  color: var(--secondary-text);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.modal-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-text);
}

.modal-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--primary-text);
  outline: none;
  background: #f8fafc;
  transition: border-color 0.2s;
}

.modal-input:focus {
  border-color: #0ea5e9;
  background: #ffffff;
}

.modal-textarea {
  min-height: 80px;
  resize: vertical;
}

/* Slots Grid */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  min-height: 60px;
}

.slot-btn {
  background: #f1f5f9;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 0.6rem 0.25rem;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary-text);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}

.slot-btn:hover {
  border-color: #0ea5e9;
  color: #0ea5e9;
}

.slot-btn.selected {
  background: #050040;
  color: #ffffff;
  border-color: #050040;
}

.slots-placeholder {
  grid-column: 1 / -1;
  font-size: 0.85rem;
  color: #94a3b8;
  font-style: italic;
  margin: 0;
  padding: 0.5rem 0;
}

.modal-submit-btn {
  width: 100%;
  margin-top: 0.5rem;
  font-size: 1rem;
}

.modal-submit-btn:disabled {
  background: #cbd5e1;
  cursor: not-allowed;
}

/* Success State */
.modal-success-state {
  text-align: center;
  padding: 2rem 0;
}

.success-icon {
  width: 50px;
  height: 50px;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem auto;
}

.modal-success-state h4 {
  font-size: 1.5rem;
  color: var(--primary-text);
  margin-bottom: 0.5rem;
}

.modal-success-state p {
  font-size: 0.95rem;
  color: var(--secondary-text);
  margin-bottom: 2rem;
}

/* ==========================================================
   Mobile-Only Responsive Overrides (Screen width < 768px)
   ========================================================== */
@media (max-width: 767px) {

  /* 1. Prevent logo shrinking (overrides width: 6% on mobile) */
  .logo-container {
    width: 130px !important;
    padding: 0 !important;
  }

  /* 2. Hero Section: Fix height clipping & vertical centering issues */
  .hero-section {
    height: auto !important;
    min-height: 100vh;
    padding-top: 7rem !important;
    padding-bottom: 4rem !important;
    position: relative !important;
  }

  .hero-text-container {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    margin: 0 auto !important;
    padding: 0 1rem !important;
  }

  .hero-title {
    font-size: 2.2rem !important;
    line-height: 1.25 !important;
  }

  .hero-subtitle {
    font-size: 0.95rem !important;
    margin-top: 1rem !important;
  }

  .cta-container {
    width: 100% !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
  }

  .cta-container .primary-cta,
  .cta-container .secondary-cta {
    width: 100% !important;
  }

  /* 3. Rishi Chatbot: Stack sidebar and preset grid into single column */
  .rishi-interactive-container {
    height: auto !important;
    min-height: 520px;
    flex-direction: column !important;
  }

  .rishi-bot-sidebar {
    width: 100% !important;
    height: 50px !important;
    flex-direction: row !important;
    padding: 0 1rem !important;
    justify-content: space-between !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  .r-sidebar-top,
  .r-sidebar-bottom {
    flex-direction: row !important;
    gap: 1rem !important;
  }

  .r-logo {
    margin-bottom: 0 !important;
  }

  .rishi-presets-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  /* 4. Ikshana Module Cards & How-It-Works padding adjustments */
  .module-card {
    padding: 1.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .mc-title {
    font-size: 1.35rem !important;
  }

  .hiw-step-row {
    gap: 1rem !important;
    padding: 1.25rem !important;
  }

  .hiw-step-number {
    font-size: 1.2rem !important;
  }

  /* 5. Lead Capture Modal padding adjustments */
  .modal-card {
    width: 92% !important;
    padding: 1.5rem !important;
  }

  .modal-title {
    font-size: 1.35rem !important;
  }

  .navbar {
    padding: 0.85rem 1.25rem !important;
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .open-menu-btn {
    display: flex !important;
    padding: 0.6rem !important;
    border-radius: 8px !important;
  }

  /* 2. Fullscreen Mobile Navigation Drawer */
  .menu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(12px) !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    padding: 6rem 2rem 2rem 2rem !important;
    gap: 1.75rem !important;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease !important;
    overflow-y: auto !important;
    z-index: 999 !important;
  }

  /* Shown when toggled open via JS */
  .menu.open {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  /* Close Button inside Drawer */
  .close-menu-btn {
    display: flex !important;
    position: absolute !important;
    top: 1.25rem !important;
    right: 1.25rem !important;
    padding: 0.6rem !important;
    border-radius: 8px !important;
  }

  /* 3. Mobile Navigation Title Links & Dropdowns */
  .nav-title {
    font-size: 1.35rem !important;
    font-weight: 500 !important;
    color: #050040 !important;
  }

  .dropdown-container {
    width: 100% !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .dropdown-toggle {
    width: 100% !important;
    justify-content: space-between !important;
    padding: 0.5rem 0 !important;
  }

  /* Mobile Dropdown Submenus (Accordion Behavior) */
  .dropdown-menu {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    box-shadow: none !important;
    padding: 0.75rem 0 0.75rem 1rem !important;
    background: transparent !important;
    display: none !important;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    border-left: 2px solid #cbd5e1 !important;
    margin-top: 0.5rem !important;
  }

  .dropdown-menu.show {
    display: flex !important;
  }

  .dropdown-title {
    font-size: 1rem !important;
  }

  .dropdown-desc {
    font-size: 0.8rem !important;
  }
}