:root {
  --secondary-color: #D1121D;
  --text-dark: #1d1d1f;
  --text-light: #6e6e73;
  --accent-blue: #D1121D;
  --bg-white: #ffffff;
  --glass-bg: #ffffff;
  --glass-border: transparent;
  --card-shadow: none;
  --r: 12px;
}

.download-link {
  color: var(--secondary-color);
  font-weight: 700;
  text-decoration: none;
}

.download-link:hover {
  text-decoration: underline;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  color: var(--text-dark);
  background: #ffffff;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── TYPOGRAPHY ─── Space Grotesk = headings, Inter = body ─── */
h1,
h2,
h3,
h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 0.6rem;
}

h1 {
  font-size: clamp(2.6rem, 8vw, 4.4rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
}

p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 620px;
  line-height: 1.65;
}

/* ─── LOGO ADJUSTMENTS ─── */
nav a.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 65px !important;
  width: auto;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

/* ─── BACKGROUND ─── Pure white, no blobs ─── */
.gradient-blob {
  display: none;
}

.blob-1,
.blob-2 {
  display: none;
}

/* ─── NAVIGATION ─── Floating Dock with Perfect Blur ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.8rem 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  z-index: 10000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo-img {
  height: 26px;
}

.nav-links {
  display: flex;
  gap: 1.6rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.7;
  transition: 0.2s;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--secondary-color);
}

/* ─── BUTTONS ─── Modern SaaS, no dated pill shadows ─── */
.btn-primary {
  background: linear-gradient(135deg, #1d1d1f 0%, #3a3a3c 100%);
  color: white;
  padding: 0.45rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #D1121D 0%, #a80e17 100%);
  box-shadow: 0 8px 20px rgba(209, 18, 29, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.45rem 1.2rem;
  border-radius: 6px;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  display: inline-block;
  background: transparent;
}

.btn-secondary:hover {
  border-color: var(--text-dark);
  background: var(--text-dark);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

/* ─── HERO ─── Tight, efficient, left-aligned ─── */
.hero-section {
  padding: 110px 7% 30px;
  min-height: 0;
  display: flex;
  align-items: center;
  gap: 4%;
  max-width: 1360px;
  margin: 0 auto;
}

.hero-content {
  flex: 1.3;
}

.hero-visual {
  flex: 0.7;
  display: flex;
  justify-content: flex-end;
  transform: translateY(-4rem);
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

/* ─── HERO REFINEMENTS & REVEAL CLASSES ─── */
.hero-margin-bottom {
  margin-bottom: 3rem;
}

.hero-thank-you {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.bot-thank-you-img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  animation: float 4s ease-in-out infinite;
}

.flex-1 {
  flex: 1;
}

.thank-you-heading {
  margin: 0 0 0.6rem;
  color: var(--secondary-color);
  font-size: 1.5rem;
  font-weight: 700;
}

.thank-you-text {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  max-width: 500px;
  line-height: 1.6;
  color: var(--text-light);
}

.explore-btn {
  display: inline-block;
  padding: 1rem 2rem;
}

.hero-visual-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}

.logo-main {
  max-width: 90%;
  height: auto;
}

.affiliation-ribbon-style {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  filter: grayscale(1);
}

.affil-logo-35 {
  height: 35px;
  object-fit: contain;
}

.affil-logo-30 {
  height: 30px;
  object-fit: contain;
}

.infrastructure-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: -1.5rem;
}

.anchor-pillars-section {
  padding: 3rem 2rem;
  background: var(--bg-white);
  max-width: 1400px;
  margin: 0 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-header-custom {
  min-height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 2rem !important;
}

.page-header-h1 {
  font-size: clamp(2.2rem, 7vw, 3.8rem);
  line-height: 1.1;
}

.pillar-row-custom {
  padding-top: 0 !important;
}

/* Page header — LEFT-aligned on desktop/tablet, centered only on mobile */
.page-header {
  padding: 120px 7% 40px;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
}

/* ─── GRIDS ─── Compact Stacking ─── */
.accent-text {
  color: var(--secondary-color);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  padding: 3.5rem 7%;
  max-width: 1360px;
  margin: 0 auto;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 3.5rem 7%;
  max-width: 1360px;
  margin: 0 auto;
}

/* ─── CARDS ─── Premium Glassmorphism & Depth ─── */
.glass-card {
  background: #ffffff;
  padding: 2.2rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* ─── HAWB / Contact Boxes ─── */
.hawb-box {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  margin-top: 2.5rem;
}

.hawb-box h3 {
  color: var(--secondary-color);
}

/* ─── BOTS ─── Moved to fixed corner system (bot-idle.js) ─── */
/* Cleaned up redundant styles */

/* ─── DASHBOARD CONTEXTUAL ALIGNMENT ─── */
.dashboard-context-wrapper {
  padding: 3rem 7%;
  background: #ffffff;
  /* Pure white */
  margin: 3rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.dashboard-container {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  align-items: stretch;
}

.hero-visual-dashboard {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-content: flex-start;
  padding: 0;
}

.live-feed-widget {
  background: #ffffff;
  padding: 2rem;
  flex: 1 1 200px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  text-align: left;
}

.live-feed-widget:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.dashboard-schedule-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  border-bottom: 1px solid #eee;
  padding-bottom: 4px;
}

@media (max-width: 480px) {
  .dashboard-schedule-row {
    flex-direction: column;
    gap: 4px;
  }
}

.pricing-context-box {
  background: #ffffff;
  padding: 3.5rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pricing-context-box h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.pricing-cta {
  margin-top: 2rem;
}

.widget-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-bottom: 0.6rem;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

/* ─── LIVE FEED DASHBOARD WIDGETS ─── */
.hero-visual-dashboard {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem 0;
}

.live-feed-widget {
  background: #ffffff;
  padding: 1.5rem;
  min-width: 180px;
  text-align: left;
}

.widget-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  margin-bottom: 0.8rem;
  display: block;
}

.widget-value-large {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 0.9;
  display: block;
  color: var(--text-dark);
}

.widget-value-sub {
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
}

.widget-alert-orange {
  color: #F39C12;
}

.sku-bar-container {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 60px;
  margin-top: 1rem;
}

.sku-bar {
  width: 18px;
  border-radius: 4px;
  transition: height 1s ease-out;
}

.sku-bar.gray {
  background: #E0E0E0;
}

.sku-bar.red {
  background: #D1121D;
}

.sku-bar.dark {
  background: #1A1A1A;
}

/* ─── FOOTER EXPLORE GRID (RESTORED) ─── */
.next-steps-footer {
  padding: 4rem 7% 6rem;
  /* Substantial bottom padding for bot clearance */
  background: #ffffff;
  text-align: left;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.next-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 3rem auto 0;
}

/* ─── ECOSYSTEM FOOTER ICONS ─── */
.next-step-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.next-step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.next-step-card {
  padding: 3rem 2rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  background: #ffffff;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  color: var(--text-dark);
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
}

.next-step-card:hover {
  background: #ffffff;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.next-step-card:hover .next-step-icon img {
  transform: scale(1.2) translateY(-10px);
}

.next-step-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.next-step-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  color: var(--text-light);
  max-width: 90%;
}

/* ─── ANIMATIONS ─── */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ─── MOBILE MENU ─── */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 10001;
}

.hamburger {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text-dark);
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--text-dark);
  transition: 0.3s;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  bottom: 7px;
}

/* ─── HUB BUTTONS (Explore India Radar) ─── */
.hub-btn {
  background: #f8f9fa;
  border: none;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hub-btn:hover,
.hub-btn.active {
  background: var(--secondary-color) !important;
  color: white !important;
  border-color: var(--secondary-color) !important;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  nav {
    top: 0;
    width: 100%;
    border-radius: 0;
    padding: 0.8rem 5%;
    background: rgba(255, 255, 255, 0.95);
  }

  .mobile-nav-toggle {
    display: block;
  }

  .desktop-only {
    display: none !important;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 100%;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.8rem;
    font-weight: 700;
    opacity: 1;
  }

  .hero-section {
    flex-direction: column;
    text-align: center;
    padding: 110px 6% 40px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-visual {
    display: none;
    margin-top: 2rem;
    margin-bottom: 0;
    /* Reset upward shift on mobile */
  }

  .page-header {
    align-items: center;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 0.85rem 1.5rem;
  }

  .page-header {
    padding: 110px 6% 40px;
    min-height: 60vh;
  }

  h1 {
    font-size: 2.6rem;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 6%;
  }

  .glass-card {
    padding: 1.5rem;
  }

  .next-steps-footer {
    padding: 4rem 6%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.2rem;
  }

  .hero-section {
    padding: 100px 5% 30px;
  }

  .page-header {
    padding: 100px 5% 30px;
  }

  nav {
    padding: 0.7rem 4%;
  }
}

/* --- 5 PILLARS ARCHITECTURE STRIP (Global) --- */
.pillar-row {
  padding: 0 7% 2rem;
  max-width: 1360px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.pillar-columns {
  display: flex;
  align-items: flex-end;
  gap: 1.25rem;
  margin-bottom: 0;
  padding: 0;
  height: auto;
  justify-content: center;
}

.pillar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.25s ease;
  position: relative;
}

.pillar-col:hover {
  transform: translateY(-6px);
}

.pillar-icon {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.pillar-icon img {
  mix-blend-mode: multiply !important;
}

.pillar-label {
  margin-top: 0.65rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  color: var(--text-dark);
}

@media (max-width: 900px) {
  .pillar-columns {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }

  .pillar-col {
    flex: 0 0 30%;
  }
}

@media (max-width: 768px) {
  .anchor-pillars-section {
    min-height: 0;
    padding: 2rem 1rem;
  }

  .page-header {
    min-height: 0;
    padding-top: 5rem;
  }

  .page-header-h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .pillar-columns {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .pillar-col {
    flex: 1 1 100%;
    width: 100%;
  }

  .anchor-pillars-section {
    padding: 1rem;
  }

  .pillar-icon img {
    height: 90px !important;
    width: auto !important;
  }

  .pillar-label {
    font-size: 0.65rem;
    margin-top: 0.3rem;
  }
}

/* Phase 3: Forensic Refactor Utility Classes */
.affiliation-ribbon {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: flex-start;
  margin-top: 1rem;
  opacity: 0.6;
  filter: grayscale(1);
}

.feature-promo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10rem;
  background: #ffffff;
  padding: 5rem 3%;
  border-radius: 40px;
  max-width: 1400px;
  margin-inline: auto;
  gap: 3rem;
  flex-wrap: wrap;
}

.fw-grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.hero-headline {
  font-size: clamp(2.2rem, 7vw, 4rem);
  line-height: 1.1;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.section-light {
  padding: 4rem 6%;
  background: #fafafa;
}

.section-white {
  padding: 4rem 6%;
  background: #ffffff;
}

.flex-col-gap2 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.content-card-large {
  background: #fff;
  border-radius: 30px;
  padding: 4rem 2rem;
  border: 1px solid var(--glass-border);
  overflow: hidden;
  position: relative;
}

/* General utility catch-alls for highly repeated small inline styles */
.text-center {
  text-align: center !important;
}

.mt-1 {
  margin-top: 1rem !important;
}

.mt-2 {
  margin-top: 2rem !important;
}

.mt-3 {
  margin-top: 3rem !important;
}

.mb-1 {
  margin-bottom: 1rem !important;
}

.mb-2 {
  margin-bottom: 2rem !important;
}

.mb-3 {
  margin-bottom: 3rem !important;
}

.mb-h {
  margin-bottom: 0.5rem !important;
}

.c-secondary {
  color: var(--secondary-color) !important;
}


/* ================================= */
/* AUTO-EXTRACTED INLINE STYLES      */
/* ================================= */
.qs-style-6e35c1 {
  gap: 2rem;
}

.qs-style-d30b65 {
  border-bottom: 4px solid #008D75;
}

.qs-style-14cb0d {
  font-size: 0.9rem;
  line-height: 1.6;
}

.qs-style-3ac677 {
  border-bottom: 4px solid #E18A07;
}

.qs-style-a4e441 {
  border-bottom: 4px solid #A32A26;
}

.qs-style-0a21a8 {
  border-bottom: 4px solid #005696;
}

.qs-style-d43eb9 {
  border-bottom: 4px solid #007D67;
}

.qs-style-9b81eb {
  border-bottom: 4px solid #D58000;
}

.qs-style-ba7e68 {
  height: 25px;
  object-fit: contain;
}

.qs-style-ce2a81 {
  height: 20px;
  object-fit: contain;
}

.qs-style-83c4c4 {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

.qs-style-f19dc9 {
  align-items: center;
  margin-bottom: 5rem;
}

.qs-style-9c1154 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.qs-style-b50d01 {
  padding: 1.5rem;
  border-radius: 20px;
}

.qs-style-ac79cc {
  margin-bottom: 0.5rem;
}

.qs-style-33dd45 {
  font-size: 0.9rem;
}

.qs-style-4473cd {
  padding: 1.5rem;
  border-radius: 20px;
  grid-column: span 2;
}

.qs-style-cf0f3a {
  margin-top: 2rem;
}

.qs-style-6c057f {
  padding: 2.5rem;
  text-align: left;
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  flex: 1;
  min-width: 300px;
  max-width: 350px;
}

.qs-style-6a9054 {
  color: var(--secondary-color);
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.qs-style-ae9ad3 {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

.qs-style-0da480 {
  padding: 0.7rem 1.2rem;
  font-size: 0.9rem;
}

.qs-style-6f3a66 {
  display: flex;
  justify-content: center;
  flex: 0 0 center;
}

.qs-style-502951 {
  flex: 1;
  min-width: 300px;
}

.qs-style-624912 {
  color: var(--text-dark);
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.qs-style-42c8f2 {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
}

.qs-style-d3feb4 {
  margin-top: 1rem;
  display: inline-block;
}

.qs-style-94359d {
  margin: 0 0 1.5rem;
}

.qs-style-e2aca7 {
  padding: 1rem 5% 4rem;
  position: relative;
  z-index: 10;
  text-align: left;
}

.qs-style-2618d0 {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(26, 115, 232, 0.05);
  border-radius: 50%;
}

.qs-style-5a12e1 {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  background: rgba(209, 18, 29, 0.05);
  border-radius: 50%;
}

.qs-style-31eaed {
  margin-bottom: 3rem;
  font-size: 2.2rem;
  color: var(--text-dark);
}

.qs-style-871577 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.qs-style-9fe878 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 15px solid #f8f9fa;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
}

.qs-style-039283 {
  margin: 0;
  color: var(--secondary-color);
  font-size: 1.8rem;
}

.qs-style-a7deeb {
  font-weight: 800;
  font-size: 1.1rem;
  margin-top: 5px;
}

.qs-style-3a2d57 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px dashed #ddd;
  border-radius: 50%;
  animation: radar-spin 10s linear infinite;
}

.qs-style-f7944e {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.qs-style-24b531 {
  cursor: pointer;
}

.qs-style-0e748f {
  height: 240px;
  object-fit: contain;
  object-position: bottom;
}

.qs-style-460c3a {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-dark);
}

.qs-style-de2fda {
  margin: 0 0 3rem;
  text-align: center;
}

.qs-style-3402ba {
  font-size: 0.9rem;
  margin-top: 1rem;
}

.qs-style-b384ab {
  background: var(--text-dark);
  color: white;
}

.qs-style-169f06 {
  color: #666;
}

.qs-style-f6234f {
  color: white;
}

.qs-style-25db55 {
  align-items: flex-start;
  gap: 4rem;
  padding-bottom: 5rem;
}

.qs-style-185d79 {
  margin-top: 1.5rem;
}

.qs-style-d8e200 {
  color: darkred;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.qs-style-aec733 {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.qs-style-ca6632 {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.qs-style-6e47c6 {
  font-size: 0.95rem;
}

.qs-style-c5f503 {
  padding: 2rem 7% 5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.qs-style-183670 {
  margin-bottom: 2rem;
  border-left: 5px solid var(--secondary-color);
  padding-left: 1.5rem;
}

.qs-style-0df1fb {
  overflow-x: auto;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.qs-style-4ebcef {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.qs-style-eca379 {
  background: #f8f8f8;
  border-bottom: 2px solid var(--secondary-color);
}

.qs-style-6b93cb {
  padding: 1.2rem;
  min-width: 80px;
}

.qs-style-350c9f {
  padding: 1.2rem;
  min-width: 200px;
}

.qs-style-35ff74 {
  padding: 1.2rem;
}

.qs-style-929375 {
  border-bottom: 1px solid #eee;
}

.qs-style-e3e027 {
  padding: 1.2rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.qs-style-590901 {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: right;
}

.qs-style-daa39e {
  padding: 5rem 7%;
  max-width: 1400px;
  margin: 0 auto;
  background: #fafafa;
}

.qs-style-6ed62c {
  margin-bottom: 3rem;
}

.qs-style-0ad155 {
  overflow-x: auto;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 2rem;
}

.qs-style-d63ca9 {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

.qs-style-578137 {
  border-bottom: 2px solid #111;
}

.qs-style-199e2e {
  padding: 1.5rem 1rem;
}

.qs-style-cad77c {
  min-height: auto;
  padding-top: 160px;
  padding-bottom: 80px;
}

.qs-style-d3297f {
  margin-bottom: 1.5rem;
}

.qs-style-9de4e0 {
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.qs-style-e4a16c {
  margin-top: 4rem;
}

.qs-style-554a52 {
  border: 1.5px solid var(--secondary-color);
  padding: 2rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: #ffffff;
}

.qs-style-62eecf {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.qs-style-d6112d {
  width: 100px;
  flex-shrink: 0;
}

.qs-style-dfaf43 {
  width: 100%;
  border-radius: 8px;
}

.qs-style-1ad602 {
  background: var(--secondary-color);
  color: white;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.qs-style-67fc72 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.qs-style-d75012 {
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
}

.qs-style-84df9a {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.qs-style-8c501e {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
}

.qs-style-18c0c4 {
  width: 100%;
  padding: 0.8rem;
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
  text-decoration: none;
}

.qs-style-8e450d {
  padding-top: 0;
  padding-bottom: 5rem;
}

.qs-style-80b334 {
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

.qs-style-656f97 {
  margin-bottom: 2.5rem;
}

.qs-style-2fd338 {
  background: #fafafa;
  padding: 2.5rem;
  border-radius: 12px;
  border: none;
}

.qs-style-68162a {
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.qs-style-6a3144 {
  list-style: none;
  padding: 0;
  font-size: 0.9rem;
  line-height: 1.8;
}

.qs-style-4986ec {
  margin-bottom: 1rem;
}

.qs-style-8ebbfe {
  color: var(--secondary-color);
  font-weight: 700;
}

.qs-style-d3976c {
  width: 100%;
  background: #ffffff;
  border: none;
}

.qs-style-9d79f4 {
  color: var(--secondary-color);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.qs-style-04f832 {
  font-size: 1rem;
  margin-bottom: 2.5rem;
  color: var(--text-light);
}

.qs-style-257995 {
  margin-bottom: 2rem;
}

.qs-style-dbca09 {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.qs-style-4152f6 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary-color);
  text-decoration: none;
}

.qs-style-b9bf8a {
  font-size: 1.25rem;
  font-weight: 700;
  color: #25d366;
  text-decoration: none;
}

.qs-style-a81b40 {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.qs-style-d2a6df {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.8;
  border-top: 1px solid #f0f0f0;
  padding-top: 1.5rem;
}

.qs-style-4e00d5 {
  margin-top: 2rem;
  border-top: 3px solid var(--secondary-color);
}

.qs-style-d08cb6 {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.qs-style-4ce8f8 {
  list-style: none;
  padding: 0;
  font-size: 0.85rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.qs-style-195b98 {
  background: #ffffff;
  border-radius: var(--radius-xl);
  margin-top: 4rem;
  padding: 5rem 8%;
}

.qs-style-d36e6c {
  display: flex;
  align-items: center;
  justify-content: center;
}

.qs-style-28e83a {
  background: var(--secondary-color);
  box-shadow: none;
}

.qs-style-01fafb {
  min-height: auto;
  padding-bottom: 2rem;
}

.qs-style-db3aa5 {
  font-size: clamp(2.2rem, 7vw, 3.8rem);
  line-height: 1.1;
}

.qs-style-dd7ddc {
  cursor: pointer;
  margin-top: 2rem;
}

.qs-style-25e521 {
  padding-top: 0;
}

.qs-style-292e3e {
  background: #1a1a1a;
  height: 8px;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.qs-style-ae2c2e {
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4rem;
}

.qs-style-2cfee7 {
  background: #fbfbfb;
  padding: 5rem 7%;
}

.qs-style-d7b8ce {
  list-style: none;
  padding: 0;
}

.qs-style-d990ba {
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

.qs-style-0d85c3 {
  float: right;
  color: var(--secondary-color);
  font-weight: 700;
}

.qs-style-c8c6e6 {
  padding: 1rem 0;
}

.qs-style-8315ba {
  grid-column: span 2;
  margin-top: 2rem;
}

.qs-style-4798a1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

.qs-style-911aa4 {
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.qs-style-7d6c18 {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-light);
}

.qs-style-e7992d {
  font-size: 0.85rem;
}

.qs-style-c3692e {
  padding: 5rem 7%;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.qs-style-cf1a8e {
  margin: 2rem auto;
}

.qs-style-7228fc {
  min-height: auto;
  padding-bottom: 3rem;
}

.qs-style-9cc77b {
  height: 40%;
}

.qs-style-30184f {
  height: 80%;
}

.qs-style-0b0533 {
  height: 60%;
}

.qs-style-d85c4e {
  position: relative;
}

.qs-style-886e55 {
  display: contents;
}

.qs-style-df1c8d {
  width: 100%;
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  box-shadow: none;
}

.qs-style-199b6f {
  width: 100%;
}

.qs-style-c0b4cb {
  margin-top: 3rem;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  border-left: 5px solid var(--secondary-color);
  box-shadow: none;
}

.qs-style-6a9d47 {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.qs-style-bb3e18 {
  margin-bottom: 0;
  font-size: 1rem;
}

.qs-style-7acf63 {
  height: 500px;
  position: relative;
}

.qs-style-eca155 {
  position: absolute;
  top: 10%;
  left: -0%;
  padding: 1.5rem;
  border-radius: 12px;
  width: 140px;
  animation: float 5s ease-in-out infinite alternate;
  z-index: 20;
  box-shadow: none;
}

.qs-style-c679f0 {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  font-weight: 700;
}

.qs-style-5243ec {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-color);
}

.qs-style-538c38 {
  position: absolute;
  bottom: 15%;
  left: 0%;
  padding: 1rem;
  border-radius: 12px;
  width: 160px;
  height: 120px;
  animation: float 6s ease-in-out infinite alternate-reverse;
  z-index: 20;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 5px;
  box-shadow: none;
}

.qs-style-ff0956 {
  width: 100%;
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
}

.qs-style-e2a021 {
  width: 25px;
  height: 40%;
  background: #e0e0e0;
  border-radius: 4px;
}

.qs-style-271037 {
  width: 25px;
  height: 80%;
  background: var(--secondary-color);
  border-radius: 4px;
}

.qs-style-124a91 {
  width: 25px;
  height: 100%;
  background: var(--accent-color);
  border-radius: 4px;
}

.qs-style-303c4f {
  width: 25px;
  height: 60%;
  background: #222;
  border-radius: 4px;
}

.qs-style-aae423 {
  position: absolute;
  top: 35%;
  right: -5%;
  padding: 1.5rem;
  border-radius: 12px;
  width: 140px;
  animation: float 7s ease-in-out infinite alternate;
  z-index: 20;
  box-shadow: none;
}

.qs-style-7402cb {
  font-size: 1.8rem;
  font-weight: 800;
  color: #f39c12;
}

.qs-style-ab7069 {
  padding: 2.5rem 2rem;
}

.qs-style-8fe259 {
  padding: 0 5% 2rem;
  z-index: 10;
  position: relative;
}

.qs-style-8c8675 {
  padding: 2rem 5% 2rem;
  z-index: 10;
  position: relative;
  border-top: 1px solid #f0f0f0;
  margin-top: 2rem;
}

.qs-style-ec5906 {
  max-width: 720px;
  font-size: 1.1rem;
}

.qs-style-a4d768 {
  margin-top: 2rem;
  padding: 2rem;
  background: #fffbf0;
  border-left: 5px solid #f39c12;
}

.qs-style-8f3265 {
  color: #b07700;
  margin-bottom: 1.5rem;
}

.qs-style-5cf5bd {
  display: grid;
  gap: 1.25rem;
}

.qs-style-a147d2 {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.qs-style-fa415b {
  font-size: 1.5rem;
}

.qs-style-bb1849 {
  padding: 2rem 5% 2rem;
  z-index: 10;
  position: relative;
}

.qs-style-1d57e6 {
  max-width: 720px;
}

/* Phase 4: Structural Fixes & Semantic Classes */
.cursor-pointer {
  cursor: pointer;
}

.pillar-bot-img {
  height: 240px;
  object-fit: contain;
  object-position: bottom;
}

.foundation-text {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-dark);
}

.schedule-list-container {
  font-size: 0.9rem;
  margin-top: 1rem;
}

.widget-dark {
  background: var(--text-dark) !important;
  color: white !important;
}

.widget-label-dark {
  color: #666 !important;
}

.widget-value-dark {
  color: white !important;
}

/* Responsive Overrides (Fixing whitespace & mobile paddings) */
@media (max-width: 768px) {
  .page-header {
    padding: 80px 5% 30px !important;
    min-height: 0 !important;
  }

  .hero-section {
    padding: 90px 5% 30px !important;
    min-height: 0 !important;
  }

  .anchor-pillars-section {
    padding: 2rem 5% !important;
    min-height: 0 !important;
  }

  .dashboard-context-wrapper {
    padding: 2rem 5% !important;
    margin: 2rem 0 !important;
  }

  .dashboard-container {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .pricing-context-box {
    padding: 2rem !important;
  }

  .next-steps-footer {
    padding: 3rem 5% 6rem !important;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr !important;
    padding: 2rem 5% !important;
  }

  .feature-promo-card {
    flex-direction: column !important;
    padding: 2rem !important;
    margin-bottom: 3rem !important;
    border-radius: 20px !important;
  }
}