/* ══════════════════════════════════════════════════════════════
   Module: App Mobile Full Page (p/app-mobile)
   Design System: Apple Minimalist Responsive Theme (Dark & Light)
   ══════════════════════════════════════════════════════════════ */

.app-mobile-page {
  position: relative;
  background-color: #08080a;
  color: #ffffff;
  padding-bottom: 120px;
  overflow-x: hidden;
  transition: background-color 0.35s ease, color 0.35s ease;
}

/* ── Ambient Background Glows ── */
.app-page-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  z-index: 0;
  opacity: 0.45;
}

.app-page-glow--hero {
  width: 700px;
  height: 700px;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, rgba(59, 130, 246, 0.15) 50%, transparent 70%);
}

.app-page-glow--middle {
  width: 800px;
  height: 800px;
  top: 45%;
  right: -250px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.15) 0%, rgba(59, 130, 246, 0.1) 50%, transparent 70%);
}

.app-page-glow--bottom {
  width: 900px;
  height: 900px;
  bottom: 0;
  left: -250px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, transparent 70%);
}

/* ── HERO SECTION ── */
.app-hero {
  padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 5vw, 60px);
  position: relative;
  z-index: 1;
}

.apple-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #e2e8f0;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.apple-hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a855f7;
  box-shadow: 0 0 12px #a855f7;
  animation: heroDotPulse 2s infinite ease-in-out;
}

@keyframes heroDotPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.4); opacity: 0.4; }
}

.app-hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: #ffffff;
  margin-bottom: 20px;
}

.app-hero-subtitle {
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  max-width: 780px;
  margin: 0 auto 36px;
  font-weight: 400;
}

.app-hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn-apple-page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  text-decoration: none;
}

.btn-apple-page i {
  font-size: 20px;
}

.btn-apple-page--primary {
  background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

.btn-apple-page--primary:hover {
  background: linear-gradient(135deg, #6d28d9 0%, #7e22ce 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.55);
}

.btn-apple-page--android {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 25px rgba(22, 163, 74, 0.4);
}

.btn-apple-page--android:hover {
  background: linear-gradient(135deg, #15803d 0%, #166534 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(22, 163, 74, 0.55);
}

.btn-apple-page--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.btn-apple-page--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.app-hero-platforms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 50px;
}

.platform-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.platform-tag i {
  font-size: 16px;
  color: #38bdf8;
}

.platform-separator {
  color: rgba(255, 255, 255, 0.25);
}

/* ── Hero Dual Devices Showcase ── */
.hero-devices-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  max-width: 880px;
  margin: 0 auto;
}

.hero-device-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.device-label {
  margin-bottom: 16px;
  text-align: center;
}

.device-label h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 8px 0 0;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pill-badge--purple {
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.35);
  color: #d8b4fe;
}

.pill-badge--android {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #4ade80;
}

.pill-badge i {
  font-size: 14px;
}

/* ── Phone Frames & 3D Single Device Showcase ── */
.device-3d-hero-frame {
  position: relative;
  width: 100%;
  max-width: 340px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.device-3d-hero-frame:hover {
  transform: translateY(-8px) scale(1.02);
}

.img-hero-3d {
  width: 100%;
  height: auto;
  max-height: 580px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.65));
}

.device-3d-single-frame {
  position: relative;
  width: 100%;
  max-width: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pos-3d-active-img {
  width: 100%;
  height: auto;
  max-height: 580px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 25px 60px rgba(0, 0, 0, 0.7));
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.phone-frame {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: 580px;
  border-radius: 44px;
  padding: 10px;
  background: linear-gradient(145deg, #2b2b36 0%, #13131a 100%);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7),
              0 0 0 1px rgba(255, 255, 255, 0.12),
              inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.phone-frame--yros {
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7),
              0 0 50px rgba(168, 85, 247, 0.18),
              0 0 0 1px rgba(168, 85, 247, 0.3);
}

.phone-frame--pos {
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7),
              0 0 50px rgba(34, 197, 94, 0.18),
              0 0 0 1px rgba(34, 197, 94, 0.3);
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 86px;
  height: 22px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
}

.phone-lens {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, #334155 30%, #0f172a 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #09090b;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Screen Contents */
.phone-screen--hero-yros {
  padding-top: 36px;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.18) 0%, transparent 60%), #0d0d12;
}

.hero-chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(18, 18, 24, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hero-chat-avatar i {
  font-size: 18px;
}

.hero-chat-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.hero-chat-info strong {
  font-size: 0.85rem;
  color: #ffffff;
}

.hero-chat-info span {
  font-size: 0.68rem;
  color: #a855f7;
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero-chat-info span i {
  font-size: 8px;
  color: #22c55e;
}

.hero-chat-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.chat-msg {
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 0.78rem;
  line-height: 1.4;
}

.chat-msg p {
  margin: 0 0 4px;
}

.chat-msg p:last-child {
  margin: 0;
}

.chat-msg--user {
  align-self: flex-end;
  background: #6d28d9;
  color: #ffffff;
  max-width: 88%;
  border-bottom-right-radius: 4px;
}

.chat-msg--bot {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f1f5f9;
  max-width: 92%;
  border-bottom-left-radius: 4px;
}

.bot-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #c084fc;
  margin-bottom: 4px;
}

.bot-tag i {
  font-size: 12px;
}

.phone-screen--hero-pos {
  padding-top: 36px;
  position: relative;
}

.img-pos-hero {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.floating-dian-badge {
  position: absolute;
  bottom: 16px;
  left: 12px;
  right: 12px;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: 12px;
  padding: 8px 12px;
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.floating-dian-badge i {
  color: #4ade80;
  font-size: 16px;
}

/* ── 2. SELECTOR DE NAVEGACIÓN EN PÁGINA ── */
.app-nav-pills-wrapper {
  display: flex;
  justify-content: center;
  margin: clamp(40px, 6vw, 60px) 0;
  position: sticky;
  top: 90px;
  z-index: 20;
}

.app-nav-pills {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 9999px;
  background: rgba(18, 18, 24, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 9999px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.25s ease;
  text-decoration: none;
}

.nav-pill-btn i {
  font-size: 18px;
}

.nav-pill-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-pill-btn.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ── 3. DEEP DIVE SECTIONS ── */
.app-deepdive-section {
  position: relative;
  z-index: 2;
  padding: 40px 0;
}

.deepdive-header {
  max-width: 800px;
  margin: 0 auto;
}

.deepdive-title {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
  line-height: 1.15;
}

.text-purple-gradient {
  background: linear-gradient(135deg, #c084fc 0%, #a855f7 50%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-blue-gradient {
  background: linear-gradient(135deg, #38bdf8 0%, #22c55e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.deepdive-subtitle {
  font-size: clamp(0.98rem, 1.2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-top: 14px;
}

.badge-android {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 9999px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #4ade80;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* ── Interactive Chat Card (Yros) ── */
.yros-interactive-chat-card {
  background: rgba(18, 18, 24, 0.75);
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: 28px;
  overflow: hidden;
  backdrop-filter: blur(24px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(124, 58, 237, 0.12);
}

.chat-card-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.window-dots span:nth-child(1) { background: #ef4444; }
.window-dots span:nth-child(2) { background: #eab308; }
.window-dots span:nth-child(3) { background: #22c55e; }

.chat-card-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.chat-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: #c084fc;
  font-weight: 700;
}

.chat-live-badge i {
  font-size: 14px;
}

.chat-feed-container {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 380px;
  overflow-y: auto;
}

.chat-feed-bubble {
  display: flex;
  flex-direction: column;
  max-width: 90%;
}

.chat-feed-bubble--user {
  align-self: flex-end;
}

.chat-feed-bubble--user .bubble-content {
  background: #6d28d9;
  color: #ffffff;
  border-radius: 18px 18px 4px 18px;
  padding: 12px 16px;
  font-size: 0.92rem;
  box-shadow: 0 4px 15px rgba(109, 40, 217, 0.3);
}

.chat-feed-bubble--bot {
  align-self: flex-start;
}

.chat-feed-bubble--bot .bubble-content {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f1f5f9;
  border-radius: 18px 18px 18px 4px;
  padding: 14px 18px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.bubble-header-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #c084fc;
  margin-bottom: 6px;
}

.bubble-header-tag i {
  font-size: 14px;
}

.bubble-header-tag.text-green {
  color: #4ade80;
}

.bubble-tip {
  margin-top: 8px;
  font-size: 0.85rem;
  color: #cbd5e1;
}

.bubble-time {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
  text-align: right;
}

.chat-feed-footer {
  padding: 14px 20px;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
}

.fake-input-box {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  padding: 10px 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.btn-chat-send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #7c3aed;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn-chat-send:hover {
  transform: scale(1.08);
}

/* ── Pillars Grid ── */
.yros-pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.pillar-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  transition: all 0.28s ease;
}

.pillar-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateY(-2px);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-icon i { font-size: 22px; }

.pillar-icon--purple { background: rgba(168, 85, 247, 0.15); color: #c084fc; }
.pillar-icon--blue   { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
.pillar-icon--green  { background: rgba(34, 197, 94, 0.15); color: #4ade80; }
.pillar-icon--gold   { background: rgba(234, 179, 8, 0.15); color: #fde047; }

.pillar-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px;
}

.pillar-info p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.45;
}

/* ══════════════════════════════════════════════════════════════
   GALLERY SHOWCASE: JELODA POS ANDROID
   ══════════════════════════════════════════════════════════════ */
.pos-gallery-showcase {
  background: rgba(18, 18, 24, 0.7);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 32px;
  padding: clamp(24px, 4vw, 48px);
  backdrop-filter: blur(24px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 50px rgba(37, 99, 235, 0.12);
}

.gallery-tabs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.gallery-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.gallery-tab-btn i {
  font-size: 18px;
}

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

.gallery-tab-btn.active {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.3) 0%, rgba(34, 197, 94, 0.3) 100%);
  border-color: rgba(56, 189, 248, 0.5);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.25);
}

.pos-gallery-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.pos-phone-mockup-large {
  display: flex;
  justify-content: center;
}

.phone-frame--large {
  max-width: 330px;
  height: 600px;
}

.pos-screen-active-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.pos-gallery-info {
  text-align: left;
}

.info-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 9999px;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #38bdf8;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.info-badge i { font-size: 16px; }

.info-title {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 0 14px;
}

.info-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin: 0 0 24px;
}

.info-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #e2e8f0;
}

.check-item i {
  color: #4ade80;
  font-size: 20px;
}

/* ── Bento Grid de Funciones Android ── */
.feature-bento-card {
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  height: 100%;
  transition: all 0.3s ease;
}

.feature-bento-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateY(-4px);
}

.bento-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(56, 189, 248, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  margin-bottom: 18px;
}

.bento-icon i { font-size: 24px; }

.feature-bento-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px;
}

.feature-bento-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.5;
}

/* ── 5. WORKFLOW STEPS ── */
.workflow-steps-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.workflow-step-card {
  flex: 1;
  min-width: 260px;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.workflow-step-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateY(-4px);
}

.step-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 1.8rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.1);
}

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.25) 0%, rgba(59, 130, 246, 0.25) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c084fc;
  margin: 0 auto 18px;
}

.step-icon i { font-size: 28px; }

.workflow-step-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px;
}

.workflow-step-card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  line-height: 1.55;
}

.workflow-connector {
  color: rgba(255, 255, 255, 0.3);
}

.workflow-connector i { font-size: 32px; }

/* ── 6. FAQ ACCORDION ── */
.app-faq-wrapper {
  max-width: 820px;
  margin: 0 auto;
}

.faq-accordion-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.faq-item-card.active {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(168, 85, 247, 0.3);
}

.faq-card-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: transparent;
  border: none;
  color: #ffffff;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
}

.faq-arrow {
  transition: transform 0.28s ease;
  color: rgba(255, 255, 255, 0.5);
}

.faq-item-card.active .faq-arrow {
  transform: rotate(180deg);
  color: #a855f7;
}

.faq-card-body {
  padding: 0 24px 18px;
  display: none;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

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

/* ── 7. FINAL CTA GLOW BOX ── */
.app-final-cta {
  position: relative;
  z-index: 2;
}

.cta-glow-box {
  background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.25) 0%, rgba(18, 18, 24, 0.9) 70%);
  border: 1px solid rgba(168, 85, 247, 0.35);
  border-radius: 36px;
  padding: clamp(40px, 6vw, 70px) clamp(24px, 4vw, 50px);
  box-shadow: 0 30px 90px rgba(124, 58, 237, 0.25), inset 0 1px 2px rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(24px);
  max-width: 900px;
  margin: 0 auto;
}

.cta-heading {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
}

.cta-desc {
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 650px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.cta-buttons-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-apple-page.btn-large {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* ══════════════════════════════════════════════════════════════
   LIGHT THEME SUPPORT FOR APP MOBILE FULL PAGE (.theme--light)
   ══════════════════════════════════════════════════════════════ */
.theme--light .app-mobile-page,
#app.theme--light .app-mobile-page {
  background-color: #f8fafc;
  color: #0f172a;
}

.theme--light .apple-hero-badge {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
  color: #334155;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.theme--light .app-hero-title {
  color: #0f172a;
}

.theme--light .app-hero-subtitle {
  color: #475569;
}

.theme--light .btn-apple-page--ghost {
  background: rgba(0, 0, 0, 0.04);
  color: #1e293b !important;
  border-color: rgba(0, 0, 0, 0.12);
}

.theme--light .btn-apple-page--ghost:hover {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.2);
}

.theme--light .app-hero-platforms {
  color: #64748b;
}

.theme--light .device-label h4 {
  color: #0f172a;
}

.theme--light .phone-frame {
  background: linear-gradient(145deg, #e2e8f0 0%, #cbd5e1 100%);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.theme--light .phone-screen--hero-yros {
  background: #f8fafc;
}

.theme--light .hero-chat-header {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.06);
}

.theme--light .hero-chat-info strong {
  color: #0f172a;
}

.theme--light .chat-msg--bot {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  color: #1e293b;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.theme--light .app-nav-pills {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.theme--light .nav-pill-btn {
  color: #64748b;
}

.theme--light .nav-pill-btn:hover {
  color: #0f172a;
  background: rgba(0, 0, 0, 0.04);
}

.theme--light .nav-pill-btn.active {
  background: #ffffff;
  color: #0f172a;
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.theme--light .deepdive-title {
  color: #0f172a;
}

.theme--light .deepdive-subtitle {
  color: #475569;
}

.theme--light .yros-interactive-chat-card {
  background: #ffffff;
  border-color: rgba(168, 85, 247, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.theme--light .chat-card-topbar {
  background: #f8fafc;
  border-color: rgba(0, 0, 0, 0.06);
}

.theme--light .chat-card-title {
  color: #334155;
}

.theme--light .chat-feed-bubble--bot .bubble-content {
  background: #f8fafc;
  border-color: rgba(0, 0, 0, 0.08);
  color: #1e293b;
}

.theme--light .bubble-tip {
  color: #475569;
}

.theme--light .bubble-time {
  color: #94a3b8;
}

.theme--light .chat-feed-footer {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.06);
}

.theme--light .fake-input-box {
  background: #f1f5f9;
  border-color: rgba(0, 0, 0, 0.06);
  color: #64748b;
}

.theme--light .pillar-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.theme--light .pillar-card:hover {
  background: #ffffff;
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.theme--light .pillar-info h4 {
  color: #0f172a;
}

.theme--light .pillar-info p {
  color: #475569;
}

.theme--light .pos-gallery-showcase {
  background: #ffffff;
  border-color: rgba(59, 130, 246, 0.25);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.06);
}

.theme--light .gallery-tab-btn {
  background: #f8fafc;
  border-color: rgba(0, 0, 0, 0.08);
  color: #475569;
}

.theme--light .gallery-tab-btn:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.theme--light .gallery-tab-btn.active {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(34, 197, 94, 0.12) 100%);
  border-color: rgba(37, 99, 235, 0.4);
  color: #0f172a;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.15);
}

.theme--light .info-title {
  color: #0f172a;
}

.theme--light .info-desc {
  color: #475569;
}

.theme--light .check-item {
  color: #1e293b;
}

.theme--light .feature-bento-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.theme--light .feature-bento-card:hover {
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.theme--light .feature-bento-card h4 {
  color: #0f172a;
}

.theme--light .feature-bento-card p {
  color: #475569;
}

.theme--light .workflow-step-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.theme--light .step-number {
  color: rgba(0, 0, 0, 0.06);
}

.theme--light .workflow-step-card h4 {
  color: #0f172a;
}

.theme--light .workflow-step-card p {
  color: #475569;
}

.theme--light .workflow-connector {
  color: rgba(0, 0, 0, 0.2);
}

.theme--light .faq-item-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.theme--light .faq-item-card.active {
  background: #ffffff;
  border-color: rgba(168, 85, 247, 0.35);
}

.theme--light .faq-card-header {
  color: #0f172a;
}

.theme--light .faq-card-body {
  color: #475569;
}

.theme--light .cta-glow-box {
  background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.08) 0%, #ffffff 80%);
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 0 30px 80px rgba(124, 58, 237, 0.1);
}

.theme--light .cta-heading {
  color: #0f172a;
}

.theme--light .cta-desc {
  color: #475569;
}

/* ── Responsive Queries ── */
@media (max-width: 991px) {
  .hero-devices-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pos-gallery-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pos-gallery-info {
    text-align: center;
  }

  .info-checklist {
    align-items: center;
  }

  .info-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .workflow-connector {
    display: none;
  }
}

@media (max-width: 768px) {
  .app-nav-pills {
    width: 100%;
    overflow-x: auto;
    border-radius: 16px;
  }

  .nav-pill-btn {
    white-space: nowrap;
    padding: 8px 12px;
    font-size: 0.78rem;
  }

  .phone-frame {
    max-width: 280px;
    height: 520px;
  }

  .phone-frame--large {
    max-width: 280px;
    height: 520px;
  }
}

@media (max-width: 576px) {
  .product-page-wrapper.app-mobile-page {
    padding-top: 100px !important;
    padding-bottom: 60px !important;
  }
  .app-hero {
    padding-top: 20px !important;
  }
  .app-hero-title {
    font-size: clamp(1.85rem, 8vw, 2.4rem) !important;
    line-height: 1.2 !important;
  }
  .app-hero-subtitle {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
  }
  .app-hero-actions {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
  }
  .btn-apple-page {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }
  .deepdive-title {
    font-size: clamp(1.6rem, 7vw, 2rem) !important;
    line-height: 1.25 !important;
  }
  .deepdive-subtitle {
    font-size: 0.95rem !important;
  }
  .yros-interactive-chat-card {
    padding: 1rem !important;
  }
  .pillar-card {
    padding: 1.2rem !important;
  }
  .feature-bento-card {
    padding: 1.4rem 1.2rem !important;
  }
  .pos-gallery-card {
    padding: 1.2rem !important;
  }
  .gallery-tabs-nav {
    display: flex !important;
    overflow-x: auto !important;
    padding-bottom: 8px !important;
    flex-wrap: nowrap !important;
    -webkit-overflow-scrolling: touch !important;
  }
  .gallery-tab-btn {
    flex-shrink: 0 !important;
    font-size: 0.8rem !important;
    padding: 8px 12px !important;
  }
  .cta-glow-box {
    padding: 2.5rem 1.2rem !important;
  }
  .cta-buttons-row {
    flex-direction: column !important;
    width: 100% !important;
  }
  .cta-buttons-row .btn-apple-page {
    width: 100% !important;
  }
}

