/* ==========================================================================
   NAMEDEKHO - MOBIKASA SIGNATURE DESIGN SYSTEM
   High-Energy Digital Transformation Agency Aesthetic
   ========================================================================== */

:root {
  /* Brand Palette (Extracted from Mobikasa) */
  --mobi-orange: #F6760F;
  --mobi-orange-dark: #EF6D04;
  --mobi-orange-hover: #E0721B;
  --mobi-orange-glow: #FF9922;
  --mobi-yellow-arrow: #FFD600;

  /* Surfaces & Neutrals */
  --mobi-black: #000000;
  --mobi-dark-slate: #141414;
  --mobi-dark-card: #1B1B1B;
  --mobi-gray-surface: #F1F1F1;
  --mobi-gray-card: #F8F9FA;
  --mobi-white: #FFFFFF;

  /* Text Tokens */
  --text-dark: #141414;
  --text-muted: rgba(20, 20, 20, 0.65);
  --text-white: #FFFFFF;
  --text-white-muted: rgba(255, 255, 255, 0.7);

  /* Fonts */
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Source Serif 4', Georgia, serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Transitions & Layout */
  --container-width: 1240px;
  --ease-snappy: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & CORE FOUNDATIONS
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--mobi-black);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font-heading);
  background-color: var(--mobi-gray-surface);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

.mobi-container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography Helpers */
.text-white { color: #FFFFFF !important; }
.text-black { color: #000000 !important; }
.text-orange { color: var(--mobi-orange) !important; }
.font-black { font-weight: 900 !important; }

.headline-serif-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--mobi-orange);
}

.mobi-pill-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.95rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--mobi-orange);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

/* Mobikasa Signature Pill Buttons */
.mobi-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--mobi-orange);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.75rem 1.65rem;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
  user-select: none;
  white-space: nowrap;
}

.mobi-btn-primary:hover {
  background: var(--mobi-orange-hover);
  transform: translateY(-2px);
}

.mobi-btn-primary:active { transform: scale(0.98); }

.cta-icon-mobile {
  display: none;
}
.cta-text-desktop {
  display: inline;
}

.mobi-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #FFFFFF;
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.75rem 1.65rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mobi-btn-white:hover {
  background: #F1F1F1;
  transform: translateY(-2px);
}

/* ==========================================================================
   MOBIKASA HEADER & NAVIGATION
   ========================================================================== */
.mobi-header {
  background-color: var(--mobi-black);
  position: sticky;
  top: 0;
  z-index: 9999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobi-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}

.mobi-logo-link {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.mobi-logo-link:hover {
  transform: translateY(-1px);
}

.brand-typography {
  display: flex;
  flex-direction: column;
}

.mobi-logo-text {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.logo-lens-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 2px;
}

.lens-o-svg {
  display: block;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.25s ease;
}

.mobi-logo-link:hover .lens-o-svg {
  transform: scale(1.12) rotate(45deg);
  filter: drop-shadow(0 0 10px rgba(246, 118, 15, 0.8));
}

.mobi-tagline {
  font-size: 0.60rem;
  font-weight: 800;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-top: 0.35rem;
  line-height: 1;
}

.footer-logo-link {
  margin-bottom: 1.25rem;
}

.mobi-menu-list {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.mobi-menu-item {
  position: relative;
}

.mobi-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

.mobi-nav-link:hover {
  color: var(--mobi-orange);
}

.dropdown-chevron {
  transition: transform 0.2s ease;
}

.mobi-menu-item.has-dropdown:hover .dropdown-chevron {
  transform: rotate(180deg);
}

/* Mega Menu Panel (Mobikasa White Panel Style) */
.mobi-mega-dropdown {
  position: absolute;
  top: 100%;
  left: -120px;
  width: 780px;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 2.5rem 2.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s var(--ease-snappy);
  pointer-events: none;
}

.mobi-menu-item.has-dropdown:hover .mobi-mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

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

.mega-heading {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--mobi-orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mega-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mega-col ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-dark);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mega-col ul li a:hover {
  color: var(--mobi-orange);
}

.mobi-right-cluster {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.mobi-phone-link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #FFFFFF;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobi-phone-link:hover {
  color: var(--mobi-orange);
}

.mobi-hamburger-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

/* ==========================================================================
   MOBIKASA HERO SECTION
   ========================================================================== */
/* ==========================================================================
   MOBIKASA HERO SECTION (SLIM & ULTRA-COMPACT HEIGHT)
   ========================================================================== */
.mobi-hero-section {
  background-color: var(--mobi-gray-surface);
}

.mobi-hero-white-canvas {
  background-color: #FFFFFF;
  padding: 1.5rem 0 1.35rem;
  border-bottom-left-radius: 36px;
  border-bottom-right-radius: 36px;
}

.mobi-hero-headline {
  font-size: clamp(1.85rem, 3.8vw, 2.9rem);
  font-weight: 700;
  color: var(--mobi-orange);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 0.95rem;
}

/* Mobikasa Signature Curved Orange Banner (Slim & Compact Height) */
.mobi-hero-curved-banner {
  background: var(--mobi-orange);
  border-radius: 24px;
  overflow: visible;
  position: relative;
  box-shadow: 0 14px 35px rgba(246, 118, 15, 0.22);
  width: 100%;
}

.banner-content-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  padding: 1.15rem 2.25rem;
  position: relative;
  z-index: 2;
  gap: 1.25rem;
  min-height: 220px;
  overflow: visible;
}

.banner-lead-paragraph {
  font-size: clamp(0.9rem, 1.25vw, 1rem);
  color: #FFFFFF;
  line-height: 1.55;
  font-weight: 500;
  margin-bottom: 0.95rem;
  max-width: 560px;
}

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

.banner-button-cluster {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.banner-whatsapp-tag {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.wa-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  transition: all 0.25s ease;
}

.wa-tag-pill svg {
  color: #FFFFFF;
  transition: transform 0.2s ease;
}

.banner-whatsapp-tag:hover .wa-tag-pill {
  background: rgba(0, 0, 0, 0.45);
  border-color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.banner-whatsapp-tag:hover .wa-tag-pill svg {
  transform: scale(1.15);
}

/* ==========================================================================
   AUTHENTIC 3D ORANGE ROBOT HERO COMPANION (CINEMATIC ANIMATION ENGINE)
   ========================================================================== */
.banner-visual-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 220px;
  width: 100%;
  overflow: visible;
  z-index: 5;
}

.mobi-3d-robot-stage {
  position: relative;
  width: 100%;
  max-width: 380px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  perspective: 1100px;
  cursor: pointer;
  user-select: none;
  overflow: visible;
}

/* 1. Floating Interactive Speech Bubble with Animated Soundwave */
.robot-speech-card {
  position: absolute;
  top: 1.25rem;
  right: calc(15% + 15px);
  left: auto;
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(14px);
  border: 1.5px solid #FFD600;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45), 0 0 18px rgba(255, 214, 0, 0.3);
  padding: 0.45rem 0.95rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  z-index: 25;
  pointer-events: none;
  animation: speech-float 3.5s ease-in-out infinite alternate;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.robot-speech-card::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 28px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid #FFD600;
}

/* Animated Soundwave Equalizer */
.speech-soundwave {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  height: 14px;
}

.sw-bar {
  display: block;
  width: 2.5px;
  background: #FFD600;
  border-radius: 2px;
  animation: soundwave-bounce 1.2s ease-in-out infinite alternate;
}

.sw-bar:nth-child(1) { height: 6px; animation-delay: 0.1s; }
.sw-bar:nth-child(2) { height: 12px; animation-delay: 0.3s; }
.sw-bar:nth-child(3) { height: 8px; animation-delay: 0.15s; }
.sw-bar:nth-child(4) { height: 14px; animation-delay: 0.45s; }

@keyframes soundwave-bounce {
  0% { transform: scaleY(0.4); opacity: 0.7; }
  100% { transform: scaleY(1.3); opacity: 1; filter: drop-shadow(0 0 4px #FFD600); }
}

.speech-text, .speech-dialog-text {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: #FFFFFF;
  white-space: nowrap;
}

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

/* 2. Ambient Backlight Aura & Dynamic Energy Pulses */
.robot-backlight-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 214, 0, 0.48) 0%, rgba(246, 118, 15, 0.28) 50%, transparent 75%);
  filter: blur(36px);
  pointer-events: none;
  z-index: 1;
  animation: aura-pulse 4.5s ease-in-out infinite alternate;
}

@keyframes aura-pulse {
  0% { transform: translate(-50%, -50%) scale(0.92); opacity: 0.75; }
  100% { transform: translate(-50%, -50%) scale(1.12); opacity: 1; }
}

.robot-cyan-flare {
  position: absolute;
  top: 26%;
  right: 10%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.38) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 1;
  animation: flare-drift 5s ease-in-out infinite alternate;
}

@keyframes flare-drift {
  0% { transform: translate(0, 0) scale(0.9); }
  100% { transform: translate(-10px, 8px) scale(1.15); }
}

/* 3. Floating Hovering Rig & 3D Tilt Character Frame (Full Height Tile Presence) */
.robot-float-rig {
  position: relative;
  z-index: 5;
  width: fit-content;
  max-width: 420px;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 0 auto;
  animation: robot-lifelike-float 4.2s ease-in-out infinite alternate;
}

@keyframes robot-lifelike-float {
  0% {
    transform: translateY(0px) rotate(0deg) scale(1, 1);
  }
  35% {
    transform: translateY(-6px) rotate(0.6deg) scale(1.015, 0.985);
  }
  70% {
    transform: translateY(-12px) rotate(1.2deg) scale(0.99, 1.01);
  }
  100% {
    transform: translateY(-16px) rotate(1.6deg) scale(1.02, 0.98);
  }
}

.robot-character-frame {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transform-style: preserve-3d;
  transition: transform 0.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.robot-character-pic {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
}

.robot-eyelids-pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  z-index: 12;
}

.hero-robot-img,
.hero-robot-eyelids {
  width: auto;
  max-width: 100%;
  height: 100%;
  min-height: 220px;
  max-height: 330px;
  object-fit: contain;
  object-position: bottom center;
  user-select: none;
  display: block;
  transform: none;
}

.hero-robot-img {
  filter: drop-shadow(0 20px 32px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 24px rgba(0, 210, 255, 0.25));
  transition: filter 0.3s ease;
}

.mobi-3d-robot-stage:hover .hero-robot-img {
  filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.65)) drop-shadow(0 0 36px rgba(0, 210, 255, 0.45));
}

/* 4. Antenna Energy Pulsar (Calibrated to Antenna Tip: 74.3% X, 3.4% Y) */
.robot-antenna-pulsar {
  position: absolute;
  top: 3.4%;
  left: 74.3%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  pointer-events: none;
  z-index: 10;
}

.pulsar-core {
  width: 8px;
  height: 8px;
  background: radial-gradient(circle at 35% 35%, #FFFFFF 0%, #00D2FF 50%, #0088FF 100%);
  border-radius: 50%;
  box-shadow: 0 0 10px #00D2FF, 0 0 18px #0088FF;
  margin: 6px auto;
  animation: pulsar-glow 1.8s ease-in-out infinite alternate;
}

.pulsar-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: 1.5px solid #00D2FF;
  border-radius: 50%;
  animation: pulsar-ring-radiate 2.4s cubic-bezier(0.1, 0.8, 0.3, 1) infinite;
}

@keyframes pulsar-glow {
  0% { transform: scale(0.85); box-shadow: 0 0 8px #00D2FF; }
  100% { transform: scale(1.25); box-shadow: 0 0 16px #00D2FF, 0 0 25px #0088FF; }
}

@keyframes pulsar-ring-radiate {
  0% { transform: translate(-50%, -50%) scale(0.4); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2.4); opacity: 0; }
}

/* 5. Natural 3D Photorealistic Eyelids Overlay (Matches Character Goggle Scale) */
.hero-robot-eyelids {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.05s ease-in-out;
}

.hero-robot-eyelids.is-blinking {
  opacity: 1;
}

/* 6. Chest ND Reactor Shimmer (Calibrated to ND Plate: 41.7% X, 64.7% Y) */
.robot-chest-reactor {
  position: absolute;
  top: 64.7%;
  left: 41.7%;
  transform: translate(-50%, -50%);
  width: 14%;
  height: 7%;
  border-radius: 4px;
  overflow: hidden;
  pointer-events: none;
  z-index: 10;
}

.reactor-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(105deg, transparent 35%, rgba(0, 210, 255, 0.4) 48%, rgba(255, 255, 255, 0.7) 50%, transparent 60%);
  animation: reactor-shimmer-sweep 3.8s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes reactor-shimmer-sweep {
  0% { transform: translateX(0); }
  30%, 100% { transform: translateX(120%); }
}

/* 7. Standing Grounded Shadow */
.robot-thruster-ring {
  display: none; /* Mascot stands on feet */
}

.robot-ground-shadow {
  width: 210px;
  height: 18px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.18) 55%, transparent 75%);
  border-radius: 50%;
  margin-top: -6px;
  animation: shadow-lifelike-scale 4.2s ease-in-out infinite alternate;
  z-index: 2;
}

.robot-ground-ripple {
  display: none; /* Mascot stands on feet */
}

@keyframes shadow-lifelike-scale {
  0% { transform: scale(1); opacity: 0.65; }
  50% { transform: scale(0.85); opacity: 0.45; }
  100% { transform: scale(0.72); opacity: 0.25; filter: blur(2px); }
}

@keyframes ground-ripple-pulse {
  0% { transform: translateX(-50%) scale(0.5); opacity: 0.8; }
  100% { transform: translateX(-50%) scale(1.6); opacity: 0; }
}

/* 9. Canvas Particle System for Energy Sparks */
.robot-particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 15;
}



/* ==========================================================================
   MOBIKASA IMPACT STATS & METRICS BAR
   ========================================================================== */
.mobi-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 3rem 0 1.5rem;
}

.stat-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid #E2E8F0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(246, 118, 15, 0.12);
  border-color: rgba(246, 118, 15, 0.3);
}

.stat-num {
  font-size: clamp(2.2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--mobi-orange);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
}

.stat-plus {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0F172A;
  margin-left: 0.2rem;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.stat-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Marquee Strip */
.mobi-marquee-strip {
  background: var(--mobi-gray-surface);
  padding: 1.75rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  animation: marquee-scroll 24s linear infinite;
}

.marquee-item {
  font-size: 1.05rem;
  font-weight: 700;
  color: #334155;
}

.marquee-dot {
  color: var(--mobi-orange);
  font-size: 0.8rem;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   MOBIKASA "WE OFFER" DIGITAL SOLUTIONS (DARK SECTION)
   ========================================================================== */
.mobi-solutions-section {
  background-color: var(--mobi-dark-card);
  padding: 5.5rem 0 6rem;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  color: #FFFFFF;
}

.solutions-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.solutions-heading {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--mobi-orange);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.solutions-sub-col {
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.solutions-subtext {
  font-size: 1.1rem;
  color: var(--text-white-muted);
  line-height: 1.5;
}

/* Bento Grid */
.mobi-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.bento-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--text-dark);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.bento-card-large {
  grid-column: span 2;
}

.card-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--mobi-orange);
  letter-spacing: 0.08em;
  margin-bottom: 0.65rem;
}

.bento-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--mobi-orange);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.bento-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.bento-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}

.bento-features li {
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.bento-features li::before {
  content: '✓';
  color: var(--mobi-orange);
  font-weight: 800;
}

.bento-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--mobi-orange);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.bento-card-link:hover {
  gap: 0.75rem;
}

/* Mobikasa Technology Ecosystem Matrix */
.mobi-tech-stack-wrap {
  margin-top: 4.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-stack-top-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.tech-stack-title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-top: 0.35rem;
}

.tech-stack-desc {
  font-size: 0.95rem;
  color: var(--text-white-muted);
  max-width: 480px;
  line-height: 1.6;
}

.tech-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.tech-badge-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.25rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.25s ease;
}

.tech-badge-item:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--mobi-orange);
  transform: translateY(-3px);
}

.tech-badge-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.tech-badge-item strong {
  display: block;
  font-size: 0.92rem;
  color: #FFFFFF;
  margin-bottom: 0.2rem;
}

.tech-badge-item p {
  font-size: 0.78rem;
  color: var(--text-white-muted);
  line-height: 1.4;
}

/* ==========================================================================
   AI BRAND SCANNER SECTION
   ========================================================================== */
.mobi-scanner-section {
  background-color: var(--mobi-gray-surface);
  padding: 5.5rem 0;
}

.scanner-card-shell {
  background: #FFFFFF;
  border-radius: 28px;
  padding: 3rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.scanner-heading {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  margin: 0.4rem 0 0.5rem;
}

.scanner-subtext {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.scanner-workspace-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 2.5rem;
}

.mobi-form-group {
  margin-bottom: 1.25rem;
}

.mobi-form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.mobi-input, .mobi-select, .mobi-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #F8F9FA;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s ease;
}

.mobi-input:focus, .mobi-select:focus, .mobi-textarea:focus {
  border-color: var(--mobi-orange);
  background: #FFFFFF;
}

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

.scanner-results-pane {
  background: #F8F9FA;
  border-radius: 18px;
  padding: 1.75rem;
  border: 1px solid #E2E8F0;
}

.results-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--mobi-orange);
  margin-bottom: 1.25rem;
}

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

.scan-candidate-card {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 1.15rem;
  border: 1px solid #E2E8F0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.scan-candidate-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--text-dark);
}

.scan-candidate-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: #10B981;
  margin: 0.25rem 0 0.5rem;
}

.scan-candidate-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

/* ==========================================================================
   FEATURED WORK / CASE STUDIES
   ========================================================================== */
.mobi-work-section {
  background-color: #FFFFFF;
  padding: 5.5rem 0 6rem;
}

.section-title-bar {
  margin-bottom: 3.5rem;
}

.section-title-text {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  margin: 0.4rem 0 0.4rem;
}

.section-title-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.work-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 2rem;
}

.work-showcase-card {
  background: #F8F9FA;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.work-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.card-browser-top {
  background: #E2E8F0;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.dot.red { background: #EF4444; }
.dot.yellow { background: #F59E0B; }
.dot.green { background: #10B981; }

.browser-url {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #475569;
  margin-left: 0.5rem;
  flex-grow: 1;
}

.live-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--mobi-orange);
  text-decoration: none;
}

.card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.card-category {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--mobi-orange);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.card-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.card-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.card-stat-strip {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.card-stat-strip span {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: 50px;
  color: #1E293B;
}

/* ==========================================================================
   MOBIKASA 4-STEP AGILE DELIVERY FRAMEWORK ("OUR PROCESS")
   ========================================================================== */
.mobi-process-section {
  background-color: #FFFFFF;
  padding: 5.5rem 0 6.5rem;
  border-top: 1px solid #E2E8F0;
}

.process-header-bar {
  margin-bottom: 3.5rem;
  max-width: 720px;
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.process-step-card {
  background: #F8F9FA;
  border: 1.5px solid #E2E8F0;
  border-radius: 22px;
  padding: 2.25rem 1.65rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s ease;
}

.process-step-card:hover {
  transform: translateY(-5px);
  border-color: var(--mobi-orange);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.step-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--mobi-orange);
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.step-num-glow {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(246, 118, 15, 0.08);
  line-height: 1;
  pointer-events: none;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.step-footer-tag {
  font-size: 0.78rem;
  font-weight: 700;
  color: #0F172A;
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  width: fit-content;
}

/* ==========================================================================
   PRICING ESTIMATOR SECTION
   ========================================================================== */
.mobi-pricing-section {
  background-color: var(--mobi-gray-surface);
  padding: 5.5rem 0;
}

.calculator-card-shell {
  background: #FFFFFF;
  border-radius: 28px;
  padding: 3rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.calc-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
}

.calc-field-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.85rem;
}

.calc-button-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.calc-opt-btn {
  background: #F8F9FA;
  border: 1.5px solid #E2E8F0;
  border-radius: 14px;
  padding: 0.85rem;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.2s ease;
}

.calc-opt-btn:hover {
  border-color: var(--mobi-orange);
}

.calc-opt-btn.active {
  background: rgba(246, 118, 15, 0.1);
  border-color: var(--mobi-orange);
  color: var(--mobi-orange);
}

.scale-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.scale-btn {
  background: #F8F9FA;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  padding: 0.65rem;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.scale-btn.active {
  background: var(--mobi-orange);
  color: #FFFFFF;
  border-color: var(--mobi-orange);
}

.calc-right {
  background: #F8F9FA;
  border-radius: 20px;
  padding: 2.25rem;
  border: 1px solid #E2E8F0;
}

.calc-currency-toggle {
  display: flex;
  justify-content: flex-end;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}

.curr-pill {
  background: #E2E8F0;
  border: none;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  cursor: pointer;
}

.curr-pill.active {
  background: var(--mobi-orange);
  color: #FFFFFF;
}

.price-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.price-val {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--mobi-orange);
  line-height: 1.1;
  margin: 0.2rem 0;
}

.timeline-val {
  font-size: 0.88rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 1.25rem;
}

.pkg-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.85rem;
}

.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.pkg-features li {
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.pkg-features li::before {
  content: '✓';
  color: var(--mobi-orange);
  font-weight: 800;
}

/* ==========================================================================
   MOBIKASA VERIFIED CLIENT TESTIMONIALS
   ========================================================================== */
.mobi-testimonials-section {
  background-color: var(--mobi-gray-surface);
  padding: 5.5rem 0 6rem;
  border-top: 1px solid #E2E8F0;
}

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

.testimonial-card {
  background: #FFFFFF;
  border-radius: 22px;
  padding: 2.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid #E2E8F0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(246, 118, 15, 0.35);
}

.star-rating {
  color: #FFD600;
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}

.testimonial-quote {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid #F1F1F1;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--mobi-orange);
  color: #FFFFFF;
  font-weight: 900;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text-dark);
}

.testimonial-author p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.mobi-faq-section {
  background-color: #FFFFFF;
  padding: 5.5rem 0;
}

.faq-search-box-wrap {
  max-width: 620px;
  margin-bottom: 2.5rem;
}

.faq-accordion-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobi-faq-card {
  background: #F8F9FA;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  overflow: hidden;
}

.mobi-faq-card.faq-hidden { display: none !important; }

.faq-trigger-btn {
  width: 100%;
  padding: 1.35rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
}

.faq-arrow {
  font-size: 1.3rem;
  color: var(--mobi-orange);
  transition: transform 0.2s ease;
}

.mobi-faq-card.active .faq-arrow {
  transform: rotate(45deg);
}

.faq-body-content {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.65;
  display: none;
}

.mobi-faq-card.active .faq-body-content {
  display: block;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.mobi-contact-section {
  background-color: var(--mobi-dark-card);
  padding: 5.5rem 0 6.5rem;
  color: #FFFFFF;
}

.contact-card-shell {
  background: #141414;
  border-radius: 32px;
  padding: 3.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin: 0.5rem 0 0.85rem;
  line-height: 1.2;
}

.contact-desc {
  font-size: 1.05rem;
  color: var(--text-white-muted);
  line-height: 1.6;
  margin-bottom: 2.25rem;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-channel-item {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.1rem 1.35rem;
  text-decoration: none;
  color: #FFFFFF;
  transition: all 0.25s ease;
}

.contact-channel-item:hover {
  border-color: var(--mobi-orange);
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(4px);
}

.channel-theme-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.channel-theme-icon.wa-bg {
  background: linear-gradient(135deg, #F6760F 0%, #EF6D04 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(246, 118, 15, 0.35);
}

.contact-channel-item:hover .channel-theme-icon.wa-bg {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(246, 118, 15, 0.5);
}

.contact-channel-item:hover {
  border-color: var(--mobi-orange);
}

.channel-icon {
  font-size: 1.4rem;
}

.contact-channel-item strong {
  display: block;
  font-size: 0.95rem;
}

.contact-channel-item p {
  font-size: 0.82rem;
  color: var(--text-white-muted);
}

.form-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.mobi-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.mobi-form .mobi-input, .mobi-form .mobi-select, .mobi-form .mobi-textarea {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
}

.mobi-form .mobi-input:focus, .mobi-form .mobi-select:focus, .mobi-form .mobi-textarea:focus {
  border-color: var(--mobi-orange);
  background: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   FOOTER (BLACK)
   ========================================================================== */
.mobi-footer {
  background-color: var(--mobi-black);
  padding: 5rem 0 2.5rem;
  color: #94A3B8;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.65;
  margin-top: 1rem;
  max-width: 340px;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col ul li a {
  color: #94A3B8;
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--mobi-orange);
}

/* Mobikasa Global Offices Strip */
.mobi-offices-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1rem;
}

.office-hub-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 0.85rem 1rem;
}

.office-flag {
  font-size: 1.5rem;
}

.office-hub-item strong {
  display: block;
  font-size: 0.88rem;
  color: #FFFFFF;
}

.office-hub-item p {
  font-size: 0.75rem;
  color: #94A3B8;
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Floating WhatsApp Action (Mobikasa Themed Floating Pill) */
.mobi-floating-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #000000;
  border: 2px solid var(--mobi-orange);
  border-radius: 50px;
  padding: 0.45rem 1.15rem 0.45rem 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  box-shadow: 
    0 12px 35px rgba(0, 0, 0, 0.6),
    0 0 22px rgba(246, 118, 15, 0.4);
  z-index: 9999;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.mobi-floating-wa:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: #FFFFFF;
  box-shadow: 
    0 16px 40px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(246, 118, 15, 0.6);
}

.wa-theme-icon-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mobi-orange);
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}

.wa-theme-icon-badge svg {
  color: var(--mobi-orange);
  fill: var(--mobi-orange);
  transition: transform 0.2s ease;
}

.wa-live-dot {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FFD600;
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 8px #FFD600;
  animation: wa-pulse-dot 1.8s infinite alternate;
}

@keyframes wa-pulse-dot {
  0% { transform: scale(0.9); opacity: 0.85; }
  100% { transform: scale(1.15); opacity: 1; box-shadow: 0 0 12px #FFD600; }
}

.wa-floating-text {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
  white-space: nowrap;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.mobi-floating-wa:hover .wa-floating-text {
  color: var(--mobi-orange);
}

/* Mobile Slider Drawer Base */
.mobi-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  z-index: 10000;
  display: none;
}
.mobi-drawer-backdrop.open { display: block; }

.mobi-slider-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 425px;
  height: 100vh;
  background: #FFFFFF;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  z-index: 10001;
  padding: 2.5rem 2rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  transition: right 0.3s var(--ease-snappy);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
}
.mobi-slider-drawer.open { right: 0; }

.drawer-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-close-btn {
  background: #F1F1F1;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.drawer-close-btn:hover {
  background: #E2E8F0;
  transform: scale(1.05);
}

.drawer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0;
}

.drawer-nav-list li a {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.drawer-nav-list li a:hover {
  color: var(--mobi-orange);
}

.drawer-phone-contact {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #475569;
}
.drawer-phone-contact a {
  color: var(--mobi-orange);
  font-weight: 700;
  text-decoration: none;
}

/* Mobile Bottom Jump Dock (Hidden by default on Desktop & Laptops) */
.mobi-bottom-dock {
  display: none;
}

/* ==========================================================================
   MOBILE & RESPONSIVE DESIGN SUITE (ALL BREAKPOINTS)
   ========================================================================== */

/* 1. TABLETS & COMPACT LAPTOPS (<= 1024px) */
@media (max-width: 1024px) {
  .mobi-menu-list, .mobi-phone-link { display: none; }
  .mobi-hamburger-btn { display: flex; }
  .scanner-workspace-grid, .calc-split, .contact-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .mobi-bento-grid { grid-template-columns: 1fr; }
  .bento-card-large { grid-column: span 1; }
  .mobi-stats-bar { grid-template-columns: repeat(2, 1fr); }
  .tech-badges-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .mobi-offices-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* 2. TABLETS & LARGE SMARTPHONES (<= 768px) */
@media (max-width: 768px) {
  /* Header */
  .mobi-nav {
    height: 72px;
  }
  .mobi-logo-text {
    font-size: 1.55rem;
  }
  .mobi-logo-text .lens-o-svg {
    width: 20px;
    height: 20px;
  }
  .mobi-tagline {
    font-size: 0.54rem;
    letter-spacing: 0.20em;
  }
  .mobi-hamburger-btn {
    display: none !important;
  }

  /* Hero Section */
  .mobi-hero-white-canvas {
    padding: 1.25rem 0 1rem;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
  }
  .mobi-hero-headline {
    font-size: clamp(1.85rem, 5.5vw, 2.35rem);
    line-height: 1.18;
    margin-bottom: 0.85rem;
  }
  .mobi-hero-curved-banner {
    border-radius: 20px;
  }
  .banner-content-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 145px !important;
    align-items: end !important;
    padding: 1.25rem 1rem 0.75rem 1.15rem !important;
    gap: 0.75rem !important;
    position: relative !important;
    overflow: visible !important;
    min-height: auto !important;
  }
  .banner-text-col {
    min-width: 0 !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    text-align: left !important;
    z-index: 5 !important;
    padding-bottom: 0.5rem !important;
  }
  .banner-lead-paragraph {
    display: block !important;
    font-size: clamp(0.78rem, 2.6vw, 0.92rem) !important;
    line-height: 1.45 !important;
    margin-bottom: 0.75rem !important;
    text-align: left !important;
    color: #FFFFFF !important;
  }
  .desc-desktop {
    display: none !important;
  }
  .desc-mobile {
    display: inline !important;
  }
  .banner-button-cluster {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.5rem !important;
    width: 100% !important;
  }
  .banner-button-cluster .banner-whatsapp-tag {
    display: none !important;
  }
  .banner-button-cluster .mobi-btn-white {
    width: fit-content !important;
    max-width: 100% !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    padding: 0.35rem 0.75rem !important;
    gap: 0.35rem !important;
    min-height: auto !important;
    border-radius: 50px !important;
    box-sizing: border-box !important;
    justify-content: flex-start !important;
    text-align: left !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12) !important;
  }
  .banner-button-cluster .mobi-btn-white svg {
    width: 13px !important;
    height: 7px !important;
  }
  .banner-visual-col {
    width: 145px !important;
    min-width: 145px !important;
    flex-shrink: 0 !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: flex-end !important;
    min-height: auto !important;
  }
  .mobi-3d-robot-stage {
    min-height: 175px !important;
    max-width: 145px !important;
    width: 145px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    justify-content: flex-end !important;
    margin: 0 0 1.25rem auto !important;
    transform: translateY(calc(-0.08in + 0.5cm)) !important;
  }
  .robot-character-frame {
    justify-content: flex-end !important;
    align-items: flex-end !important;
  }
  .robot-character-pic,
  .robot-eyelids-pic {
    justify-content: flex-end !important;
    align-items: flex-end !important;
  }
  .hero-robot-img, .hero-robot-eyelids {
    max-height: 200px !important;
    min-height: 150px !important;
    object-position: bottom right !important;
  }
  .robot-ground-shadow {
    width: 140px !important;
    height: 14px !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    margin-top: -4px !important;
  }
  .banner-text-col .robot-speech-card,
  .robot-speech-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    margin: -0.1in 0 calc(0.85rem + 0.1in) 0 !important;
    width: fit-content !important;
    max-width: 100% !important;
    height: 34px !important;
    min-height: 34px !important;
    max-height: 34px !important;
    padding: 0 0.8rem !important;
    box-sizing: border-box !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    gap: 0.45rem !important;
    border-radius: 50px !important;
    animation: speech-float-mobile 3s ease-in-out infinite alternate !important;
    z-index: 10 !important;
    contain: layout style;
  }
  .banner-text-col .robot-speech-card::after,
  .robot-speech-card::after {
    display: none !important;
  }
  .speech-soundwave {
    flex-shrink: 0 !important;
  }
  .speech-text,
  .speech-dialog-text,
  #robot-dialog-msg {
    font-size: clamp(0.66rem, 2.6vw, 0.74rem) !important;
    line-height: 34px !important;
    height: 34px !important;
    text-align: left !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: inline-flex !important;
    align-items: center !important;
  }

  @keyframes speech-float-mobile {
    0% { transform: translateY(0); }
    100% { transform: translateY(-5px); }
  }

  /* OPTION B: STICKY BOTTOM JUMP DOCK */
  .mobi-bottom-dock {
    position: fixed !important;
    bottom: max(0.65rem, env(safe-area-inset-bottom, 0.65rem)) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 9990 !important;
    background: rgba(15, 23, 42, 0.92) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55), 0 0 20px rgba(246, 118, 15, 0.2) !important;
    border-radius: 50px !important;
    padding: 0.32rem 0.5rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.2rem !important;
    max-width: calc(100vw - 1.25rem) !important;
    width: max-content !important;
    user-select: none !important;
  }

  .dock-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2px !important;
    padding: 0.35rem 0.6rem !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    color: #94A3B8 !important;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1) !important;
    min-width: 52px !important;
  }

  .dock-item svg {
    width: 17px !important;
    height: 17px !important;
    stroke: #94A3B8 !important;
    transition: transform 0.2s ease, stroke 0.2s ease !important;
  }

  .dock-label {
    font-size: 0.64rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em !important;
    line-height: 1 !important;
  }

  .dock-item:active {
    transform: scale(0.92) !important;
  }

  .dock-item.active {
    background: linear-gradient(135deg, #F6760F 0%, #EF6D04 100%) !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 14px rgba(246, 118, 15, 0.45) !important;
  }

  .dock-item.active svg {
    transform: scale(1.1) !important;
    stroke: #FFFFFF !important;
  }

  .dock-item.active .dock-label {
    color: #FFFFFF !important;
    font-weight: 800 !important;
  }

  .dock-item-highlight:not(.active) {
    color: #FFD600 !important;
  }
  .dock-item-highlight:not(.active) svg {
    stroke: #FFD600 !important;
  }

  /* Floating WhatsApp on tablets & large phones - Elevated above dock */
  .mobi-floating-wa {
    position: fixed !important;
    bottom: calc(4.8rem + env(safe-area-inset-bottom, 0.5rem)) !important;
    right: max(1rem, env(safe-area-inset-right, 1rem)) !important;
    max-width: calc(100vw - 2.5rem) !important;
    z-index: 9999 !important;
  }

  /* Section Spacing & Headings */
  .mobi-solutions-section,
  .mobi-scanner-section,
  .mobi-work-section,
  .mobi-process-section,
  .mobi-pricing-section,
  .mobi-testimonials-section,
  .mobi-faq-section,
  .mobi-contact-section {
    padding: 3.5rem 0;
  }
  .solutions-heading,
  .section-heading,
  .scanner-heading,
  .process-title,
  .faq-heading,
  .contact-heading {
    font-size: clamp(1.75rem, 4.5vw, 2.3rem);
    line-height: 1.2;
  }
  .solutions-header-grid {
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  .solutions-subtext {
    font-size: 0.95rem;
  }

  /* Stats Bar */
  .mobi-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 2rem 0 1rem;
  }
  .stat-card {
    padding: 1.35rem 1.15rem;
    border-radius: 16px;
  }
  .stat-num {
    font-size: 2.2rem;
  }
  .stat-label {
    font-size: 0.88rem;
  }

  /* Bento & Cards */
  .bento-card {
    padding: 1.6rem 1.35rem;
    border-radius: 16px;
  }
  .card-body {
    padding: 1.5rem 1.25rem;
  }
  .scanner-card-shell,
  .calculator-card-shell,
  .contact-card-shell {
    padding: 1.75rem 1.25rem;
    border-radius: 20px;
  }
  .scanner-workspace-grid,
  .calc-split,
  .contact-split {
    gap: 1.75rem;
  }

  /* Form Elements - 16px font prevents iOS Safari auto-zoom */
  .mobi-input,
  .mobi-select,
  .mobi-textarea {
    font-size: 16px !important;
    padding: 0.8rem 1rem;
    min-height: 48px;
    border-radius: 12px;
  }
  .mobi-form-row {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .results-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  /* Pricing Calculator */
  .calc-button-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
  }
  .scale-options {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
  .scale-btn {
    padding: 0.6rem 0.35rem;
    font-size: 0.78rem;
  }
  .calc-right {
    padding: 1.5rem 1.25rem;
    border-radius: 16px;
  }
  .price-val {
    font-size: 2.35rem;
  }

  /* Process & Offices & Footer */
  .process-steps-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .process-step-card {
    padding: 1.5rem 1.25rem;
    border-radius: 16px;
  }
  .mobi-offices-strip {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    padding: 2rem 0;
  }
  .office-hub-item {
    padding: 0.75rem 0.85rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .mobi-footer {
    padding: 3.5rem 0 2rem;
  }
}

/* 3. STANDARD SMARTPHONES (<= 640px) */
@media (max-width: 640px) {
  /* Container Padding */
  .mobi-container {
    padding: 0 1.15rem;
  }

  /* Header */
  .mobi-nav {
    height: 66px;
  }
  .mobi-right-cluster {
    display: flex;
    align-items: center;
    gap: 0.65rem;
  }
  .mobi-right-cluster .mobi-btn-primary {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    padding: 0 !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #F6760F 0%, #EF6D04 100%) !important;
    box-shadow: 0 4px 14px rgba(246, 118, 15, 0.45) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  }
  .mobi-right-cluster .mobi-btn-primary:active {
    transform: scale(0.92) !important;
  }
  .mobi-right-cluster .mobi-btn-primary .cta-text-desktop,
  .mobi-right-cluster .mobi-btn-primary .mobi-btn-icon {
    display: none !important;
  }
  .mobi-right-cluster .mobi-btn-primary .cta-icon-mobile {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .mobi-hamburger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: background 0.2s ease, border-color 0.2s ease;
  }
  .mobi-hamburger-btn:active {
    background: rgba(246, 118, 15, 0.2);
    border-color: var(--mobi-orange);
  }

  /* Mobile Slider Drawer Full-Width & Safe-Areas */
  .mobi-slider-drawer {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    padding: 1.75rem 1.35rem;
    padding-top: max(1.75rem, env(safe-area-inset-top, 1.75rem));
    padding-bottom: max(1.75rem, env(safe-area-inset-bottom, 1.75rem));
  }
  .drawer-nav-list {
    margin: 1.5rem 0;
    gap: 0.65rem;
  }
  .drawer-nav-list li a {
    font-size: 1.18rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Hero Banner Action Cluster */
  .banner-button-cluster {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0.5rem;
  }
  .banner-button-cluster .banner-whatsapp-tag {
    display: none !important;
  }
  .banner-button-cluster .mobi-btn-white {
    width: fit-content;
    max-width: 100%;
    font-size: 0.72rem;
    padding: 0.35rem 0.75rem;
    gap: 0.35rem;
    min-height: auto;
    box-sizing: border-box;
  }
  .banner-button-cluster .mobi-btn-white svg {
    width: 13px;
    height: 7px;
  }

  /* Floating WhatsApp Button - Sleek Circular FAB on Mobile (Elevated above Bottom Dock) */
  .mobi-floating-wa {
    position: fixed !important;
    bottom: calc(4.8rem + env(safe-area-inset-bottom, 0.5rem)) !important;
    right: max(1rem, env(safe-area-inset-right, 1rem)) !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    background: #FFFFFF !important;
    border: 2px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25), 0 0 16px rgba(246, 118, 15, 0.25) !important;
    z-index: 9999 !important;
  }
  .mobi-floating-wa .wa-floating-text {
    display: none !important;
  }
  .mobi-floating-wa .wa-theme-icon-badge {
    width: 100% !important;
    height: 100% !important;
    background: #FFFFFF !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--mobi-orange) !important;
  }
  .mobi-floating-wa .wa-theme-icon-badge svg {
    color: var(--mobi-orange) !important;
    fill: var(--mobi-orange) !important;
  }
  .mobi-floating-wa .wa-live-dot {
    border: 2px solid #FFFFFF !important;
  }
}

/* 4. COMPACT PHONES & NARROW VIEWPORTS (<= 480px) */
@media (max-width: 480px) {
  /* Logo & Brand Identity */
  .mobi-logo-text {
    font-size: 1.40rem;
  }
  .mobi-logo-text .lens-o-svg {
    width: 18px;
    height: 18px;
  }
  .mobi-tagline {
    font-size: 0.50rem;
    letter-spacing: 0.18em;
  }

  /* Hero Headline */
  .mobi-hero-headline {
    font-size: 1.75rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }
  .banner-content-grid {
    grid-template-columns: minmax(0, 1fr) 130px !important;
    padding: 1rem 0.75rem 0.5rem 0.85rem !important;
    gap: 0.5rem !important;
  }
  .banner-visual-col {
    width: 130px !important;
    min-width: 130px !important;
    flex-shrink: 0 !important;
  }

  /* Mascot Size on Small Screens */
  .mobi-3d-robot-stage {
    min-height: 160px !important;
    max-width: 130px !important;
    width: 130px !important;
    margin: 0 0 1rem auto !important;
    transform: translateY(calc(-0.08in + 0.5cm)) !important;
  }
  .hero-robot-img, .hero-robot-eyelids {
    max-height: 180px !important;
    min-height: 140px !important;
  }
  .banner-text-col .robot-speech-card,
  .robot-speech-card {
    height: 30px !important;
    min-height: 30px !important;
    max-height: 30px !important;
    margin: -0.1in 0 calc(0.75rem + 0.1in) 0 !important;
    padding: 0 0.65rem !important;
    contain: layout style;
  }
  .speech-text,
  .speech-dialog-text,
  #robot-dialog-msg {
    font-size: 0.64rem !important;
    line-height: 30px !important;
    height: 30px !important;
    white-space: nowrap !important;
  }
  .robot-ground-shadow {
    width: 125px !important;
  }

  /* Stats Bar Compact Layout */
  .mobi-stats-bar {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }
  .stat-card {
    padding: 1rem 0.85rem;
    border-radius: 14px;
  }
  .stat-num {
    font-size: 1.7rem;
    margin-bottom: 0.2rem;
  }
  .stat-plus {
    font-size: 0.95rem;
  }
  .stat-label {
    font-size: 0.8rem;
    margin-bottom: 0.1rem;
  }
  .stat-desc {
    display: none; /* Hide dense description on small phones to prevent vertical bloating */
  }

  /* Card Shells */
  .scanner-card-shell,
  .calculator-card-shell,
  .contact-card-shell {
    padding: 1.35rem 1rem;
    border-radius: 16px;
  }
  .scanner-results-pane {
    padding: 1.15rem 0.85rem;
    border-radius: 14px;
  }

  /* Pricing Calculator Options */
  .calc-button-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .scale-options {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .scale-btn {
    padding: 0.7rem 0.85rem;
    font-size: 0.85rem;
    text-align: left;
  }
  .price-val {
    font-size: 2.1rem;
  }

  /* Tech Badges & Offices Strip */
  .tech-badges-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .mobi-offices-strip {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.85rem;
    text-align: center;
  }
}

/* 5. ULTRA-COMPACT SMARTPHONES (<= 360px - e.g. Galaxy Fold folded, small devices) */
@media (max-width: 360px) {
  .mobi-container {
    padding: 0 0.85rem;
  }
  .mobi-right-cluster .mobi-btn-primary {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
  }
  .mobi-hamburger-btn {
    width: 38px !important;
    height: 38px !important;
  }
  .mobi-logo-text {
    font-size: 1.25rem;
  }
  .mobi-logo-text .lens-o-svg {
    width: 16px;
    height: 16px;
  }
  .mobi-tagline {
    font-size: 0.46rem;
    letter-spacing: 0.16em;
  }
  .mobi-hero-headline {
    font-size: 1.6rem;
  }
  .banner-content-grid {
    grid-template-columns: minmax(0, 1fr) 115px !important;
    padding: 0.85rem 0.65rem 0.4rem 0.75rem !important;
    gap: 0.35rem !important;
  }
  .banner-visual-col {
    width: 115px !important;
    min-width: 115px !important;
    flex-shrink: 0 !important;
  }
  .banner-lead-paragraph {
    font-size: 0.74rem !important;
    line-height: 1.35 !important;
    margin-bottom: 0.5rem !important;
  }
  .banner-button-cluster .banner-whatsapp-tag {
    display: none !important;
  }
  .banner-button-cluster .mobi-btn-white {
    font-size: 0.66rem !important;
    padding: 0.3rem 0.6rem !important;
    gap: 0.3rem !important;
    min-height: auto !important;
  }
  .banner-button-cluster .mobi-btn-white svg {
    width: 11px !important;
    height: 6px !important;
  }
  .mobi-3d-robot-stage {
    min-height: 140px !important;
    max-width: 115px !important;
    width: 115px !important;
    margin: 0 0 0.85rem auto !important;
    transform: translateY(calc(-0.08in + 0.5cm)) !important;
  }
  .hero-robot-img, .hero-robot-eyelids {
    max-height: 155px !important;
    min-height: 120px !important;
  }
  .banner-text-col .robot-speech-card,
  .robot-speech-card {
    height: 28px !important;
    min-height: 28px !important;
    max-height: 28px !important;
    margin: -0.1in 0 calc(0.65rem + 0.1in) 0 !important;
    padding: 0 0.55rem !important;
    contain: layout style;
  }
  .speech-text,
  .speech-dialog-text,
  #robot-dialog-msg {
    font-size: 0.6rem !important;
    line-height: 28px !important;
    height: 28px !important;
    white-space: nowrap !important;
  }
  .robot-ground-shadow {
    width: 105px !important;
  }
  .mobi-bottom-dock {
    padding: 0.25rem 0.35rem !important;
    gap: 0.15rem !important;
  }
  .dock-item {
    min-width: 44px !important;
    padding: 0.3rem 0.4rem !important;
  }
  .dock-label {
    font-size: 0.56rem !important;
  }
  .dock-item svg {
    width: 15px !important;
    height: 15px !important;
  }
}
