/* ==========================================================================
   KOMPACT AI FOR DEVELOPERS PAGE STYLESHEET (developerRoute.css)
   ========================================================================== */

:root {
  --bg: #120F0F;
  --bg-hero: #150F0F;
  --primary: #FFCE1B;
  --secondary: #FB1650;
  --accent-yellow: #FFCE1B;
  --accent-yellow-dark: #d9ac1f;
  --accent-red: #FB1650;
  
  --card-bg: rgba(52, 32, 31, 0.40);
  --card-bg-hover: rgba(62, 40, 39, 0.65);
  --border-subtle: rgba(255, 255, 255, 0.10);
  --border-card: rgba(255, 255, 255, 0.12);
  
  --text-white: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.65);
  --text-dimmer: rgba(255, 255, 255, 0.40);
  --text-nav: rgba(255, 255, 255, 0.70);
  
  --font-head: 'Sora', sans-serif;
  --font-display: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  --max-w: 1376px;
  --px: 64px;
  --radius-card: 14px;
  --radius-media: 10px;
  --radius-pill: 999px;
}

*, *::before, *::after {
  box-sizing: border-box !important;
}

html, body {
  margin: 0;
  padding: 0;
  background-color: var(--bg);
  color: var(--text-white);
  font-family: 'DM Sans', "Inter", -apple-system, sans-serif !important;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100% !important;
  max-width: 100% !important;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

address {
  font-style: normal;
}

/* Global Ambient Glow (Bottom-Left) */
.global-glow {
  width: 492px;
  height: 492px;
  position: fixed;
  left: 13px;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, #491C13 0%, #1E1211 100%);
  filter: blur(125px);
}

/* Container margins */
.dev-container {
  width: 100%;
  max-width: var(--max-w, 1376px);
  margin: 0 auto;
  padding-left: var(--px, 64px);
  padding-right: var(--px, 64px);
}

:focus-visible {
  outline: 2px solid var(--accent-yellow);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   1. NAVBAR OVERRIDES (Solid background at all scroll positions + Exact Fonts)
   ========================================================================== */
header.navbar,
.navbar,
#navbar {
  background: rgba(18, 15, 15, 0.96) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6) !important;
}

/* Exact sitewide navbar typography overrides */
header.navbar .nav-item,
.navbar .nav-item {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.02em !important;
}

header.navbar .btn-primary.nav-cta,
.navbar .nav-cta {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.03em !important;
}

header.navbar .solutions-title {
  font-family: 'Sora', sans-serif !important;
  font-size: 15px !important;
  font-weight: 500 !important;
}

header.navbar .solutions-desc {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  font-weight: 300 !important;
}

header.navbar .resources-item-text,
header.navbar .mega-model-name {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
}

header.navbar .solutions-header,
header.navbar .resources-dropdown-header,
header.navbar .mega-column-header {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
}

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */
.dev-page-wrapper {
  position: relative;
  width: 100%;
}

.dev-main {
  position: relative;
  z-index: 1;
}

/* Vertical Page Border Lines (Hidden on Desktop/Widescreen, shown on Mobile/Tablet) */
.vector-line-left,
.vector-line-right {
  display: none !important;
}

.dev-hero {
  padding-top: 130px;
  padding-bottom: 48px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.dev-hero-heading {
  font-family: 'Sora', sans-serif;
  font-weight: 300;
  font-size: 44px;
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
  color: var(--text-white);
}

.accent-yellow {
  color: var(--accent-yellow);
}

.dev-hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.6;
}

/* ==========================================================================
   3. SECTION 1 — 5-CARD IMAGE GRID (ROW 1: 3 CARDS, ROW 2: 2 CENTERED CARDS)
   ========================================================================== */
.dev-nav-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 48px;
  padding-bottom: 56px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.dev-nav-row-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.dev-nav-row-bottom {
  display: flex;
  justify-content: center;
  gap: 24px;
  width: 100%;
}

.dev-nav-row-bottom .dev-nav-card {
  width: calc((100% - 48px) / 3);
  flex: none;
}

.dev-nav-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
}

.dev-nav-card-media {
  width: 100%;
  aspect-ratio: 16 / 10.5;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dev-nav-card:hover .dev-nav-card-media {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.dev-nav-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.dev-nav-card:hover .dev-nav-card-img {
  transform: scale(1.03);
}

.dev-nav-card-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.dev-nav-card-label .arrow {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  transition: transform 0.2s ease, color 0.2s ease;
}

.dev-nav-card:hover .dev-nav-card-label {
  color: var(--accent-yellow);
}

.dev-nav-card:hover .dev-nav-card-label .arrow {
  transform: translateX(4px);
  color: var(--accent-yellow);
}

/* ==========================================================================
   4. SECTION 2 — COMPACT 5-BOX INFO GRID
   ========================================================================== */
.dev-boxes-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding-bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.dev-boxes-row-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.dev-boxes-row-bottom {
  display: flex;
  justify-content: center;
  gap: 24px;
  width: 100%;
}

.dev-boxes-row-bottom .dev-info-box {
  width: calc((100% - 48px) / 3);
  flex: none;
}

.dev-info-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.dev-info-box:hover {
  border-color: rgba(255, 206, 27, 0.4);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.dev-box-badge {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 206, 27, 0.10);
  border: 1px solid rgba(255, 206, 27, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.dev-box-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.dev-box-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #FFFFFF;
  margin: 0 0 8px;
}

.dev-box-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

/* ==========================================================================
   4. SITEWIDE FOOTER STYLES (Matching sbox.css / home.css / philosophy.css)
   ========================================================================== */
.footer {
  position: relative;
  z-index: 10;
  background: #120F0F;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  box-sizing: border-box;
  padding-top: 0;
  padding-bottom: 0;
}

.footer-inner {
  width: 100%;
  max-width: var(--max-w, 1376px);
  margin: 0 auto;
  padding: 40px 64px;
  box-sizing: border-box;
}

.footer-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 0.1px solid rgba(255, 255, 255, 0.15) !important;
  margin-bottom: 36px;
}

.footer-nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.footer-nav-link {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 16px !important;
  font-weight: 300 !important;
  color: rgba(255, 255, 255, 0.55) !important;
  text-decoration: none;
  transition: color 0.18s ease;
}

.footer-nav-link:hover {
  color: #ffffff !important;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 0.5px solid rgba(255, 255, 255, 0.20);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: border-color 0.18s, background 0.18s;
}

.social-icon:hover {
  border-color: rgba(255, 255, 255, 0.60);
  background: rgba(255, 255, 255, 0.06);
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 0;
}

.footer-big-logo {
  flex-shrink: 0;
}

.big-k-square {
  width: 120px;
  height: 120px;
  background: #FFCE1B;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.footer-addresses {
  display: flex;
  gap: 60px;
  flex: 1;
  padding: 0 60px;
}

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-city {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.80) !important;
  letter-spacing: 0.02em !important;
  margin: 0;
}

.footer-addr-text {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  font-weight: 300 !important;
  color: rgba(255, 255, 255, 0.45) !important;
  line-height: 20px !important;
  margin: 0;
}

.footer-ziroh {
  flex-shrink: 0;
}

.ziroh-logo {
  height: 36px;
  width: auto;
  filter: none;
  transition: opacity 0.18s ease;
}

.ziroh-logo:hover {
  opacity: 0.9;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 36px;
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-copyright {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 12px !important;
  font-weight: 300 !important;
  color: rgba(255, 255, 255, 0.5) !important;
  margin: 0;
}

.footer-legal-links {
  display: flex;
  gap: 32px;
}

.footer-legal-links a {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 12px !important;
  font-weight: 300 !important;
  color: rgba(255, 255, 255, 0.5) !important;
  text-decoration: none;
  transition: color 0.18s ease;
}

.footer-legal-links a:hover {
  color: #ffffff !important;
}

/* ==========================================================================
   5. RESPONSIVE BREAKPOINTS (Tablet & Mobile)
   ========================================================================== */

/* TABLET BREAKPOINT (max-width: 1240px) */
@media (max-width: 1240px) {
  :root {
    --px: 40px;
  }

  .vector-line-left {
    display: block !important;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;
    width: 2px;
    background: url('../../public/assets/about/Ziroh_web_icon/Vector 857.png') repeat-y center;
    z-index: 20 !important;
    pointer-events: none;
  }

  .vector-line-right {
    display: block !important;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 24px;
    width: 2px;
    background: url('../../public/assets/about/Ziroh_web_icon/Vector 858.png') repeat-y center;
    z-index: 20 !important;
    pointer-events: none;
  }

  .footer-inner {
    padding: 32px 40px;
  }

  .dev-hero {
    padding-top: 110px;
    padding-bottom: 44px;
  }

  .dev-hero-heading {
    font-size: 36px;
  }

  .dev-hero-sub {
    font-size: 15px;
  }

  .dev-nav-grid,
  .dev-boxes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .dev-nav-row-top,
  .dev-nav-row-bottom,
  .dev-boxes-row-top,
  .dev-boxes-row-bottom {
    display: contents;
  }

  .dev-nav-row-bottom .dev-nav-card,
  .dev-boxes-row-bottom .dev-info-box,
  .dev-nav-card,
  .dev-info-box {
    width: 100% !important;
  }

  @media (min-width: 769px) {
    .dev-nav-row-bottom .dev-nav-card:last-child,
    .dev-boxes-row-bottom .dev-info-box:last-child {
      grid-column: 1 / -1;
      justify-self: center;
      width: calc((100% - 20px) / 2) !important;
    }
  }

  .dev-boxes-grid {
    padding-bottom: 90px;
  }

  /* SITEWIDE TABLET FOOTER (Exact copy from sbox.css / rbox.css / finbox.css) */
  body .footer .footer-inner,
  body footer#footer-mobile .footer-inner,
  .footer-inner {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 32px 36px !important;
    box-sizing: border-box !important;
    border-left: none !important;
    border-right: none !important;
    display: block !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    height: auto !important;
  }

  /* Top Nav Row */
  body .footer .footer-nav-row,
  body footer#footer-mobile .footer-nav-row,
  .footer-nav-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 18px !important;
    padding-bottom: 24px !important;
    margin-bottom: 24px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    position: relative !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  body .footer .footer-nav-links,
  body footer#footer-mobile .footer-nav-links,
  .footer-nav-links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  body .footer .footer-nav-link,
  body footer#footer-mobile .footer-nav-link,
  .footer-nav-link {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none !important;
  }

  /* Social Icons */
  body .footer .footer-socials,
  body footer#footer-mobile .footer-socials,
  .footer-socials {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 14px !important;
  }

  body .footer .social-icon,
  body footer#footer-mobile .social-icon,
  .social-icon {
    width: 32px !important;
    height: 32px !important;
    background: #ffffff !important;
    border-radius: 6px !important;
    border: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
  }

  body .footer .social-icon svg path,
  body .footer .social-icon svg circle,
  body footer#footer-mobile .social-icon svg path,
  body footer#footer-mobile .social-icon svg circle,
  .social-icon svg path,
  .social-icon svg circle {
    stroke: #000000 !important;
    fill: #000000 !important;
  }

  body .footer .social-icon svg path[fill="none"],
  body footer#footer-mobile .social-icon svg path[fill="none"],
  .social-icon svg path[fill="none"] {
    fill: none !important;
  }

  /* Middle Row: Addresses & Logos */
  body .footer .footer-bottom-row,
  body footer#footer-mobile .footer-bottom-row,
  .footer-bottom-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0 !important;
    padding-bottom: 24px !important;
    margin-bottom: 24px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    position: relative !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Addresses: Left (Bengaluru) & Right (Palo Alto) */
  body .footer .footer-addresses,
  body footer#footer-mobile .footer-addresses,
  .footer-addresses {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    width: 100% !important;
    padding: 0 !important;
    gap: 16px !important;
    margin-bottom: 24px !important;
    order: 1 !important;
    box-sizing: border-box !important;
  }

  body .footer .footer-address:first-child,
  body footer#footer-mobile .footer-address:first-child,
  .footer-address:first-child {
    flex: 1 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
  }

  body .footer .footer-address:last-child,
  body .footer .footer-address:nth-child(2),
  body footer#footer-mobile .footer-address:last-child,
  body footer#footer-mobile .footer-address:nth-child(2),
  .footer-address:last-child,
  .footer-address:nth-child(2) {
    flex: 1 !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
  }

  body .footer .footer-city,
  body footer#footer-mobile .footer-city,
  .footer-city {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    margin: 0 !important;
  }

  body .footer .footer-addr-text,
  body footer#footer-mobile .footer-addr-text,
  .footer-addr-text {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 11px !important;
    font-weight: 300 !important;
    color: rgba(255, 255, 255, 0.6) !important;
    line-height: 1.5 !important;
    margin: 0 !important;
  }

  /* ZIROHLabs Logo: Below Addresses, Left Aligned */
  body .footer .footer-ziroh,
  body footer#footer-mobile .footer-ziroh,
  .footer-ziroh {
    order: 2 !important;
    align-self: flex-start !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    margin-bottom: 24px !important;
    grid-column: auto !important;
    grid-row: auto !important;
    display: block !important;
    text-align: left !important;
  }

  body .footer .ziroh-logo,
  body footer#footer-mobile .ziroh-logo,
  .ziroh-logo {
    height: 28px !important;
    width: auto !important;
    display: block !important;
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  /* Big K. Square Logo: Below ZIROHLabs Logo, Left Aligned */
  body .footer .footer-big-logo,
  body footer#footer-mobile .footer-big-logo,
  .footer-big-logo {
    order: 3 !important;
    align-self: flex-start !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    grid-column: auto !important;
    grid-row: auto !important;
    display: block !important;
  }

  body .footer .big-k-square,
  body footer#footer-mobile .big-k-square,
  .big-k-square {
    width: 72px !important;
    height: 72px !important;
    border-radius: 4px !important;
    display: block !important;
    margin-left: 0 !important;
  }

  /* Bottom Legal Section */
  body .footer .footer-legal,
  body footer#footer-mobile .footer-legal,
  .footer-legal {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
    border-top: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  body .footer .footer-legal-links,
  body footer#footer-mobile .footer-legal-links,
  .footer-legal-links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    gap: 24px !important;
    order: 1 !important;
    width: 100% !important;
  }

  body .footer .footer-legal-links a,
  body footer#footer-mobile .footer-legal-links a,
  .footer-legal-links a {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
  }

  body .footer .footer-copyright,
  body footer#footer-mobile .footer-copyright,
  .footer-copyright {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 12px !important;
    font-weight: 300 !important;
    color: rgba(255, 255, 255, 0.45) !important;
    margin: 0 !important;
    order: 2 !important;
  }
}

/* MOBILE BREAKPOINT (max-width: 768px) */
@media (max-width: 768px) {
  :root {
    --px: 20px;
  }

  .vector-line-left {
    left: 20px;
    z-index: 20 !important;
  }

  .vector-line-right {
    right: 20px;
    z-index: 20 !important;
  }

  .dev-container {
    padding-left: 36px !important;
    padding-right: 36px !important;
  }

  .footer-inner {
    padding: 32px 36px !important;
  }

  .dev-hero {
    padding-top: 96px;
    padding-bottom: 32px;
  }

  .dev-hero-heading {
    font-size: 28px;
  }

  .dev-hero-sub {
    font-size: 14px;
    margin-bottom: 24px;
  }

  /* SECTION 1 MOBILE — 2 COLUMNS PER ROW */
  .dev-nav-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding-top: 32px;
    padding-bottom: 40px;
  }

  .dev-nav-row-top,
  .dev-nav-row-bottom {
    display: contents;
  }

  .dev-nav-row-bottom .dev-nav-card,
  .dev-nav-card {
    width: 100% !important;
    max-width: 100% !important;
    flex: auto !important;
  }

  .dev-nav-card-media {
    width: 100% !important;
    aspect-ratio: 16 / 10.5 !important;
    border-radius: 12px;
  }

  .dev-nav-card-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 12px;
  }

  .dev-nav-row-bottom .dev-nav-card:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc((100% - 14px) / 2) !important;
  }

  .dev-nav-card-label {
    font-size: 11px;
    margin-top: 8px;
    gap: 4px;
  }

  .dev-nav-card-label .arrow {
    font-size: 11px;
  }

  /* SECTION 2 MOBILE — 1 BOX PER ROW WITH SIDE-BY-SIDE BADGE & TEXT */
  .dev-boxes-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 72px;
  }

  .dev-boxes-row-top,
  .dev-boxes-row-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .dev-boxes-row-bottom .dev-info-box,
  .dev-boxes-row-bottom .dev-info-box:last-child,
  .dev-info-box {
    width: 100% !important;
    max-width: 100% !important;
    flex: auto !important;
    grid-column: auto !important;
    justify-self: stretch !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 14px !important;
    padding: 16px !important;
    box-sizing: border-box !important;
  }

  .dev-box-badge {
    width: 38px;
    height: 38px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .dev-box-icon {
    width: 20px;
    height: 20px;
  }

  .dev-box-content {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .dev-box-title {
    font-size: 16px;
    margin: 0 0 4px 0;
  }

  .dev-box-desc {
    font-size: 12.5px;
    line-height: 1.45;
  }

  /* SITEWIDE MOBILE FOOTER (Matching standard smaller font sizes) */
  .footer-inner {
    padding: 32px 32px 24px 32px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }

  .footer-nav-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 18px !important;
    padding-bottom: 20px !important;
    margin-bottom: 24px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    width: 100% !important;
  }

  .footer-nav-links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 20px !important;
    width: 100% !important;
  }

  .footer-nav-link {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 13.5px !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none !important;
  }

  .footer-nav-link--active,
  .footer-nav-link:hover {
    color: #FFCE1B !important;
    text-decoration: none !important;
  }

  .footer-socials {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 14px !important;
  }

  .social-icon {
    width: 32px !important;
    height: 32px !important;
    background-color: #ffffff !important;
    border-radius: 6px !important;
    border: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    transition: opacity 0.2s ease !important;
  }

  .social-icon:hover {
    opacity: 0.85 !important;
  }

  .social-icon svg {
    width: 18px !important;
    height: 18px !important;
    filter: brightness(0) !important;
    fill: #000000 !important;
    stroke: #000000 !important;
  }

  .social-icon path {
    fill: #000000 !important;
    stroke: #000000 !important;
  }

  .footer-bottom-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px !important;
    width: 100% !important;
  }

  /* 1st: Addresses above logos */
  .footer-addresses {
    order: 1 !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .footer-address {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    margin: 0 !important;
  }

  .footer-city {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 13.5px !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0 !important;
  }

  .footer-addr-text {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 11.5px !important;
    font-weight: 300 !important;
    color: rgba(255, 255, 255, 0.5) !important;
    line-height: 1.5 !important;
    margin: 0 !important;
  }

  /* 2nd: ZIROHLabs Logo */
  .footer-ziroh {
    order: 2 !important;
    display: block !important;
    margin-top: 2px !important;
    margin-bottom: 0 !important;
  }

  .ziroh-logo {
    height: 28px !important;
    width: auto !important;
    filter: none !important;
    display: block !important;
    object-fit: contain !important;
  }

  /* 3rd: Yellow K Logo */
  .footer-big-logo {
    order: 3 !important;
    display: block !important;
    margin-top: 2px !important;
    margin-bottom: 0 !important;
  }

  .big-k-square {
    width: 60px !important;
    height: 60px !important;
    background: #FFCE1B !important;
    border-radius: 8px !important;
    display: block !important;
    object-fit: cover !important;
  }

  .footer-legal {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    padding-top: 20px !important;
    margin-top: 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
    width: 100% !important;
  }

  .footer-legal-links {
    order: 1 !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 20px !important;
  }

  .footer-legal-links a {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 11.5px !important;
    font-weight: 300 !important;
    color: rgba(255, 255, 255, 0.55) !important;
    text-decoration: none !important;
  }

  .footer-copyright {
    order: 2 !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 11px !important;
    font-weight: 300 !important;
    color: rgba(255, 255, 255, 0.4) !important;
    margin: 0 !important;
  }
}
