/* =========================================================================
   MEDIA QUERIES (Mobile & Tablet Responsiveness)
   Matches exact designs from user-uploaded Figma mockups
   ========================================================================= */

@media (max-width: 992px) {
  .eco-grid,
  .footer-grid,
  .split-section,
  .equity-content-grid,
  .who-content-grid,
  .problem-content-grid,
  .comp-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .comp-divider {
    display: none;
  }

  .comp-col {
    width: 100%;
  }

  .section-label {
    margin-bottom: 10px;
  }

  .text-right-desktop,
  .text-right {
    text-align: left !important;
  }

  .desktop-br {
    display: none !important;
  }

  .center-mobile {
    margin: 0 auto;
    display: flex;
  }
}

@media (max-width: 768px) {
  /* -------------------------------------------------------------
     1. FIXED HEADER & MOBILE NAVIGATION (Frame 282 & Frame 284)
     ------------------------------------------------------------- */
  .header {
    height: auto !important;
    min-height: 72px !important;
    padding: 12px 0 10px 0 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    z-index: 1000 !important;
    background: #f4f2ec !important;
    box-shadow: none !important;
    border-bottom: 1px solid #dedbd4 !important;
  }

  .header-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    position: relative !important;
  }

  .logo {
    order: 1;
    z-index: 1002;
  }

  .logo a {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 3px !important;
    text-decoration: none !important;
  }

  .logo-img {
    width: 28px !important;
    height: 28px !important;
    display: block !important;
    margin: 0 auto !important;
  }

  .logo-text,
  .logo-textw {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .logo-title {
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    letter-spacing: 0.4px !important;
    color: #111111 !important;
    white-space: nowrap !important;
  }

  .logo-sub {
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 0.42rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px !important;
    color: #555555 !important;
    margin-top: 1px !important;
    white-space: nowrap !important;
  }

  /* Right-side mobile container: 3-line hamburger on top, contact below */
  .header-right-mobile {
    order: 2;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    gap: 8px !important;
    z-index: 1002 !important;
  }

  /* 3 PARALLEL LINES HAMBURGER ICON */
  .header-right-mobile .nav-toggle-label,
  .nav-toggle-label {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    width: 26px !important;
    height: 14px !important;
    cursor: pointer !important;
    padding: 0 !important;
    margin: 0 !important;
    z-index: 1002 !important;
    background: transparent !important;
    -webkit-tap-highlight-color: transparent !important;
  }

  .header-right-mobile .nav-toggle-label span,
  .nav-toggle-label span {
    display: block !important;
    width: 100% !important;
    height: 2px !important;
    background-color: #1d2b53 !important;
    border-radius: 1px !important;
    transition: transform 0.25s ease, opacity 0.25s ease !important;
  }

  /* Contact button in mobile header */
  .header-right-mobile .btn-nav-contact {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #1d2b53 !important;
    color: #ffffff !important;
    border: 1px solid #00f7ff !important;
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 9.5px !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px !important;
    padding: 3px 12px !important;
    text-decoration: none !important;
    border-radius: 1px !important;
    text-transform: uppercase !important;
    line-height: 1.2 !important;
  }

  .nav-toggle:checked ~ .header-right-mobile .btn-nav-contact,
  body.menu-open .header-right-mobile .btn-nav-contact {
    display: none !important;
  }

  body.menu-open .header {
    background: transparent !important;
    border-bottom: none !important;
  }

  body.menu-open .header .logo,
  .nav-toggle:checked ~ .header-container .logo {
    visibility: hidden !important;
  }

  /* Fullscreen Navigation Overlay (Frame 282 - media_1789925825621.png) */
  .navad {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: #dcdad5 !important;
    z-index: 1001 !important;
    display: none !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* When checkbox is checked, display fullscreen menu overlay */
  .nav-toggle:checked ~ .navad,
  .navad.open,
  body.menu-open .navad {
    display: flex !important;
  }

  body.menu-open {
    overflow: hidden !important;
  }

  /* Animate 3 parallel lines into an 'X' close icon when open */
  .nav-toggle:checked ~ .header-right-mobile .nav-toggle-label span:nth-child(1),
  body.menu-open .header-right-mobile .nav-toggle-label span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }

  .nav-toggle:checked ~ .header-right-mobile .nav-toggle-label span:nth-child(2),
  body.menu-open .header-right-mobile .nav-toggle-label span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked ~ .header-right-mobile .nav-toggle-label span:nth-child(3),
  body.menu-open .header-right-mobile .nav-toggle-label span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-menu {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .nav-links li {
    text-align: center;
  }

  .nav-links a {
    font-family: 'JetBrains Mono', monospace;
    font-size: 21px;
    font-weight: 400;
    color: #0d0d0d;
    text-decoration: none;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: #1d2b53;
    font-weight: 600;
  }

  /* -------------------------------------------------------------
     2. HERO & TYPOGRAPHY RESETS (Screenshot 1, 2, 3, 4)
     ------------------------------------------------------------- */
  body {
    background-color: #f4f2ec;
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  html {
    overflow-x: hidden !important;
  }

  main {
    padding-top: 95px !important;
  }

  .hero {
    padding: 20px 16px 30px !important;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-container {
    position: relative !important;
    padding: 0 !important;
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .dashed-box {
    display: none !important;
  }

  .content-layer {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
  }

  .hero-text-wrap {
    display: block !important;
    border-top: 2px dashed #000 !important;
    border-right: 2px dashed #000 !important;
    border-bottom: 2px dashed #000 !important;
    border-left: none !important;
    padding: 20px 14px 20px 0 !important;
    margin-bottom: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .text-mask {
    margin-left: 0 !important;
    margin-top: 0 !important;
    margin-right: 0 !important;
    background-color: transparent !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .mobile-br {
    display: inline !important;
  }
  .desktop-br {
    display: none !important;
  }

  .hero-title {
    font-size: 1.45rem !important;
    line-height: 1.25 !important;
    font-family: var(--font-serif, 'Fraunces', serif) !important;
    font-weight: 400 !important;
    color: #000 !important;
    margin-bottom: 14px !important;
    word-break: normal !important;
  }

  .hero-desc {
    font-size: 0.8rem !important;
    line-height: 1.45 !important;
    font-family: var(--font-sans, 'Inter', sans-serif) !important;
    color: #111 !important;
  }

  .button-group {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    gap: 10px !important;
    width: 100% !important;
    margin-top: 16px !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }

  .hero-btn-top,
  .hero-btn-bottom {
    width: auto !important;
    max-width: 100% !important;
    display: inline-flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 20px !important;
    padding: 10px 16px !important;
    font-size: clamp(0.74rem, 3.3vw, 0.85rem) !important;
    box-sizing: border-box !important;
    border-radius: 0 !important;
    font-family: var(--font-mono, 'JetBrains Mono', monospace) !important;
    text-decoration: none !important;
    margin: 0 !important;
    white-space: nowrap !important;
  }

  .hero-btn-top {
    background-color: #1d2b53 !important;
    color: #ffffff !important;
    border: 1.5px solid #00f7ff !important;
  }

  .hero-btn-bottom {
    background-color: #ffffff !important;
    color: #000000 !important;
    border: 1.5px solid #000000 !important;
  }

  /* -------------------------------------------------------------
     3. STATS BANNER
     ------------------------------------------------------------- */
  .stats-banner {
    padding: 18px 16px !important;
    background: #ffffff !important;
    border-top: 1px solid #111 !important;
    border-bottom: 1px solid #111 !important;
  }

  .stats-container {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .stat-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    flex: 1 1 0 !important;
  }

  .stat-number {
    font-family: 'Fraunces', serif !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    margin-bottom: 3px !important;
    color: #000000 !important;
  }

  .stat-label {
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 7.5px !important;
    font-weight: 500 !important;
    letter-spacing: 0.3px !important;
    color: #444444 !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
  }

  .stat-text {
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 8px !important;
    line-height: 1.25 !important;
    color: #444444 !important;
  }

  /* -------------------------------------------------------------
     4. THE ECOSYSTEM SECTION (home.html - Screenshot 1)
     ------------------------------------------------------------- */
  .ecosystem {
    padding: 50px 16px !important;
    background-color: #1d2b53 !important;
  }

  .eco-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
  }

  .eco-title {
    font-size: 1.8rem !important;
    line-height: 1.15 !important;
    margin-bottom: 18px !important;
    color: #ffffff !important;
  }

  .eco-list {
    margin: 0 !important;
    border-top: 1px solid rgba(255,255,255,0.2) !important;
  }

  .eco-list li {
    font-size: 0.92rem !important;
    padding: 14px 0 !important;
    gap: 12px !important;
    border-bottom: 1px solid rgba(255,255,255,0.2) !important;
    color: #ffffff !important;
  }

  .eco-highlight {
    font-size: 1.65rem !important;
    line-height: 1.15 !important;
    margin: 15px 0 14px !important;
    color: #c4c1b9 !important;
    text-align: right !important;
  }

  .eco-desc {
    font-size: 0.92rem !important;
    line-height: 1.5 !important;
    margin-bottom: 20px !important;
    text-align: right !important;
    font-style: italic !important;
    color: #ffffff !important;
  }

  .eco-bold-desc {
    font-size: 0.92rem !important;
    line-height: 1.5 !important;
    font-weight: 400 !important;
    margin: 20px 0 25px !important;
    color: #ffffff !important;
    text-align: left !important;
  }

  .eco-right .btn,
  .eco-right .btn-dark-outline,
  .box .btn-dark-outline {
    width: 100% !important;
    background-color: #000000 !important;
    color: #ffffff !important;
    border: 1.5px solid #00f7ff !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 14px 16px !important;
    box-sizing: border-box !important;
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 0.88rem !important;
    text-decoration: none !important;
  }

  /* -------------------------------------------------------------
     5. COMPARISON / COLUMNS SECTION (home.html)
     ------------------------------------------------------------- */
  .comparison {
    padding: 50px 16px !important;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .comp-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }

  .container3,
  .comp-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }

  .comp-col {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .comp-label {
    font-size: 0.85rem !important;
    margin-bottom: 8px !important;
  }

  .comp-title {
    font-size: 1.65rem !important;
    line-height: 1.2 !important;
    margin-bottom: 20px !important;
  }

  .comp-col.text-right-desktop,
  .comp-col-msme {
    text-align: right !important;
  }

  .comp-col.text-right-desktop .comp-title,
  .comp-col-msme .comp-title {
    text-align: right !important;
  }

  .comp-col.text-right-desktop .label-small,
  .comp-col-msme .label-small {
    text-align: right !important;
  }

  .comp-col.text-right-desktop .feature-item-row,
  .comp-col-msme .msme-item {
    text-align: right !important;
    margin-bottom: 18px !important;
  }

  .comp-col.text-right-desktop .comp-result,
  .comp-col-msme .msme-result-block {
    text-align: right !important;
  }

  .msme-result-divider {
    width: 100% !important;
    max-width: 200px !important;
  }

  .label-small {
    font-size: 0.85rem !important;
    margin: 15px 0 10px !important;
  }

  .feature-item {
    margin: 18px 0 !important;
  }

  .feature-heading,
  .feature-item h4 {
    font-size: 1.1rem !important;
    margin-bottom: 6px !important;
  }

  .feature-desc,
  .feature-item p,
  .tool-list li,
  .feature-item-row p {
    font-size: 0.9rem !important;
    line-height: 1.45 !important;
  }

  .tools-stacked-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    margin-top: 10px !important;
  }

  .tool-stacked-entry .tool-name {
    font-size: 0.9rem !important;
  }

  .tool-stacked-entry .tool-desc {
    font-size: 0.84rem !important;
    line-height: 1.35 !important;
  }

  .b2 {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin-top: 35px;
  }

  .b2 .btn {
    width: 100%;
    margin: 0 !important;
    justify-content: space-between;
  }

  .comp-btn-wrapper {
    width: 100% !important;
    margin-top: 25px !important;
  }

  .comp-action-btn,
  .comp-btn-wrapper .comp-col-btn,
  .comp-col-btn {
    display: flex !important;
    width: 100% !important;
    justify-content: space-between !important;
    align-items: center !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 14px 16px !important;
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 0.88rem !important;
    text-decoration: none !important;
  }

  /* -------------------------------------------------------------
     6. WAYS TO WIN (5 CARDS 2x2 GRID - Screenshot 1)
     ------------------------------------------------------------- */
  .ways-to-win {
    background-color: #f8f5ec !important;
    padding: 44px 20px 40px !important;
  }

  .ways-title {
    font-family: var(--font-serif, 'Fraunces', serif) !important;
    font-size: 2.2rem !important;
    line-height: 1.12 !important;
    margin-bottom: 24px !important;
    color: #000000 !important;
  }

  .ways-title .fw-600 {
    font-weight: 700 !important;
  }

  .ways-title .italic-blue {
    font-style: italic !important;
    color: #2b3a67 !important;
    font-weight: 400 !important;
  }

  .cards-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 !important;
    margin: 0 auto 28px auto !important;
    width: 100% !important;
    max-width: 320px !important;
    box-sizing: border-box !important;
  }

  .card {
    min-height: auto !important;
    padding: 14px 10px 12px 10px !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    border: none !important;
  }

  .card:nth-child(1) {
    background-color: #78e8ff !important;
    border-top: 1px solid #000 !important;
    border-left: 1px solid #000 !important;
    border-right: 1px solid #000 !important;
    border-bottom: 1px solid #000 !important;
  }
  .card:nth-child(2) {
    background-color: #7891ff !important;
    border-top: 1px solid #000 !important;
    border-right: 1px solid #000 !important;
    border-bottom: 1px solid #000 !important;
  }
  .card:nth-child(3) {
    background-color: #aa69df !important;
    border-left: 1px solid #000 !important;
    border-right: 1px solid #000 !important;
    border-bottom: 1px solid #000 !important;
  }
  .card:nth-child(4) {
    background-color: #fe78d8 !important;
    border-right: 1px solid #000 !important;
    border-bottom: 1px solid #000 !important;
  }
  .card:nth-child(5) { 
    background-color: #ff787b !important; 
    grid-column: 1 / 2 !important;
    border-left: 1px solid #000 !important;
    border-right: 1px solid #000 !important;
    border-bottom: 1px solid #000 !important;
  }

  .card-num {
    font-family: var(--font-mono, 'JetBrains Mono', monospace) !important;
    font-size: 0.68rem !important;
    font-weight: 500 !important;
    margin-bottom: 6px !important;
    color: #000000 !important;
    display: block !important;
  }

  .card-title {
    font-family: var(--font-serif, 'Fraunces', serif) !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    margin-bottom: 6px !important;
    color: #000000 !important;
    white-space: normal !important;
  }

  .card p {
    font-family: var(--font-sans, 'Inter', sans-serif) !important;
    font-size: 0.72rem !important;
    line-height: 1.35 !important;
    color: #111111 !important;
    margin: 0 !important;
  }

  .card p strong {
    font-weight: 700 !important;
  }

  .ways-btn-wrapper {
    margin-top: 24px !important;
    width: 100% !important;
  }

  .ways-btn {
    width: 100% !important;
    background-color: #1d2b53 !important;
    color: #ffffff !important;
    border: 1.5px solid #00f7ff !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 13px 18px !important;
    font-family: var(--font-mono, 'JetBrains Mono', monospace) !important;
    font-size: clamp(0.78rem, 3.6vw, 0.9rem) !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
    text-decoration: none !important;
  }

  /* Diagram */
  .diagram-section {
    padding: 50px 20px;
  }

  .diagram-section img {
    width: 100%;
    max-width: 450px;
    height: auto;
    margin: 0 auto;
    display: block;
  }

  .btn-long {
    width: 100%;
    font-size: 0.95rem;
    padding: 16px 15px;
    justify-content: space-between;
    border: 1.5px solid #000;
    background: transparent;
  }

  /* -------------------------------------------------------------
     7. ECOSYSTEM PAGE (Screenshot 2)
     ------------------------------------------------------------- */
  .eco-page-wrapper {
    padding-top: 110px;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }

  .eco-hero-box {
    border: 3px dashed #000;
    padding: 35px 20px;
    margin-bottom: 40px;
    border-radius: 4px;
  }

  .eco-hero-title {
    font-size: 2.2rem;
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .eco-hero-desc {
    font-size: 1.05rem;
    line-height: 1.5;
  }

  .eco-section-heading {
    font-size: 2.2rem;
    margin-bottom: 25px;
    padding-left: 0;
  }

  .arms-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 60px;
  }

  .arm-item,
  .arm-itemnn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 25px 20px;
    border-radius: 2px;
    gap: 12px;
    margin: 0 !important;
    box-sizing: border-box;
  }

  .arm-item:nth-child(1),
  .arm-itemnn:nth-child(1) {
    background-color: #c6fdff;
    border: 1px solid #32f9ff;
  }

  .arm-item:nth-child(2),
  .arm-itemnn:nth-child(2) {
    background-color: #faffc6;
    border: 1px solid #f8de22;
  }

  .arm-item:nth-child(3),
  .arm-itemnn:nth-child(3) {
    background-color: #c6fdff;
    border: 1px solid #32f9ff;
  }

  .arm-item:nth-child(4),
  .arm-itemnn:nth-child(4) {
    background-color: #faffc6;
    border: 1px solid #f8de22;
  }

  .arm-item:nth-child(5),
  .arm-itemnn:nth-child(5) {
    background-color: #c6fdff;
    border: 1px solid #32f9ff;
  }

  .arm-name {
    width: 100%;
    font-size: 1.15rem;
    font-weight: 500;
    color: #1d2b53;
  }

  .arm-details {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .arm-text {
    font-size: 1rem;
    line-height: 1.45;
    color: #000;
  }

  .btn-weapon {
    width: 100%;
    background-color: #1d2b53;
    border: 1.5px solid #00f7ff;
    color: #fff;
    padding: 10px 18px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    text-decoration: none;
  }

  /* Timeline Canvas Responsiveness (media_1789982063116.png & media_1789982082582.png) */
  .eco-page-wrapper {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .eco-section-heading {
    font-family: var(--font-serif, 'Fraunces', serif) !important;
    font-size: clamp(1.7rem, 7.8vw, 1.92rem) !important;
    line-height: 1.15 !important;
    color: var(--navy, #1d2b53) !important;
    margin-bottom: 25px !important;
    white-space: nowrap !important;
  }

  .timeline-canvas {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    margin: 0 auto 80px auto !important;
    container-type: inline-size !important;
    overflow: visible !important;
  }

  .canvas-1 {
    aspect-ratio: 1569 / 2666 !important;
    max-width: 100% !important;
    margin-bottom: 110px !important;
  }

  .canvas-2 {
    aspect-ratio: 1561 / 1905 !important;
    max-width: 100% !important;
    margin-bottom: 110px !important;
  }

  .timeline-bg-img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    z-index: 1 !important;
    display: block !important;
    pointer-events: none !important;
  }

  .t-node {
    position: absolute !important;
    z-index: 10 !important;
    transform: translate(-50%, -50%) !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    background-color: var(--yellow-node, #f8de22) !important;
    border-radius: 50% !important;
    box-shadow: 2px 4px 15px rgba(0,0,0,0.15) !important;
  }

  .sz-1 { width: 33cqw !important; height: 33cqw !important; }
  .sz-2 { width: 18cqw !important; height: 18cqw !important; }
  .sz-3 { width: 30cqw !important; height: 30cqw !important; }
  .sz-4 { width: 42cqw !important; height: 42cqw !important; }
  .sz-5 { width: 14cqw !important; height: 14cqw !important; }

  .sz-m1 { width: 21cqw !important; height: 21cqw !important; }
  .sz-m2 { width: 32cqw !important; height: 32cqw !important; }
  .sz-m3 { width: 43cqw !important; height: 43cqw !important; }

  .t-text {
    position: absolute !important;
    font-family: var(--font-serif, 'Fraunces', serif) !important;
    font-size: clamp(13px, 3.8cqw, 17px) !important;
    color: var(--navy, #1d2b53) !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
  }

  .t-text.left {
    right: calc(100% + 10px) !important;
    text-align: right !important;
  }

  .t-text.right {
    left: calc(100% + 10px) !important;
    text-align: left !important;
  }

  .btn-timeline-end {
    position: absolute !important;
    background-color: #3000bc !important;
    color: #f8de22 !important;
    border: none !important;
    font-family: var(--font-serif, 'Fraunces', serif) !important;
    font-weight: 700 !important;
    font-size: clamp(14px, 3.8cqw, 18px) !important;
    padding: 10px 24px !important;
    min-width: 130px !important;
    text-align: center !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    z-index: 10 !important;
    transform: translate(-50%, -50%) !important;
    white-space: nowrap !important;
    box-shadow: 0 4px 15px rgba(48, 0, 188, 0.35) !important;
  }

  /* -------------------------------------------------------------
     8. THE INSTITUTION PAGE (Screenshot 3)
     ------------------------------------------------------------- */
  .institution-main {
    padding-top: 110px;
    padding-bottom: 50px;
  }

  .institution-wrapper {
    padding: 0 20px;
  }

  .hero-dashed-box {
    border: 3px dashed #000;
    padding: 35px 20px;
    margin-bottom: 40px;
    border-radius: 4px;
  }

  .hero-display-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .founders-stack {
    display: flex !important;
    flex-direction: column !important;
    margin-bottom: 40px !important;
    width: 100% !important;
  }

  .founder-card-solid {
    background-color: #f8de22 !important;
    border: 1px solid rgba(0, 0, 0, 0.4) !important;
    border-radius: 4px !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 24px 20px 20px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  .founder-title {
    font-family: var(--font-serif, 'Fraunces', serif) !important;
    font-size: 1.5rem !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;
    color: #000 !important;
    margin: 0 0 14px 0 !important;
  }

  .founder-title .title-role {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    display: inline-block !important;
    margin-top: 3px !important;
  }

  .founder-bio {
    font-family: var(--font-sans, 'Inter', sans-serif) !important;
    font-size: 0.88rem !important;
    line-height: 1.38 !important;
    color: #000 !important;
    margin: 0 0 16px 0 !important;
  }

  .founder-quote-row {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-top: 0 !important;
  }

  .li-icon-box {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #2e2b4d !important;
    flex-shrink: 0 !important;
  }

  .li-icon-box svg {
    width: 25px !important;
    height: 25px !important;
    display: block !important;
  }

  .quote-divider {
    width: 1.5px !important;
    height: 36px !important;
    background-color: #2e2b4d !important;
    flex-shrink: 0 !important;
  }

  .founder-quote {
    font-family: var(--font-mono, 'JetBrains Mono', monospace) !important;
    font-size: 0.74rem !important;
    font-weight: 500 !important;
    color: #2e2b4d !important;
    line-height: 1.28 !important;
    margin: 0 !important;
  }

  .section-serif-heading {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  .section-standard-text {
    font-size: 1.05rem;
    line-height: 1.5;
  }

  .philosophy-cards-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .phil-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.15);
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    min-height: auto;
  }

  .phil-number {
    font-size: 0.9rem;
    align-self: flex-start;
  }

  .phil-icon {
    width: 80px;
    height: 80px;
    margin: 10px auto;
  }

  .phil-text {
    font-size: 1.05rem;
    font-weight: 600;
  }

  /* -------------------------------------------------------------
     9. RAISE CAPITAL & DEBT-FREE INCOME HERO (Mobile)
     ------------------------------------------------------------- */
  .hero-container-single-btn .content-layer {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .hero-button-bottom-right {
    width: 100% !important;
    margin-top: 16px !important;
    margin-bottom: 0 !important;
    transform: none !important;
    padding: 0 !important;
  }

  .hero-button-bottom-right .btn {
    width: 100% !important;
    margin-right: 0 !important;
    background-color: #1d2b53 !important;
    border: 1.5px solid #00f7ff !important;
    color: #fff !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 14px 16px !important;
    font-size: clamp(0.72rem, 3.4vw, 0.88rem) !important;
    box-sizing: border-box !important;
    border-radius: 0 !important;
    font-family: var(--font-mono, 'JetBrains Mono', monospace) !important;
    text-decoration: none !important;
    white-space: nowrap !important;
  }

  .problems-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
  }

  .problem-item {
    border-radius: 2px;
    padding: 25px 20px;
    border: 1px solid transparent;
    box-sizing: border-box;
  }

  .problem-item.mob-card-blue {
    background-color: #c6fdff;
    border: 1px solid #32f9ff;
  }

  .problem-item.mob-card-yellow {
    background-color: #faffc6;
    border: 1px solid #f8de22;
  }

  .desktop-only {
    display: none !important;
  }

  .problem-content-grid.border {
    border: none !important;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .problem-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .small-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1d2b53;
    margin-bottom: 4px;
    display: block;
  }

  .btn-small {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    background-color: #1d2b53;
    color: #ffffff;
    border: 1.5px solid #00f7ff;
    padding: 10px 18px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    text-decoration: none;
    box-sizing: border-box;
    margin-top: 10px;
  }

  .sectionbgyellow {
    background-color: transparent !important;
    padding: 30px 20px 40px;
    margin-top: 20px;
  }

  .dream-content-grid {
    background-color: #f8de22;
    padding: 35px 20px 25px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    border-radius: 2px;
  }

  .bordered-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.15);
    font-size: 1.1rem;
    line-height: 1.4;
  }

  .bordered-list li:first-child {
    border-top: 1px solid rgba(0,0,0,0.15);
  }

  .split-sectionbgyellow {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }

  .dream-cta-wrapper {
    margin-top: 25px;
    width: 100%;
  }

  .dream-cta-wrapper .btn,
  .dream-btn {
    width: 100% !important;
    height: auto !important;
    background-color: #1d2b53 !important;
    color: #ffffff !important;
    border: 1.5px solid #00f7ff !important;
    justify-content: space-between !important;
    padding: 14px 20px !important;
    box-sizing: border-box !important;
  }

  /* -------------------------------------------------------------
     10. FOOTER ON MOBILE
     ------------------------------------------------------------- */
  .footer {
    padding: 48px 24px 32px !important;
    background-color: #000000 !important;
    color: #fff !important;
  }

  .footer .logo a {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 14px !important;
    text-decoration: none !important;
  }

  .footer .logo-img {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
  }

  .footer .logo-textw {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    text-align: left !important;
  }

  .footer .logo-title {
    font-size: 1.02rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    letter-spacing: 0.8px !important;
    line-height: 1.15 !important;
    text-transform: uppercase !important;
  }

  .footer .logo-sub {
    font-size: 0.58rem !important;
    color: #888888 !important;
    letter-spacing: 1.2px !important;
    line-height: 1.15 !important;
    display: block !important;
    margin-top: 2px !important;
    text-transform: uppercase !important;
  }

  .footer-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }

  .footer-desc {
    margin-top: 30px !important;
    font-family: 'Fraunces', serif !important;
    font-size: 1.32rem !important;
    line-height: 1.25 !important;
    letter-spacing: -0.2px !important;
    max-width: 285px !important;
    hyphens: none !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  .footer-desc::before {
    content: "Marwar Mentors Pvt Ltd";
    display: block;
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 10px !important;
    color: #888888 !important;
    margin-bottom: 12px !important;
    font-weight: 400 !important;
    letter-spacing: 0.3px !important;
    text-transform: none !important;
  }

  .footer-desc .text-white {
    color: #ffffff !important;
    font-weight: 400 !important;
  }

  .footer-desc .text-grey {
    color: #888888 !important;
    font-weight: 400 !important;
  }

  .footer-label {
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 10px !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 10px !important;
    color: #888888 !important;
    text-transform: uppercase !important;
    font-weight: 500 !important;
    opacity: 1 !important;
  }

  .footer-links {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
  }

  .footer-links li {
    margin: 0 !important;
    padding: 0 !important;
  }

  .footer-links a {
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 10.5px !important;
    color: #ffffff !important;
    text-decoration: none !important;
    letter-spacing: 0.5px !important;
    line-height: 1.4 !important;
  }

  .footer-links a:hover {
    color: #00f7ff !important;
  }

  .footer-col.contact-col {
    display: flex !important;
    flex-direction: column !important;
  }

  .footer-contact {
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 10.5px !important;
    line-height: 1.4 !important;
    margin: 0 0 4px 0 !important;
    letter-spacing: 0.2px !important;
  }

  .contact-col p.footer-contact:first-of-type {
    color: #ffffff !important;
  }

  .contact-col p.footer-contact:last-of-type {
    color: #888888 !important;
  }

  .footer-bottom {
    border-top: 1px solid #1f1f1f !important;
    padding-top: 18px !important;
    margin-top: 32px !important;
  }

  .footer-bottom p {
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 9.5px !important;
    color: #666666 !important;
    letter-spacing: 0.8px !important;
    text-transform: uppercase !important;
    margin: 0 !important;
  }

  /* -------------------------------------------------------------
     UTILITIES
     ------------------------------------------------------------- */
  .desktop-none {
    display: flex !important;
  }
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: inline !important;
  }
  .mobile-br {
    display: inline !important;
  }

  /* -------------------------------------------------------------
     RAISE CAPITAL: Section 02 (Mentorship & Tools Grid)
     Matches media_1789974664234.png / media_1789976643229.png
     ------------------------------------------------------------- */
  .mentorship-tools-section {
    padding: 50px 0 60px 0 !important;
  }

  .container.mentorship-tools-container,
  .mentorship-tools-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 14px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  .section-label-2 {
    display: flex !important;
    gap: 12px !important;
    align-items: flex-start !important;
    font-family: var(--font-mono, 'JetBrains Mono', monospace) !important;
    font-size: 0.72rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.05em !important;
    line-height: 1.3 !important;
    color: #333333 !important;
    margin-bottom: 24px !important;
  }

  .section-label-2 .label-num {
    font-family: var(--font-mono, 'JetBrains Mono', monospace) !important;
    font-size: 0.72rem !important;
    font-weight: 400 !important;
    color: #444444 !important;
  }

  .section-label-2 .label-text {
    font-family: var(--font-mono, 'JetBrains Mono', monospace) !important;
    font-size: 0.72rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.05em !important;
    line-height: 1.3 !important;
    color: #333333 !important;
  }

  .mentorship-header {
    margin-bottom: 30px !important;
  }

  .mentorship-title {
    font-family: var(--font-serif, 'Fraunces', serif) !important;
    font-size: 2.35rem !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em !important;
    color: #000000 !important;
    margin: 0 !important;
  }

  .mentorship-desc {
    font-family: var(--font-sans, 'Inter', sans-serif) !important;
    font-size: 0.92rem !important;
    line-height: 1.5 !important;
    color: #222222 !important;
    margin-top: 20px !important;
  }

  .tools-header {
    margin: 42px 0 24px 0 !important;
    text-align: left !important;
  }

  .tools-title {
    font-family: var(--font-serif, 'Fraunces', serif) !important;
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    line-height: 1.12 !important;
    letter-spacing: -0.02em !important;
    color: #000000 !important;
    text-align: left !important;
    margin: 0 !important;
  }

  .tools-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 34px 14px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  .tool-card {
    height: 175px !important;
    min-height: 175px !important;
    max-height: 175px !important;
    aspect-ratio: 1 / 1 !important;
    padding: 16px 12px 12px 12px !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    overflow: hidden !important;
  }

  /* Card colors matching mockup media_1789974664234.png / media_1789976643229.png */
  .tool-card:nth-child(1) { background-color: #f8de22 !important; }
  .tool-card:nth-child(2) { background-color: #03aed2 !important; }
  .tool-card:nth-child(3) { background-color: #ff5fcf !important; }
  .tool-card:nth-child(4) { background-color: #f8de22 !important; }
  .tool-card:nth-child(5) { background-color: #03aed2 !important; }
  .tool-card:nth-child(6) { background-color: #ff5fcf !important; }

  .tool-card .card-num {
    font-family: var(--font-mono, 'JetBrains Mono', monospace) !important;
    font-size: 0.65rem !important;
    font-weight: 500 !important;
    margin-bottom: 8px !important;
    color: #000000 !important;
    display: block !important;
    line-height: 1 !important;
  }

  .tool-card .card-title {
    font-family: var(--font-serif, 'Fraunces', serif) !important;
    font-size: 0.98rem !important;
    font-weight: 700 !important;
    line-height: 1.12 !important;
    margin-bottom: 12px !important;
    color: #000000 !important;
  }

  .tool-card p {
    font-family: var(--font-sans, 'Inter', sans-serif) !important;
    font-size: 0.84rem !important;
    line-height: 1.34 !important;
    color: #111111 !important;
    margin: 0 !important;
  }

  /* -------------------------------------------------------------
     RAISE CAPITAL: Handholding Section
     Matches media_1789974690155.png
     ------------------------------------------------------------- */
  .handholding-section {
    background-color: var(--c-yellow) !important;
    padding: 50px 0 60px 0 !important;
  }

  .handholding-title {
    font-family: var(--font-serif, 'Fraunces', serif) !important;
    font-size: 2.45rem !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 30px !important;
    color: #000000 !important;
  }

  .handholding-list-wrap {
    margin: 0 !important;
    width: 100% !important;
  }

  .handholding-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border-top: 1px solid rgba(0, 0, 0, 0.25) !important;
    width: 100% !important;
  }

  .handholding-list li {
    padding: 18px 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25) !important;
    font-family: var(--font-sans, 'Inter', sans-serif) !important;
    font-size: 1.02rem !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    color: #000000 !important;
  }
}